:root {
  --bg: #f7f2ea;
  --bg-deep: #efe6d8;
  --surface: #fffdf9;
  --ink: #1a1714;
  --muted: #6b635a;
  --line: rgba(26, 23, 20, 0.1);
  --blue: #164e80;       
  --blue-deep: #0c2a45;  
  --gold: #c4a35a;
  --gold-bright: #dbb86a;
  --coral: #c45c3a;
  --wine: #7a2e3a;
  --shadow: 0 18px 50px rgba(26, 23, 20, 0.08);
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 163, 90, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(22, 78, 128, 0.12), transparent 45%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue) 50%, var(--wine));
  color: #fff;
  font-size: 0.85rem;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
}
.header-wa { color: var(--gold-bright); font-weight: 500; }
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}
.brand-text small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.search-form {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  max-width: 360px;
  width: 100%;
  margin-inline: auto;
}
.search-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.7rem 1rem;
  outline: none;
}
.search-form button {
  border: 0;
  background: transparent;
  padding: 0.7rem 1rem;
  color: var(--blue);
  cursor: pointer;
}
.nav-desktop { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-desktop a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  display: block;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav-mobile.is-open {
  display: flex;
}
.nav-mobile[hidden] {
  display: none !important;
}
.nav-mobile a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }

@media (min-width: 1025px) {
  .nav-mobile,
  .nav-mobile.is-open {
    display: none !important;
  }
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: min(78vh, 720px);
  overflow: hidden;
}
.hero-slider .swiper { height: 100%; }
.hero-slide {
  position: relative;
  height: 100%;
  background: #1a1714 center/cover no-repeat;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 42, 69, 0.82) 0%, rgba(26, 23, 20, 0.35) 55%, rgba(122, 46, 58, 0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 640px;
  padding: 2rem 0;
  animation: riseIn 0.9s ease both;
}
.hero-content .eyebrow {
  color: var(--gold-bright);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1rem;
}
.hero-content p {
  font-size: 1.08rem;
  opacity: 0.92;
  max-width: 32rem;
  margin: 0 0 1.75rem;
}
.swiper-pagination-bullet { background: #fff; opacity: 0.45; }
.swiper-pagination-bullet-active { background: var(--gold-bright); opacity: 1; }
.swiper-button-prev, .swiper-button-next {
  color: #fff;
  --swiper-navigation-size: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
}
.btn-dark {
  background: var(--blue);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}
.btn-wa { background: #25d366; color: #fff; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
  line-height: 1.15;
}
.section-head p {
  color: var(--muted);
  margin: 0.4rem 0 0;
  max-width: 36rem;
}
.section-label {
  display: inline-block;
  color: var(--coral);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Trust */
.trust-section {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
  border-block: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  padding: 1.5rem 0;
  border-top: 2px solid var(--gold);
  animation: fadeUp 0.7s ease both;
}
.trust-item:nth-child(2) { animation-delay: 0.08s; }
.trust-item:nth-child(3) { animation-delay: 0.16s; }
.trust-item:nth-child(4) { animation-delay: 0.24s; }
.trust-icon {
  width: 48px; height: 48px;
  margin-bottom: 1rem;
  color: var(--blue);
}
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}
.trust-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Products */
.showcase { background: transparent; }
.showcase:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(22, 78, 128, 0.05), transparent);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.6s ease both;
}
.product-card:hover {
  border-color: rgba(196, 163, 90, 0.55);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .thumb {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-deep);
}
.product-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .body { padding: 1rem 1rem 1.2rem; }
.product-card .cat {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.35rem;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.45rem;
  line-height: 1.2;
}
.product-card .excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Reviews */
.reviews-section {
  background:
    linear-gradient(135deg, rgba(22, 78, 128, 0.94), rgba(122, 46, 58, 0.88)),
    var(--blue-deep);
  color: #fff;
}
.reviews-section .section-label { color: var(--gold-bright); }
.reviews-section .section-head p { color: rgba(255,255,255,0.75); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.stars { color: var(--gold-bright); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.review-card p { margin: 0 0 1.25rem; opacity: 0.95; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-author img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.review-author strong { display: block; }
.review-author span { font-size: 0.8rem; opacity: 0.7; }

/* Page hero */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(120deg, rgba(22, 78, 128, 0.12), rgba(196, 163, 90, 0.15)),
    var(--bg-deep);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.3rem 0;
}
.page-hero p { color: var(--muted); margin: 0; max-width: 40rem; }

/* Content */
.content-wrap { padding: 3rem 0 4rem; }
.prose {
  max-width: 760px;
  font-size: 1.05rem;
}
.prose h2, .prose h3 {
  font-family: var(--font-display);
}
.prose img { margin: 1.5rem 0; }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
}
.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-deep);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.gallery-thumbs button {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-thumbs button.active,
.gallery-thumbs button:hover { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info .cat {
  color: var(--coral);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.4rem 0 1rem;
  line-height: 1.15;
}
.product-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.product-desc { color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.5rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 3rem 0 4rem;
}
.contact-card {
  background: var(--surface);
  padding: 2rem;
  border: 1px solid var(--line);
}
.contact-card h2 {
  font-family: var(--font-display);
  margin-top: 0;
}
.map-wrap {
  min-height: 420px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding-top: 3.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: var(--gold); }
.site-footer h4 {
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.site-footer a:hover { color: var(--gold-bright); }
.site-footer li + li { margin-top: 0.45rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap; }
.social-links a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* Empty / misc */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.badge-new {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-main { grid-template-columns: auto 1fr auto; }
  .product-detail, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-top-inner { flex-direction: column; text-align: center; }
  .search-form { display: none; }
  
  /* ÇÖZÜM BURADA: width: 100% değeri kaldırıldı. 
     Böylece menü ikonu sağa yaslanacak ama container'ın padding'i bozulmayacak. */
  .header-main { display: flex; justify-content: space-between; align-items: center; }
  
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .trust-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-slider { height: 70vh; }
  .section { padding: 3rem 0; }
}