:root {
  --beige: #f5ebe3;
  --cream: #faf6f2;
  --ivory: #fffcfa;
  --blush: #f3e0e4;
  --rose: #d4a5a5;
  --champagne: #c9a962;
  --champagne-light: #e8d4a8;
  --green: #2d4a3e;
  --green-soft: #3d5c4e;
  --soft-black: #2a2a2a;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --shadow: 0 8px 32px rgba(45, 74, 62, 0.08);
  --shadow-soft: 0 12px 40px rgba(212, 165, 165, 0.15);
  --radius: 1rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--green);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Animated feminine background */
.fashion-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(165deg, #fffcfa 0%, #faf0eb 35%, #f5ebe8 60%, #f0f5f2 100%);
}

.fblob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: floatBlob 18s ease-in-out infinite;
}

.fblob-1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: radial-gradient(circle, rgba(232, 180, 184, 0.55), transparent 70%);
  top: -8%;
  right: -5%;
  animation-delay: 0s;
}

.fblob-2 {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  background: radial-gradient(circle, rgba(201, 169, 98, 0.35), transparent 70%);
  bottom: 10%;
  left: -10%;
  animation-delay: -6s;
}

.fblob-3 {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  background: radial-gradient(circle, rgba(180, 210, 195, 0.4), transparent 70%);
  top: 45%;
  left: 40%;
  animation-delay: -12s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.fashion-sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--champagne-light);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 4s ease-in-out infinite;
}

.fashion-sparkles span:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.fashion-sparkles span:nth-child(2) { top: 30%; right: 25%; animation-delay: 1s; width: 4px; height: 4px; }
.fashion-sparkles span:nth-child(3) { top: 55%; left: 10%; animation-delay: 2s; }
.fashion-sparkles span:nth-child(4) { top: 70%; right: 15%; animation-delay: 0.5s; width: 5px; height: 5px; }
.fashion-sparkles span:nth-child(5) { top: 85%; left: 45%; animation-delay: 1.5s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .fblob, .fashion-sparkles span { animation: none; }
}

img { max-width: 100%; display: block; }

/* All shop images: full product visible inside frame (no crop overflow) */
.img-fit-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  max-width: 100%;
  max-height: 100%;
}

/* Any image inside a framed container */
[class*="-image"] img,
[class*="-item"] img,
.gallery-main img,
.hero-media img,
.insta-item img,
.category-card img {
  object-fit: contain;
  object-position: center center;
}
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin: 0 auto; padding-left: 0; padding-right: 0; }
.font-display { font-family: var(--font-display); }
.text-muted { color: rgba(45,74,62,.65); }
.text-gold { color: var(--champagne); }
.text-center { text-align: center; }
.text-sm { font-size: .85rem; }
.eyebrow { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--champagne); font-weight: 600; }

.site-main { flex: 1; width: 100%; }

/* Announcement + Header */
.announcement-bar {
  background: linear-gradient(90deg, var(--green), var(--green-soft), var(--green));
  background-size: 200% 100%;
  animation: shimmerBar 8s ease infinite;
  color: var(--ivory);
  text-align: center;
  padding: .65rem 1rem;
  font-size: .82rem;
  letter-spacing: .04em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

@keyframes shimmerBar {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.announcement-icon::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--champagne-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--champagne);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 165, 165, 0.2);
  box-shadow: 0 4px 24px rgba(212, 165, 165, 0.08);
}

.header-wrap { position: relative; }

.header-inner {
  display: flex;
  align-items: center;
  gap: .65rem .85rem;
  padding: .75rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  line-height: 1.1;
  display: flex;
  align-items: center;
}

/* Brand logo image — cream bg matches site header */
.logo-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 0;
  flex: 1 1 120px;
  max-width: min(240px, 72vw);
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.2s;
}

.logo-image-link:hover {
  opacity: 0.92;
}

.logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.logo-brand--footer {
  display: inline-block;
  margin-bottom: 0.85rem;
  flex: none;
  max-width: min(220px, 100%);
}

.logo-brand--footer .logo-image {
  max-height: 72px;
  object-position: center;
}

.main-nav {
  display: none;
  gap: .9rem;
  font-size: .85rem;
  font-weight: 500;
  order: 3;
  width: 100%;
}

.main-nav a:hover { color: var(--champagne); }

.header-actions {
  display: flex;
  gap: .35rem;
  margin-left: auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
}

.icon-btn:hover { background: var(--beige); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--blush);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: .3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.icon-btn svg { display: block; }
.icon-btn-bag { position: relative; }
.icon-btn-bag:hover { color: var(--champagne); }

.header-cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--champagne);
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(201, 169, 98, 0.45);
  pointer-events: none;
}

.header-cart-badge[hidden] {
  display: none !important;
}

.icon-btn-bag.has-cart-items {
  color: var(--champagne);
}

@media (min-width: 992px) {
  .header-inner { flex-wrap: nowrap; }
  .main-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    order: 0;
    width: auto;
  }
  .menu-toggle { display: none; }
  .logo-image-link { flex: 0 0 auto; max-width: 260px; }
}

@media (max-width: 991px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .logo-image-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    flex: none;
    max-width: min(200px, 58vw);
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .logo-image {
    max-height: 48px;
    object-position: center;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 1rem 4%;
    border-bottom: 1px solid rgba(45,74,62,.1);
    box-shadow: var(--shadow);
    z-index: 150;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: .9rem;
  transition: .25s;
  white-space: nowrap;
}

.btn-gold { background: var(--champagne); color: var(--ivory); }
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--ivory); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-outline { border: 1px solid var(--green); background: transparent; }
.btn-soft { background: var(--beige); color: var(--green); }
.btn-sm { padding: .45rem .95rem; font-size: .8rem; }
.btn-lg { padding: .85rem 1.8rem; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; }

/* Hero */
.hero-slider {
  position: relative;
  height: min(75vh, 580px);
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), var(--cream));
  border-radius: 0 0 2rem 2rem;
  margin-bottom: .5rem;
  box-shadow: var(--shadow-soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}

.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: contain;
  object-position: center right;
  background: linear-gradient(135deg, var(--blush), var(--cream));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 252, 250, 0.92) 0%,
    rgba(255, 252, 250, 0.65) 32%,
    rgba(255, 252, 250, 0.2) 55%,
    transparent 72%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  max-width: min(480px, 88%);
  padding: 1.5rem 0;
  margin-left: 4%;
}

@media (min-width: 768px) {
  .hero-content {
    margin-left: 0;
    padding: 2rem 0;
    max-width: 42%;
  }
  .hero-slide::after {
    background: linear-gradient(
      90deg,
      rgba(255, 252, 250, 0.9) 0%,
      rgba(255, 252, 250, 0.45) 38%,
      transparent 58%
    );
  }
}

.hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin: .5rem 0 1rem;
  line-height: 1.15;
}

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 3;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(45,74,62,.25);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active { width: 28px; background: var(--champagne); }

/* Sections */
.section { padding: 2.5rem 0; }

@media (min-width: 768px) { .section { padding: 3.5rem 0; } }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }

.link-more { color: var(--champagne); font-weight: 500; white-space: nowrap; }

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.category-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.35rem;
  transition: transform .5s ease;
}

.category-card:hover img { transform: scale(1.03); }

.category-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2.5rem .75rem 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  pointer-events: none;
}

.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-sub { max-width: 28rem; margin-bottom: 1rem; opacity: .85; }
.hero-label { margin-bottom: .25rem; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem  .75rem;
  align-items: stretch;
}

@media (min-width: 600px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeUp .5s ease both;
  background: rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius) + 2px);
  padding: .5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform .35s, box-shadow .35s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

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

.product-card-badges {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  max-width: calc(100% - 3rem);
}

.badge {
  font-size: .6rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}

.badge-trending { background: rgba(201,169,98,.3); color: var(--green); }
.badge-bestseller { background: linear-gradient(135deg, var(--green), #3d6354); color: var(--ivory); font-weight: 600; }
.badge-new { background: var(--beige); }
.badge-urgent { background: #fce8e8; color: #b42318; }
.badge-sale { background: var(--champagne); color: var(--ivory); }

/* Heart on product cards only — NOT on product detail page buttons */
.product-card .wishlist-btn {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  color: var(--green);
  transition: transform 0.2s, color 0.2s, background 0.2s;
}

.product-card .wishlist-btn:hover {
  transform: scale(1.08);
  background: #fff;
}

.product-card .wishlist-btn.active {
  color: #e11d48;
  background: #fff5f7;
}

/* Product page + header wishlist — normal button flow */
.product-actions .wishlist-btn,
.btn-ghost.wishlist-btn {
  position: static;
  width: auto;
  height: auto;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  background: var(--blush);
  border: 1px solid rgba(212, 165, 165, 0.4);
  font-size: 0.9rem;
  font-family: var(--font-body);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-actions .wishlist-btn.active,
.btn-ghost.wishlist-btn.active {
  background: #fce8ec;
  color: #e11d48;
  border-color: #f5c6d0;
}

.header-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.65rem !important;
  width: auto !important;
  border-radius: 999px !important;
}

.header-wishlist .icon-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: none;
}

@media (min-width: 1100px) {
  .header-wishlist .icon-label {
    display: inline;
  }
}

.product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #faf6f2 0%, var(--beige) 100%);
  position: relative;
  flex-shrink: 0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.4rem;
  transition: opacity .4s, transform .45s;
}

.product-card-image .img-main,
.product-card-image .img-hover {
  position: absolute;
  inset: 0;
  margin: auto;
}

.product-card-image .img-hover {
  opacity: 0;
  pointer-events: none;
}

@media (hover: hover) {
  .product-card-image:has(.img-hover) .img-main { transition: opacity .35s; }
  .product-card:hover .product-card-image:has(.img-hover) .img-main { opacity: 0; }
  .product-card:hover .product-card-image:has(.img-hover) .img-hover { opacity: 1; }
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: .65rem;
  gap: .2rem;
}

.product-meta {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(45,74,62,.5);
}

.product-card h3 {
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.product-card h3 a:hover { color: var(--champagne); }

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .25rem .4rem;
  margin-top: .15rem;
}

.product-price strong { font-weight: 600; font-size: .95rem; }

.price-mrp {
  text-decoration: line-through;
  color: rgba(45,74,62,.4);
  font-size: .8rem;
}

.stock-warn { font-size: .75rem; color: #b42318; margin-top: .1rem; }
.stock-warn.out { color: rgba(45,74,62,.5); }

.product-card-actions {
  display: flex;
  gap: .4rem;
  margin-top: auto;
  padding-top: .6rem;
  flex-wrap: wrap;
}

.product-card-actions .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

/* Offer banner */
.offer-banner { margin: 1.5rem auto 2rem; }

.offer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--beige), var(--cream));
}

@media (min-width: 768px) { .offer-inner { padding: 2rem; } }

.countdown { display: flex; gap: .5rem; flex-wrap: wrap; }

.countdown div {
  background: var(--ivory);
  padding: .6rem .85rem;
  border-radius: .75rem;
  text-align: center;
  min-width: 3.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}

.countdown span { display: block; font-family: var(--font-display); font-size: 1.35rem; }
.countdown small { font-size: .65rem; text-transform: uppercase; opacity: .7; }

/* Brands */
.brands-section {
  background: linear-gradient(180deg, rgba(243, 224, 228, 0.35), rgba(250, 246, 242, 0.5));
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 165, 165, 0.15);
  border-bottom: 1px solid rgba(212, 165, 165, 0.15);
}

.brands-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) { .brands-grid { grid-template-columns: 1fr 1fr; } }

.brand-card {
  background: var(--ivory);
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.brand-card h3 { margin-bottom: .5rem; }
.brand-card p { margin-bottom: 1rem; color: rgba(45,74,62,.7); font-size: .95rem; }

.brand-section { margin-bottom: 3rem; }
.brand-section h2 { margin-bottom: 1.25rem; font-size: 1.75rem; }

/* Instagram */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}

@media (min-width: 768px) { .insta-grid { grid-template-columns: repeat(4, 1fr); } }

.insta-item {
  aspect-ratio: 1;
  border-radius: .75rem;
  overflow: hidden;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.25rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--cream);
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45,74,62,.06);
  height: 100%;
}

.stars { color: var(--champagne); margin-bottom: .5rem; letter-spacing: .1em; }
.review-card footer { margin-top: .75rem; font-size: .85rem; opacity: .7; }

/* Footer */
.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(45,74,62,.08);
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-grid h3, .footer-grid h4 { margin-bottom: .75rem; font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin: .35rem 0; }
.footer-grid a:hover { color: var(--champagne); }

.newsletter-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(45,74,62,.15);
  font-family: inherit;
}

.footer-bottom { text-align: center; font-size: .8rem; color: rgba(45,74,62,.5); }

/* Pages */
.page-header {
  padding: 2rem 0 1rem;
}

.page-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; }

.filters {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.filters a {
  padding: .45rem 1rem;
  border-radius: 999px;
  background: var(--beige);
  font-size: .85rem;
}

.filters a.active { background: var(--green); color: var(--ivory); }

.search-form {
  display: flex;
  gap: .5rem;
  margin: 1rem 0;
  max-width: 520px;
  width: 100%;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(45,74,62,.15);
  font-family: inherit;
  font-size: 1rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(45,74,62,.6);
}

.empty-state a { color: var(--champagne); text-decoration: underline; }

/* Product detail */
.product-detail {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0 3rem;
  }
  .product-gallery { position: sticky; top: 100px; }
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #faf6f2 0%, var(--beige) 100%);
  max-height: min(75vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.5rem;
}

.gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  -webkit-overflow-scrolling: touch;
}

.thumb {
  width: 72px;
  height: 88px;
  border: 2px solid transparent;
  border-radius: .5rem;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
}

.thumb.active { border-color: var(--champagne); }

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 2px;
}

.product-video {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius);
  margin-top: 1rem;
  background: #000;
}

.product-info h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.2; margin: .35rem 0; }

.product-sku { font-size: .85rem; color: rgba(45,74,62,.55); margin-bottom: .5rem; }

.product-price-lg {
  font-size: 1.4rem;
  margin: .75rem 0;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.25rem 0;
}

.size-select { margin: 1rem 0; }
.size-select label { display: block; font-weight: 500; margin-bottom: .5rem; font-size: .9rem; }

.size-btns { display: flex; flex-wrap: wrap; gap: .5rem; }

.size-btn {
  padding: .45rem 1rem;
  border: 1px solid rgba(45,74,62,.2);
  border-radius: .5rem;
  background: var(--ivory);
  cursor: pointer;
  font-family: inherit;
}

.size-btn:hover, .size-btn.active { border-color: var(--champagne); background: var(--beige); }

.product-desc p { margin-top: .5rem; line-height: 1.7; }

.box {
  background: var(--cream);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  border: 1px solid rgba(45,74,62,.06);
}

.box h3 { font-size: 1rem; margin-bottom: .5rem; font-family: var(--font-display); }

.contact-cards {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}

@media (min-width: 600px) { .contact-cards { grid-template-columns: 1fr 1fr; } }

.contact-cards .box { text-align: center; padding: 2rem 1.5rem; }

.policy-content { max-width: 720px; margin: 0 auto 3rem; line-height: 1.8; }

/* Cart & wishlist */
.wishlist-page {
  padding-top: 0;
  padding-bottom: 3rem;
  min-height: 200px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.wishlist-grid {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cart-item, .wishlist-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(45,74,62,.06);
}

@media (min-width: 600px) {
  .cart-item, .wishlist-item { grid-template-columns: 110px 1fr auto; }
}

.cart-item > a,
.wishlist-item > a:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/4;
  background: var(--beige);
  border-radius: .65rem;
  overflow: hidden;
}

.cart-item img, .wishlist-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: center center;
  padding: 0.35rem;
  border-radius: .65rem;
  background: var(--beige);
}

.cart-item-info h3, .wishlist-item-info h3 { font-size: 1rem; margin-bottom: .25rem; }
.cart-item-info h3 a:hover { color: var(--champagne); }

.cart-item-meta { font-size: .8rem; color: rgba(45,74,62,.55); margin-bottom: .35rem; }

.cart-total-box {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--beige), var(--cream));
  border-radius: 1.25rem;
  text-align: center;
}

.cart-total-box .btn { margin-top: 1rem; }

.cart-total-amount {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}

.cart-intro {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}

.cart-payment-note {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.85rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cart-payment-note ol {
  margin: 0.65rem 0 0.75rem 1.15rem;
}

.cart-payment-note li { margin: 0.35rem 0; }

.cart-remove {
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.75rem !important;
}

.flash { padding: .75rem 1rem; border-radius: .5rem; margin: 1rem 0; }
.flash-success { background: #e8f5e9; }
.flash-error { background: #fce8e8; }
