/* =========================================================
   Custom Wedding Co. — Brand Style Sheet
   Colors: Gold #B89A52 | Cream #F7EFE3 | Blush #F2D9D9
           Espresso #4A2C2A | Orange #D4700A
   Fonts: Cormorant Garamond (elegant serif) + Inter (sans)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #B89A52;
  --gold-light: #D4B96A;
  --gold-pale:  #EFE3C2;
  --cream:      #F7EFE3;
  --cream-dark: #EDE5D5;
  --blush:      #F2D9D9;
  --blush-dark: #E8C4C4;
  --espresso:   #4A2C2A;
  --espresso-light: #6B3F3C;
  --orange:     #D4700A;
  --white:      #FFFFFF;
  --gray-100:   #F5F5F0;
  --gray-200:   #E8E6E0;
  --gray-400:   #9E9890;
  --gray-600:   #6B6560;
  --text:       #2C1F1E;
  --text-muted: #7A6E6A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(74,44,42,0.08);
  --shadow:    0 4px 16px rgba(74,44,42,0.12);
  --shadow-lg: 0 8px 32px rgba(74,44,42,0.16);
  --shadow-xl: 0 16px 48px rgba(74,44,42,0.20);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ───────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Layout Utilities ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-espresso { color: var(--espresso); }
.text-muted { color: var(--text-muted); }

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--espresso-light);
  box-shadow: var(--shadow);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 16px rgba(184,154,82,0.4);
}

.btn--outline {
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}
.btn--outline:hover {
  background: var(--espresso);
  color: var(--cream);
}

.btn--ghost {
  color: var(--gold);
  padding: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.btn--ghost:hover { border-bottom-color: var(--gold); }

.btn--lg { padding: 18px 48px; font-size: 0.9rem; }

/* ─── Header / Nav ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,239,227,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

.site-logo {
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.04em;
  display: block;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  display: block;
}

/* ─── Hamburger Button ─────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--cream-dark); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Drawer ────────────────────────────────────── */
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74,44,42,0.5);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.open { display: block; opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--cream);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.drawer.open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.drawer__logo img { height: 36px; width: auto; }

.drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--espresso);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}
.drawer__close:hover { background: var(--cream-dark); }

.drawer__nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}
.drawer__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  border-bottom: 1px solid var(--cream-dark);
  transition: all var(--transition);
}
.drawer__nav-link:hover { color: var(--gold); background: rgba(184,154,82,0.06); }
.drawer__nav-link span { color: var(--gold-pale); font-size: 0.9rem; }

.drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ─── Footer logo ──────────────────────────────────────── */
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 0.88;
  filter: brightness(0) invert(1);
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--espresso);
  transition: all var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--cream-dark); color: var(--gold); }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Announcement Bar ─────────────────────────────────── */
.announcement-bar {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; }

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.8);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,44,42,0.6) 0%, rgba(184,154,82,0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(247,239,227,0.85);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,239,227,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Trust Bar ────────────────────────────────────────── */
.trust-bar {
  background: var(--espresso);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.trust-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(184,154,82,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-item__text {
  font-size: 0.8rem;
  line-height: 1.4;
}
.trust-item__text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ─── Section Headers ──────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header--left { text-align: left; }

/* ─── Product Cards ────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}

.product-card__img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--cream);
}
.product-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(74,44,42,0.9);
  color: var(--cream);
  text-align: center;
  padding: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }

.product-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 8px;
  flex: 1;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.rating-count { font-size: 0.72rem; color: var(--text-muted); }

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--espresso);
}
.product-card__price-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── Category Grid ────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition);
}
.category-card:hover { transform: scale(1.02); }

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card__bg { transform: scale(1.06); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,44,42,0.75) 0%, transparent 55%);
}

.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: var(--white);
}
.category-card__label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.category-card__count {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ─── Featured / Highlight Section ────────────────────── */
.highlight-section {
  background: var(--cream);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.highlight-grid.reverse { direction: rtl; }
.highlight-grid.reverse > * { direction: ltr; }

.highlight__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.highlight__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight__img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: var(--blush);
  border-radius: 50%;
  z-index: -1;
}

.highlight__content { padding: 20px 0; }
.highlight__content .eyebrow { margin-bottom: 16px; display: block; }
.highlight__content h2 { margin-bottom: 20px; }
.highlight__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.highlight__features { margin-bottom: 36px; }
.highlight__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--text);
}
.highlight__features li:last-child { border-bottom: none; }
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials-section { background: var(--blush); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--espresso);
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--espresso);
  margin-bottom: 2px;
}
.testimonial-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Newsletter ───────────────────────────────────────── */
.newsletter-section {
  background: var(--espresso);
  color: var(--cream);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { color: var(--cream); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(247,239,227,0.75); margin-bottom: 32px; font-size: 1rem; }

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  outline: none;
}
.newsletter-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ─── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--espresso);
  color: rgba(247,239,227,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-name { color: var(--cream); font-size: 1.6rem; margin-bottom: 4px; }
.footer-brand .logo-sub { color: var(--gold); margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(247,239,227,0.1);
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184,154,82,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

/* ─── Shop Page ────────────────────────────────────────── */
.shop-hero {
  background: var(--cream);
  padding: 56px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}
.shop-hero h1 { margin-bottom: 8px; }
.shop-hero p { color: var(--text-muted); font-size: 0.95rem; }

.shop-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.shop-breadcrumb a { color: var(--gold); }
.shop-breadcrumb span { margin: 0 6px; }

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 48px 0;
}

.shop-filters { position: sticky; top: 88px; align-self: start; }

.filter-group { margin-bottom: 32px; }
.filter-group h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--transition);
}
.filter-option:hover { color: var(--gold); }
.filter-option input[type="radio"] { display: none; }
.filter-option.active { color: var(--gold); font-weight: 600; }
.filter-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 10px;
}

.shop-main { min-width: 0; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.shop-count { font-size: 0.85rem; color: var(--text-muted); }

.sort-select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9890' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Product Detail Page ──────────────────────────────── */
.product-hero {
  padding: 48px 0 80px;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Image Gallery */
.product-gallery { position: sticky; top: 100px; }

.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
  margin-bottom: 12px;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info { padding: 8px 0; }

.product-info__breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-info__breadcrumb a { color: var(--gold); }
.product-info__breadcrumb span { margin: 0 6px; color: var(--gray-400); }

.product-info__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.product-info__name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.product-info__rating .stars { font-size: 1.1rem; }
.rating-link {
  font-size: 0.82rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-pale);
}

.product-info__price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
}
.product-info__price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.product-info__description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

/* Custom Options */
.custom-option { margin-bottom: 20px; }
.custom-option__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 10px;
  display: block;
}
.custom-option__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  resize: none;
  background: var(--white);
}
.custom-option__input:focus {
  outline: none;
  border-color: var(--gold);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.product-actions .btn { width: 100%; justify-content: center; }
.btn--cart { background: var(--espresso); color: var(--cream); padding: 16px 24px; font-size: 0.88rem; }
.btn--cart:hover { background: var(--espresso-light); }
.btn--wishlist { border: 1.5px solid var(--gray-200); color: var(--text-muted); padding: 14px 24px; font-size: 0.88rem; }
.btn--wishlist:hover { border-color: var(--blush-dark); color: var(--espresso); }

.product-meta {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-meta span { display: flex; align-items: center; gap: 8px; }
.product-meta strong { color: var(--espresso); }

/* Features */
.product-features {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.product-features h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 14px;
}
.product-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ─── Reviews Section ──────────────────────────────────── */
.reviews-section {
  border-top: 1px solid var(--gray-200);
  padding: 64px 0;
}

.reviews-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: start;
}

.reviews-summary { text-align: center; }
.reviews-summary__score {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 8px;
}
.reviews-summary__stars { font-size: 1.3rem; color: var(--gold); margin-bottom: 8px; }
.reviews-summary__count { font-size: 0.82rem; color: var(--text-muted); }

.reviews-breakdown { padding-top: 8px; }
.breakdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.breakdown-label { width: 50px; color: var(--text-muted); text-align: right; white-space: nowrap; }
.breakdown-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.breakdown-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.breakdown-pct { width: 36px; color: var(--text-muted); font-size: 0.75rem; }

.review-card {
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.review-card:last-child { border-bottom: none; }

.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--espresso);
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer__name { font-weight: 600; color: var(--espresso); font-size: 0.95rem; margin-bottom: 3px; }
.reviewer__meta { font-size: 0.75rem; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.verified-badge {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.06em;
}

.review-card__stars { color: var(--gold); font-size: 0.95rem; }
.review-card__text { font-size: 0.92rem; color: var(--text); line-height: 1.7; }

/* ─── People Also Bought ───────────────────────────────── */
.also-bought-section {
  background: var(--cream);
  padding: 64px 0;
}

.also-bought-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── Breadcrumb ───────────────────────────────────────── */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 20px 0 0;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; color: var(--gray-400); }

/* ─── Page Banner ──────────────────────────────────────── */
.page-banner {
  background: var(--cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* ─── Divider ──────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
  color: var(--gold-pale);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-pale);
}
.divider span { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .also-bought-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav-left { display: none; }
  .nav-right { gap: 12px; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .reviews-header { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .trust-bar__inner { gap: 24px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .also-bought-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}

/* ─── Animations ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ─── Lazy image placeholder ───────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-size: 2rem;
}

/* ─── Loading shimmer ──────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--cream) 25%, var(--cream-dark) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── Notification Toast ───────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--espresso);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon { color: var(--gold); }

/* ─── Price Tag ────────────────────────────────────────── */
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9em;
}
.sale-price { color: var(--orange); }
