/* ═══════════════════════════════════════════════════════════════
   MANMOHAN COLLECTION — Premium Indian Textile Aesthetic
   Inspired by modern luxury textile e-commerce design
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   Palette: Deep Maroon · Rich Gold · Warm Cream
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Core palette (HSL) */
  --bg:              hsl(40, 30%, 97%);
  --bg-soft:         hsl(40, 25%, 95%);
  --card:            hsl(40, 25%, 99%);
  --text:            hsl(20, 25%, 15%);
  --muted:           hsl(20, 15%, 45%);
  --line:            hsl(40, 20%, 85%);

  /* Maroon */
  --maroon:          hsl(350, 65%, 28%);
  --maroon-light:    hsl(350, 55%, 40%);
  --maroon-dark:     hsl(350, 70%, 18%);

  /* Gold */
  --gold:            hsl(38, 75%, 50%);
  --gold-light:      hsl(40, 65%, 70%);
  --gold-dark:       hsl(38, 80%, 35%);
  --gold-soft:       hsl(38, 75%, 50% / 0.12);

  /* Cream / Ivory */
  --cream:           hsl(40, 30%, 97%);
  --cream-dark:      hsl(40, 25%, 90%);
  --ivory:           hsl(45, 40%, 95%);

  /* Gradients */
  --gradient-gold:   linear-gradient(135deg, hsl(38, 75%, 50%), hsl(40, 65%, 60%));
  --gradient-maroon: linear-gradient(135deg, hsl(350, 65%, 28%), hsl(350, 55%, 38%));
  --gradient-luxury: linear-gradient(180deg, hsl(40, 30%, 97%), hsl(40, 25%, 92%));
  --gradient-hero:   linear-gradient(180deg, hsl(40, 30%, 97% / 0.9), hsl(40, 25%, 92% / 0.95));

  /* Shadows (multi-tier) */
  --shadow-soft:     0 4px 20px -4px hsl(20, 25%, 15% / 0.08);
  --shadow-card:     0 8px 30px -8px hsl(20, 25%, 15% / 0.10);
  --shadow-elevated: 0 20px 50px -15px hsl(20, 25%, 15% / 0.15);
  --shadow-gold:     0 4px 20px -4px hsl(38, 75%, 50% / 0.30);

  /* Geometry */
  --radius:          8px;
  --radius-sm:       6px;
  --radius-lg:       12px;
  --container:       min(1240px, calc(100% - 40px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* ── Serif heading family ──────────────────────────────────── */
.brand__name,
.hero__title,
.section__heading h2,
.about-copy h2,
.contact-copy h2,
.site-footer h3,
.featured-card__body h3,
.category-card__content h3,
.product-card__body h3,
.best-card__content h3,
.product-detail__content h2,
.product-detail__price {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: hsl(40, 30%, 97% / 0.85);
  border-bottom: 1px solid hsl(40, 20%, 85% / 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: hsl(40, 30%, 97% / 0.97);
  box-shadow: 0 4px 24px hsl(20, 25%, 15% / 0.08);
}

/* Shared container */
.site-header__inner,
.site-footer__inner,
.hero__inner,
.section__inner {
  width: var(--container);
  margin: 0 auto;
}

.site-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--gradient-maroon);
  color: hsl(40, 30%, 97%);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-soft);
}

.brand__text { display: grid; gap: 1px; }

.brand__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.site-nav a,
.site-footer a {
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover,
.site-footer a:hover { color: var(--maroon); }

.site-nav a:hover::after,
.site-footer a:hover::after { transform: scaleX(1); }

/* ── Buttons ───────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:active {
  transform: scale(0.98);
}

.button--solid {
  background: var(--gradient-maroon);
  color: hsl(40, 30%, 97%);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.button--solid:hover {
  opacity: 0.92;
  box-shadow: var(--shadow-card);
}

.button--gold {
  background: linear-gradient(135deg, #df9920, #d7a542);
  color: hsl(20, 25%, 12%);
  border-color: transparent;
  font-weight: 700;
}

.button--gold:hover {
  box-shadow: var(--shadow-gold);
  filter: brightness(1.05);
}

.button--ghost {
  border-color: var(--maroon);
  color: var(--maroon);
  background: transparent;
}

.button--ghost:hover {
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
}

.button--outline {
  border-color: var(--maroon);
  color: var(--maroon);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button--outline:hover {
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
}

.button--outline svg { width: 18px; height: 18px; }

/* Header cart */
.header-cart {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--maroon);
  background: hsl(40, 25%, 99%);
  transition: all 0.3s ease;
}

.header-cart:hover {
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
  border-color: var(--maroon);
}

.header-cart svg { width: 22px; height: 22px; }

.header-cart__badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: hsl(20, 25%, 12%);
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--maroon);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  width: var(--container);
  margin: 0 auto;
  padding: 12px 0 20px;
  display: grid;
  gap: 6px;
}

.mobile-nav[hidden] { display: none !important; }

.mobile-nav a {
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  transition: all 0.25s ease;
}

.mobile-nav a:hover {
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
  border-color: var(--maroon);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      hsl(40, 30%, 97% / 0.97) 0%,
      hsl(40, 30%, 97% / 0.82) 45%,
      hsl(40, 30%, 97% / 0.35) 100%),
    url("../images/hero-suits.png")
      center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, hsl(38, 75%, 50% / 0.06), transparent 50%),
    radial-gradient(ellipse at 75% 30%, hsl(350, 65%, 28% / 0.06), transparent 40%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Eyebrow label (global) */
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 700;
}

.hero__subtitle {
  margin: 16px 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--maroon);
  font-weight: 600;
}

.hero__description {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Hero stat cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.hero__stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: hsl(40, 25%, 99% / 0.85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.hero__stats div:hover {
  box-shadow: var(--shadow-card);
  border-color: hsl(38, 75%, 50% / 0.3);
}

.hero__stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Hero visual / image frame */
.hero__visual {
  position: relative;
  min-height: 600px;
}

.hero__frame {
  height: 100%;
  min-height: 600px;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: hsl(40, 25%, 99%);
  border: 1px solid hsl(40, 20%, 85% / 0.8);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.hero__frame img,
.category-card img,
.product-card__image img,
.best-card img,
.instagram-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__frame img {
  border-radius: var(--radius);
  min-height: 100%;
}

/* Floating info badges */
.hero__floating {
  position: absolute;
  right: 20px;
  max-width: 240px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid hsl(40, 20%, 85% / 0.7);
  background: hsl(40, 30%, 97% / 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.hero__floating:hover {
  box-shadow: var(--shadow-elevated);
}

.hero__floating--top  { top: 24px; }
.hero__floating--bottom { bottom: 24px; }

.hero__floating-label {
  display: block;
  margin-bottom: 4px;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
}

.hero__floating strong {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Global Styles
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 88px 0;
  position: relative;
}

.section--dark {
  background: var(--gradient-luxury);
}

.section--split {
  background:
    radial-gradient(ellipse at 0% 0%, hsl(350, 65%, 28% / 0.04), transparent 40%),
    radial-gradient(ellipse at 100% 100%, hsl(38, 75%, 50% / 0.04), transparent 40%);
}

.section--featured {
  background: linear-gradient(180deg, hsl(40, 25%, 95%), var(--bg));
}

.section__heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section__heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__rule {
  width: 80px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}

/* Gold divider between sections */
.divider-gold {
  margin: 0 auto;
  height: 1px;
  width: 6rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section__heading p:last-child,
.about-copy p,
.contact-copy p,
.testimonial-card p {
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════════════════════ */
.category-grid,
.featured-grid,
.product-grid,
.best-grid,
.testimonial-grid,
.instagram-grid {
  display: grid;
  gap: 20px;
}

.category-grid    { grid-template-columns: repeat(4, 1fr); }
.featured-grid    { grid-template-columns: repeat(4, 1fr); }
.product-grid     { grid-template-columns: repeat(3, 1fr); }
.best-grid        { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.instagram-grid   { grid-template-columns: repeat(6, 1fr); }

/* ═══════════════════════════════════════════════════════════
   CARDS — Shared Base
   ═══════════════════════════════════════════════════════════ */
.category-card,
.featured-card,
.product-card,
.best-card,
.testimonial-card,
.contact-form,
.about-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
}

.category-card:hover,
.featured-card:hover,
.product-card:hover,
.best-card:hover,
.instagram-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: hsl(38, 75%, 50% / 0.3);
}

/* ── Featured Cards ────────────────────────────────────────── */
.featured-card { overflow: hidden; }

.featured-card__media {
  position: relative;
  aspect-ratio: 0.82;
  background: var(--cream-dark);
  overflow: hidden;
}

.featured-card__media img {
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}

.featured-card:hover .featured-card__media img {
  transform: scale(1.05);
}

.featured-card__badge {
  position: absolute;
  left: 12px; top: 12px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.featured-card__actions {
  position: absolute;
  inset: auto 0 16px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.featured-card:hover .featured-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.featured-card__actions button {
  min-width: 48px; height: 48px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: hsl(40, 25%, 99%);
  color: var(--text);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.featured-card__actions button:hover {
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
}

.featured-card__actions button svg,
.product-detail__actions a svg {
  width: 20px; height: 20px;
}

.featured-card__body {
  padding: 16px 16px 18px;
}

.featured-card__body p {
  margin: 0 0 6px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 600;
}

.featured-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.featured-card__body span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── Product Detail Section ────────────────────────────────── */
.section--detail { padding-top: 24px; }

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.product-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  background: var(--cream-dark);
}

.product-detail__image img {
  aspect-ratio: 0.95;
  object-fit: cover;
}

.product-detail__content h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.product-detail__price {
  margin-bottom: 20px;
  color: var(--maroon);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.product-meta {
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.product-meta div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: center;
}

.product-meta dt { color: var(--muted); font-weight: 500; }
.product-meta dd { margin: 0; font-weight: 600; }
.product-meta .is-stock { color: #16a34a; }

.product-detail__description {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 500;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.quantity-stepper button {
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  color: var(--maroon);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.quantity-stepper button:hover { background: hsl(350, 65%, 28% / 0.06); }

.quantity-stepper output {
  min-width: 48px;
  text-align: center;
  font-weight: 700;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Category Cards ────────────────────────────────────────── */
.category-card { overflow: hidden; }

.category-card img {
  aspect-ratio: 0.82;
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}

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

.category-card__content { padding: 18px; }

.category-card__content h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.category-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Product Cards (New Arrivals) ──────────────────────────── */
.product-card { overflow: hidden; }

.product-card__image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
}

.product-card__image img {
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}

.product-card:hover .product-card__image img { transform: scale(1.05); }

.product-card__image span {
  position: absolute;
  left: 12px; top: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--maroon);
  color: hsl(40, 30%, 97%);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  font-weight: 700;
}

.product-card__body { padding: 18px; }
.product-card__body h3 { margin: 0 0 6px; font-size: 1.4rem; line-height: 1.15; }
.product-card__body p  { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ── Best Sellers Cards ────────────────────────────────────── */
.best-card { overflow: hidden; }

.best-card img {
  aspect-ratio: 0.88;
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}

.best-card:hover img { transform: scale(1.05); }

.best-card__content { padding: 16px 18px 20px; }

.best-card__content span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}

.best-card__content h3 { margin: 0; font-size: 1.55rem; line-height: 1.1; }

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-copy,
.contact-copy { padding-right: 24px; }
.about-copy p { max-width: 56ch; line-height: 1.7; }

.about-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.about-highlights div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
  transition: all 0.3s ease;
}

.about-highlights div:hover {
  border-color: hsl(38, 75%, 50% / 0.3);
  box-shadow: var(--shadow-card);
}

.about-highlights strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-highlights span {
  color: var(--muted);
  font-size: 0.85rem;
}

.about-panel {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.about-panel__stat {
  padding: 22px 22px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.about-panel__stat:last-child { border-bottom: none; }

.about-panel__stat:hover { background: hsl(40, 25%, 95%); }

.about-panel__stat span {
  display: block;
  margin-bottom: 6px;
  color: var(--maroon);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-panel__stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonial-card {
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px; left: 22px;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1;
  color: hsl(38, 75%, 50% / 0.15);
  pointer-events: none;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card footer { display: grid; gap: 3px; }

.testimonial-card strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.testimonial-card span {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM GALLERY
   ═══════════════════════════════════════════════════════════ */
.instagram-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  aspect-ratio: 0.8;
  transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
}

.instagram-card img {
  transition: transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}

.instagram-card:hover img { transform: scale(1.08); }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-details div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
  transition: all 0.3s ease;
}

.contact-details div:hover {
  border-color: hsl(38, 75%, 50% / 0.3);
  box-shadow: var(--shadow-card);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.contact-details strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Contact form */
.contact-form {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px hsl(350, 65%, 28% / 0.08);
}

.contact-form__full { grid-column: 1 / -1; }

.contact-form__note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  padding: 48px 0 20px;
  border-top: 2px solid hsl(38, 75%, 50% / 0.2);
  background: linear-gradient(180deg, hsl(350, 70%, 20%) 0%, hsl(350, 72%, 14%) 100%);
  color: hsl(40, 30%, 95%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 1.6rem;
  color: hsl(40, 30%, 97%);
}

.site-footer p,
.site-footer a {
  color: hsl(40, 25%, 80%);
  line-height: 1.7;
}

.site-footer a {
  display: block;
  padding: 3px 0;
  font-weight: 500;
}

.site-footer a::after { background: var(--gold); }

.brand--footer { margin-bottom: 16px; }

.brand--footer .brand__mark {
  background: hsl(40, 30%, 97%);
  color: var(--maroon);
}

.brand--footer .brand__name,
.brand--footer .brand__tag {
  color: hsl(40, 25%, 90%);
}

.site-footer__bottom {
  width: var(--container);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid hsl(40, 30%, 97% / 0.1);
  text-align: center;
  color: hsl(40, 25%, 65%);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* Keyframe animations */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  0%   { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US / TRUST SECTION
   ═══════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: hsl(38, 75%, 50% / 0.3);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: hsl(350, 65%, 28% / 0.06);
  color: var(--maroon);
}

.trust-card__icon svg {
  width: 26px;
  height: 26px;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   WHOLESALE SECTION
   ═══════════════════════════════════════════════════════════ */
.wholesale-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.wholesale-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
}

.wholesale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: hsl(38, 75%, 50% / 0.3);
}

.wholesale-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: hsl(38, 75%, 50% / 0.1);
  color: var(--gold-dark);
}

.wholesale-card__icon svg {
  width: 26px;
  height: 26px;
}

.wholesale-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.wholesale-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Wholesale CTA row */
.wholesale-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   PRICING TABLE
   ═══════════════════════════════════════════════════════════ */
.pricing-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-table__title {
  margin: 0;
  padding: 20px 24px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  background: hsl(40, 25%, 97%);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table th {
  padding: 14px 24px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: hsl(40, 25%, 96%);
  border-bottom: 1px solid var(--line);
}

.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid hsl(40, 20%, 92%);
  color: var(--text);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table strong {
  color: var(--maroon);
  font-size: 1.05rem;
}

.pricing-table small {
  color: var(--muted);
  font-size: 0.82rem;
}

.pricing-table .savings {
  color: #16a34a;
  font-weight: 700;
}

.pricing-table__best {
  background: hsl(38, 75%, 50% / 0.06);
}

.pricing-table__best td {
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PRICES IN CARDS
   ═══════════════════════════════════════════════════════════ */
.featured-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

.featured-card__price strong {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--maroon);
}

.featured-card__price small {
  color: var(--muted);
  font-size: 0.78rem;
}

.featured-card__badge--sale {
  background: var(--gold) !important;
  color: hsl(20, 25%, 12%) !important;
}

.product-card__price {
  color: var(--maroon);
  font-weight: 600;
}

.product-card__price small {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.price-retail {
  font-size: inherit;
  font-weight: 700;
}

.price-wholesale {
  display: block;
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 500;
}

.price-wholesale small {
  color: var(--muted);
  font-weight: 400;
}

/* Bulk order text link */
.bulk-order-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.bulk-order-link:hover {
  color: var(--maroon);
}

/* ═══════════════════════════════════════════════════════════
   6-COLUMN CATEGORY GRID
   ═══════════════════════════════════════════════════════════ */
.category-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.category-card__count {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: hsl(38, 75%, 50% / 0.1);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════
   HERO ITALIC ACCENT
   ═══════════════════════════════════════════════════════════ */
.hero__title em {
  font-style: italic;
  color: var(--maroon);
}

/* ═══════════════════════════════════════════════════════════
   FORM SELECT STYLING
   ═══════════════════════════════════════════════════════════ */
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.contact-form select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px hsl(350, 65%, 28% / 0.08);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER SOCIAL ICONS
   ═══════════════════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid hsl(40, 30%, 97% / 0.15);
  color: hsl(40, 25%, 80%);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: hsl(40, 30%, 97%);
  color: var(--maroon);
  border-color: hsl(40, 30%, 97%);
}

.footer-social a::after {
  display: none;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float span {
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1100px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .site-nav,
  .site-header__cta { display: none; }

  .nav-toggle { display: inline-flex; }

  .hero__inner,
  .about-grid,
  .contact-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 480px;
    order: -1;
  }

  .hero__frame { min-height: 480px; }

  .category-grid,
  .category-grid--six,
  .featured-grid,
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .best-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .wholesale-features { grid-template-columns: 1fr 1fr; }

  .about-copy,
  .contact-copy { padding-right: 0; }

  .whatsapp-float span { display: none; }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 720px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  :root {
    --container: min(1200px, calc(100% - 24px));
  }

  .site-header__inner { min-height: 64px; }

  .brand__mark { width: 38px; height: 38px; font-size: 1.05rem; }
  .brand__name { font-size: 1rem; }

  .hero { padding-top: 80px; }

  .hero__title {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    max-width: 100%;
  }

  .hero__subtitle {
    letter-spacing: 0.16em;
    font-size: 0.85rem;
  }

  .hero__stats { grid-template-columns: 1fr; }

  .category-grid,
  .category-grid--six,
  .featured-grid,
  .product-grid,
  .best-grid,
  .testimonial-grid,
  .instagram-grid,
  .contact-form,
  .product-detail,
  .trust-grid,
  .wholesale-features {
    grid-template-columns: 1fr;
  }

  .section { padding: 64px 0; }

  .section__heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .hero__floating {
    right: 10px; left: 10px;
    max-width: none;
  }

  .product-detail { gap: 28px; }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .wholesale-cta {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
}

