/* ============================================================
   MISS ROSEMOON — Rose Gold Premium E-Commerce Landing
   ============================================================ */

:root {
  /* Marka paleti */
  --rosegold: #c89b90;
  --rosegold-dark: #8e6d66;
  --rosegold-deep: #5f4640;
  --powder: #f5eae6;
  --champagne: #e8d5cf;
  --cream: #fdfbfa;
  --ink: #3d2f2b;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --radius-card: 18px;
  --radius-btn: 14px;

  --shadow-soft: 0 8px 30px rgba(142, 109, 102, 0.1);
  --shadow-lift: 0 16px 44px rgba(142, 109, 102, 0.18);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, p { margin: 0; }

html { scroll-behavior: smooth; }

::selection { background: var(--champagne); color: var(--rosegold-deep); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Ortak ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.icon {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-sm { width: 16px; height: 16px; }

.glass {
  background: rgba(253, 251, 250, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* İnce rose-gold ayraç */
.header-line, .head-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 144, 0.55), transparent);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 32px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem; letter-spacing: 0.02em;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn-primary {
  background: var(--rosegold);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--rosegold-dark); }

.btn-ghost {
  border: 1px solid rgba(200, 155, 144, 0.6);
  color: var(--rosegold-dark);
}
.btn-ghost:hover { background: var(--powder); }

.btn-dark {
  background: var(--rosegold-deep);
  color: var(--cream);
}
.btn-dark:hover { background: var(--rosegold-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.header { position: fixed; inset-inline: 0; top: 0; z-index: 100; }

.announce {
  background: var(--rosegold-dark);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
}

.announce-track {
  display: flex;
  width: max-content;
  /* Sola doğru kayar; iki kopya sonsuz döngü sağlar */
  animation: announce-scroll 34s linear infinite;
}
.announce:hover .announce-track { animation-play-state: paused; }

.announce-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.announce-group > span { padding: 0 18px; white-space: nowrap; }
.announce-dot { color: var(--champagne); padding: 0 4px !important; }

@keyframes announce-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; transform: translateX(0); }
}

.header-bar { background: transparent; transition: background-color 0.3s, box-shadow 0.3s; }

.header.scrolled .header-bar {
  background: rgba(253, 251, 250, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.header-line { opacity: 0; transition: opacity 0.3s; }
.header.scrolled .header-line { opacity: 1; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }

/* Görsel logo (şeffaf zeminli PNG) */
.logo-img {
  height: 42px;
  width: auto;
  transition: opacity 0.25s;
}
.logo:hover .logo-img { opacity: 0.85; }

/* Dar ekranlarda logo ve ikonlar sıkışmasın */
@media (max-width: 480px) {
  .logo-img { height: 30px; }
  .icon-btn { width: 34px; height: 34px; }
  .icon-btn .icon { width: 18px; height: 18px; }
  .announce { font-size: 0.6rem; letter-spacing: 0.12em; }
}

/* Masaüstü nav */
.nav { display: none; gap: 28px; }

.nav a {
  position: relative;
  font-size: 0.86rem;
  color: rgba(61, 47, 43, 0.8);
  padding-block: 4px;
  transition: color 0.25s;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rosegold);
  transition: width 0.3s;
}
.nav a:hover { color: var(--rosegold-dark); }
.nav a:hover::after { width: 100%; }

/* Sağ ikonlar */
.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: rgba(61, 47, 43, 0.7);
  transition: color 0.25s, background-color 0.25s;
}
.icon-btn:hover { color: var(--rosegold-dark); background: var(--powder); }
.icon-btn .icon { width: 20px; height: 20px; }

.badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px;
  padding-inline: 4px;
  border-radius: 999px;
  background: var(--rosegold);
  color: #fff;
  font-size: 0.6rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* Mobil menü */
.menu-toggle .icon-close { display: none; }
.header.menu-open .menu-toggle .icon-open { display: none; }
.header.menu-open .menu-toggle .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(253, 251, 250, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(232, 213, 207, 0.6);
  box-shadow: var(--shadow-lift);
  padding: 10px 26px;
}
.header.menu-open .mobile-nav { display: flex; }

.mobile-nav a {
  padding: 13px 0;
  font-size: 0.9rem;
  color: rgba(61, 47, 43, 0.85);
  border-bottom: 1px solid rgba(232, 213, 207, 0.4);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--powder) 0%, var(--cream) 70%);
  padding-top: 150px;
  padding-bottom: 64px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-glow-1 {
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  background: rgba(232, 213, 207, 0.7);
}
.hero-glow-2 {
  top: 45%; left: -140px;
  width: 330px; height: 330px;
  background: rgba(200, 155, 144, 0.18);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero-copy { text-align: center; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rosegold-dark);
  background: rgba(232, 213, 207, 0.5);
  border: 1px solid rgba(200, 155, 144, 0.25);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.12;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--rosegold-dark);
}

.hero-sub {
  max-width: 430px;
  margin: 22px auto 0;
  color: rgba(142, 109, 102, 0.88);
  font-size: 1.02rem;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 40px;
  text-align: left;
}
@media (min-width: 640px) { .hero-stats { gap: 26px; } }
.hero-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  white-space: nowrap;
}
.hero-stats span {
  font-size: 0.7rem;
  color: rgba(142, 109, 102, 0.75);
}
.hero-stats i {
  width: 1px; height: 38px;
  background: rgba(200, 155, 144, 0.25);
}
.stars { display: flex; gap: 2px; color: var(--rosegold); }
.stars .icon { fill: currentColor; stroke: none; }

/* Hero görseli */
.hero-visual {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}

/* Hero slider */
.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--powder);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  cursor: pointer;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(95, 70, 64, 0.05) 0%, transparent 35%, rgba(95, 70, 64, 0.55) 100%);
}

.hero-slide-caption {
  position: absolute; left: 20px; bottom: 62px;
  z-index: 2;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(61, 47, 43, 0.45);
  pointer-events: none;
}
.hero-slide-caption .eyebrow-sm {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}
.hero-slide-caption strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
}

/* Oklar */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(253, 251, 250, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--rosegold-deep);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transition: opacity 0.25s, background-color 0.25s;
}
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: var(--rosegold); color: #fff; }
.hero-arrow .icon { width: 18px; height: 18px; }
.hero-prev { left: 14px; }
.hero-prev .icon { transform: rotate(180deg); }
.hero-next { right: 14px; }

/* Noktalar */
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 18px;
  z-index: 3;
  display: flex; justify-content: center; gap: 8px;
}
.hero-dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(253, 251, 250, 0.55);
  transition: width 0.3s, background-color 0.3s;
}
.hero-dots button.active {
  width: 22px;
  background: var(--cream);
}

@media (hover: none) {
  .hero-arrow { opacity: 1; }
}

.hero-frame {
  position: absolute; inset: -12px;
  border: 1px solid rgba(200, 155, 144, 0.32);
  border-radius: 34px;
}

.hero-card {
  position: absolute;
  left: 18px; bottom: -26px;
  display: flex; align-items: center; gap: 13px;
  padding: 15px 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
}
.hero-card p { font-size: 0.86rem; font-weight: 500; }
.hero-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}
.hero-card .wa-link {
  font-size: 0.72rem;
  color: var(--rosegold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-card .wa-link:hover { color: var(--rosegold); }

/* ============================================================
   GÜVEN BARI
   ============================================================ */
.trust {
  border-block: 1px solid rgba(232, 213, 207, 0.7);
  background: var(--cream);
  margin-top: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-block: 32px;
}

.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item p { font-size: 0.88rem; font-weight: 500; }
.trust-item span { font-size: 0.74rem; color: rgba(142, 109, 102, 0.75); }

.trust-icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--powder);
  color: var(--rosegold-dark);
}

/* ============================================================
   BÖLÜM BAŞLIKLARI
   ============================================================ */
.section { padding-block: 72px; }
.section-tinted { background: linear-gradient(180deg, var(--cream), #faf4f1 50%, var(--cream)); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 12px;
}

.section-head h2, .campaign h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.section-sub {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(142, 109, 102, 0.8);
}

.head-line { width: 160px; margin: 24px auto 0; }

/* ============================================================
   KATEGORİLER
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 820px;
  margin-inline: auto;
}

.category-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s;
}
.category-card:hover { box-shadow: var(--shadow-lift); }
.category-card { aspect-ratio: 16 / 11; }

.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.05); }

.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(95, 70, 64, 0.72));
}

/* Hover'da beliren rose-gold iç çerçeve */
.category-frame {
  position: absolute; inset: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: border-color 0.3s;
  z-index: 1;
}
.category-card:hover .category-frame { border-color: rgba(232, 213, 207, 0.7); }

.category-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 18px 20px;
  z-index: 1;
  color: var(--cream);
}
.category-info h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
}
.category-info span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem;
  color: var(--champagne);
  margin-top: 4px;
}
.category-info .icon-sm {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.category-card:hover .category-info .icon-sm { opacity: 1; transform: none; }

/* ============================================================
   FİLTRE ÇİPLERİ
   ============================================================ */
.filter-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: -16px 0 36px;
}

.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(200, 155, 144, 0.4);
  color: var(--rosegold-dark);
  font-size: 0.82rem;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.chip:hover { background: var(--powder); }
.chip.active {
  background: var(--rosegold);
  border-color: var(--rosegold);
  color: #fff;
}

.load-more-wrap { text-align: center; margin-top: 44px; }

/* ============================================================
   ÜRÜN KARTLARI
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  row-gap: 34px;
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--powder);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s;
}
.product-card:hover .product-media { box-shadow: var(--shadow-lift); }

.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-tags {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  z-index: 2;
}
.tag {
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 999px;
}
.tag-discount { background: var(--rosegold-dark); color: var(--cream); }
.tag-label {
  background: rgba(253, 251, 250, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 155, 144, 0.25);
  color: var(--rosegold-deep);
}

/* Hover'da detay butonu */
.product-cta {
  position: absolute; inset-inline: 12px; bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px;
  border-radius: var(--radius-btn);
  background: rgba(95, 70, 64, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 0.84rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.25s;
  z-index: 2;
}
.product-card:hover .product-cta,
.product-cta:focus-visible {
  opacity: 1;
  transform: none;
}
.product-cta:hover { background: var(--rosegold-dark); }
.product-cta .icon { width: 17px; height: 17px; }

.product-card { cursor: pointer; }
.product-card:focus-visible {
  outline: 2px solid var(--rosegold);
  outline-offset: 4px;
  border-radius: var(--radius-card);
}

.product-info { padding: 14px 4px 0; }
.product-info h3 {
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-source {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  color: rgba(142, 109, 102, 0.7);
}
.product-card:hover .product-info h3 { color: var(--rosegold-dark); }

.product-prices {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px;
}
.price { font-weight: 500; color: var(--rosegold-dark); }
.price-old {
  font-size: 0.82rem;
  color: rgba(61, 47, 43, 0.4);
  text-decoration: line-through;
}

/* ============================================================
   ÜRÜN DETAY POP-UP
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(61, 47, 43, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  display: grid;
}

.modal-close {
  position: absolute; top: 12px; right: 12px;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(253, 251, 250, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  transition: background-color 0.25s, color 0.25s;
}
.modal-close:hover { background: var(--rosegold); color: #fff; }

/* Galeri: fotoğraf kenardan kenara, çerçevesiz */
.modal-gallery {
  position: relative;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.modal-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 56dvh;
  width: 100%;
  overflow: hidden;
  background: var(--powder);
}
.modal-stage img { width: 100%; height: 100%; object-fit: cover; }

/* Küçük resimler: fotoğrafın altında yüzen şeffaf şerit */
.modal-thumbs {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; gap: 9px; justify-content: center;
  padding: 34px 16px 16px;
  background: linear-gradient(to top, rgba(61, 47, 43, 0.5), transparent);
  overflow-x: auto;
  scrollbar-width: none;
}
.modal-thumbs::-webkit-scrollbar { display: none; }

.modal-thumb {
  flex: 0 0 48px;
  aspect-ratio: 3 / 4;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid rgba(253, 251, 250, 0.65);
  padding: 0;
  background: var(--powder);
  opacity: 0.75;
  transition: opacity 0.25s, border-color 0.25s, transform 0.2s;
}
.modal-thumb:hover { opacity: 1; transform: translateY(-2px); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumb.active {
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 4px 12px rgba(61, 47, 43, 0.35);
}

.modal-info { padding: 6px 20px 24px; }

.modal-category {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35;
}

.modal-note {
  margin-top: 12px;
  font-size: 0.84rem;
  color: rgba(142, 109, 102, 0.85);
}

.modal-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}

.btn-trendyol {
  background: #f27a1a;
  color: #fff;
}
.btn-trendyol:hover { background: #d96400; }

.btn-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #128c7e;
}
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.08); }

@media (min-width: 760px) {
  .modal-card {
    grid-template-columns: 1.05fr 1fr;
    overflow: hidden;
  }
  .modal-gallery {
    border-radius: 0;
    display: flex; flex-direction: column;
    min-height: 0;
  }
  .modal-stage { max-height: none; flex: 1; }
  .modal-info {
    padding: 40px 32px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .modal-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   KAMPANYA BANNERI
   ============================================================ */
.campaign {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 26px;
  background: linear-gradient(120deg, var(--powder), var(--champagne) 55%, #f0ddd6);
  border: 1px solid rgba(200, 155, 144, 0.3);
  padding: 64px 28px;
}

.campaign-rose {
  position: absolute;
  color: rgba(200, 155, 144, 0.25);
  fill: none; stroke: currentColor; stroke-width: 1.1;
  pointer-events: none;
}
.campaign-rose-1 { width: 150px; height: 150px; top: -28px; left: -20px; transform: rotate(-18deg); }
.campaign-rose-2 { width: 200px; height: 200px; bottom: -50px; right: -34px; transform: rotate(22deg); }

.campaign h2 { max-width: 560px; margin-inline: auto; }
.campaign-sub {
  max-width: 460px;
  margin: 16px auto 30px;
  font-size: 0.94rem;
  color: rgba(142, 109, 102, 0.85);
}

/* ============================================================
   MÜŞTERİ YORUMLARI
   ============================================================ */
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  background: rgba(253, 251, 250, 0.8);
  border: 1px solid rgba(232, 213, 207, 0.7);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lift); }

.testimonial-head { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--powder);
  border: 2px solid var(--champagne);
  color: var(--rosegold);
}
.testimonial-avatar .icon { width: 26px; height: 26px; }
.testimonial-head p { font-size: 0.9rem; font-weight: 500; }
.testimonial-head span { font-size: 0.72rem; color: rgba(142, 109, 102, 0.7); }

.testimonial-card .stars { margin-top: 16px; }
.testimonial-card .stars .icon { width: 15px; height: 15px; }

.testimonial-text {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(61, 47, 43, 0.8);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--rosegold-deep);
  color: rgba(253, 251, 250, 0.85);
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-block: 60px 44px;
}

.footer-brand > p {
  margin-top: 20px;
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(253, 251, 250, 0.6);
  max-width: 330px;
}

/* Koyu zeminde logo: hafif parlaklık artışıyla öne çıksın */
.footer .logo-img {
  height: 54px;
  filter: brightness(1.12);
}
/* Geniş yazı-logo (footer'a özel görsel) */
.footer .footer-logo-img {
  height: auto;
  width: 260px;
  max-width: 70vw;
  filter: none;
}

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(232, 213, 207, 0.3);
  border-radius: 50%;
  color: var(--champagne);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.socials a:hover {
  background: var(--rosegold);
  border-color: var(--rosegold);
  color: #fff;
}
.socials .icon { width: 18px; height: 18px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.84rem;
  color: rgba(253, 251, 250, 0.6);
  transition: color 0.25s;
  width: fit-content;
}
.footer-col a:hover { color: var(--champagne); }

.footer-note {
  font-size: 0.78rem;
  color: rgba(253, 251, 250, 0.45);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 207, 0.15);
  padding-block: 20px;
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 0.74rem;
  color: rgba(253, 251, 250, 0.45);
}

/* ============================================================
   WHATSAPP YÜZEN BUTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.86rem; font-weight: 500;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.whatsapp-float .icon { width: 21px; height: 21px; }

/* ============================================================
   REVEAL (çok hafif giriş geçişi)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .container { padding-inline: 28px; }
  .announce { font-size: 0.72rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { right: 26px; bottom: 26px; }
}

@media (min-width: 1024px) {
  .header-inner { height: 80px; position: relative; }
  /* Menüyü header'ın tam ortasına sabitle; logo solda kalır */
  .nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-toggle { display: none; }

  .hero { padding-top: 190px; padding-bottom: 90px; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .hero-copy { text-align: left; }
  .hero-sub { margin-inline: 0; }
  .hero-ctas { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .hero-visual { max-width: none; }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }

  .section { padding-block: 96px; }

  .category-grid { gap: 20px; }
  .category-card { aspect-ratio: 16 / 10; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; row-gap: 40px; }

  .campaign { padding: 88px 40px; }

  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr; gap: 48px; }
}
