/* ============================================================
   MadhavPrem — Shared Design System
   One source of truth for color, type, spacing & components.
   Every page (home + category pages) links this single file.
   ============================================================ */

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

:root {
  /* Brand palette — editorial-premium refinement of the original identity */
  --ink:            #0a0f0d;
  --ink-soft:       #12211c;
  --emerald:        #0d4a3a;
  --emerald-mid:    #155c49;
  --emerald-light:  #1e7a5f;
  --emerald-glow:   #26a07c;
  --champagne:      #c9a84c;
  --champagne-lt:   #e8cf8f;
  --champagne-dk:   #a07c2e;
  --blush:          #b3536b;   /* accent — wishlist / sale / rating */
  --blush-lt:       #e8b9c6;
  --ivory:          #faf6ef;
  --ivory-dark:     #f0e8d8;
  --white:          #ffffff;
  --text-dark:      #1a2e27;
  --text-mid:       #3d5c50;
  --text-light:     #6b8f80;
  --surface:        #f5f0e8;
  --border-soft:    rgba(13, 74, 58, 0.12);

  --shadow-sm: 0 4px 16px rgba(13, 74, 58, 0.10);
  --shadow-md: 0 8px 28px rgba(13, 74, 58, 0.14);
  --shadow-lg: 0 20px 55px rgba(13, 74, 58, 0.20);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;

  --container: 1240px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- RESET -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #071c16 0%, #0a2a20 40%, #0f3529 70%, #132e24 100%);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* -------- SCROLL REVEAL -------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* -------- NAVBAR -------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar {
  max-width: var(--container); margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  gap: 1rem;
}
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.75rem;
  color: var(--emerald); letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 0.4rem;
}
.logo span { color: var(--champagne-dk); font-size: 0.92rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav-links a {
  position: relative; font-size: 0.92rem; font-weight: 500; color: var(--text-mid);
  padding: 0.4rem 0.1rem; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--champagne-dk); transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--emerald); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-soft);
  background: var(--white); color: var(--emerald); font-size: 1.05rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.icon-btn:hover { background: var(--emerald); color: var(--champagne-lt); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.icon-badge {
  position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--blush); color: #fff; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ivory);
}
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-soft);
  background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--emerald); transition: 0.25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background-color: #faf6ef;
}

/* -------- SEARCH (navbar) -------- */
.nav-search {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-pill);
  padding: 0.45rem 0.9rem; flex: 1; max-width: 260px;
}
.nav-search input {
  border: none; outline: none; background: transparent; font-family: inherit;
  font-size: 0.85rem; color: var(--text-dark); width: 100%;
}
.nav-search svg { flex-shrink: 0; opacity: 0.6; }

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.9rem; border-radius: var(--radius-pill); border: none;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; transition: all 0.25s var(--ease);
}
.btn-primary { background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); color: var(--champagne-lt); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--emerald); }
.btn-outline.btn-dark { border-color: var(--emerald); color: var(--emerald); }
.btn-outline.btn-dark:hover { background: var(--emerald); color: var(--champagne-lt); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-ghost { background: var(--surface); color: var(--emerald); }
.btn-ghost:hover { background: var(--ivory-dark); }

/* -------- HERO (dashboard panel, mervmobilya-inspired) -------- */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem); position: relative; }
.hero.hero-split { padding: 0; }

/* -------- Shared hero badge pill (used by hero-simple / collage / wordmark headers) -------- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.28rem 0.8rem; border-radius: var(--radius-pill);
  font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 1rem;
  animation: badgePopIn 0.55s var(--ease) both;
}
.hero-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; animation: badgeDotPulse 1.8s ease-in-out infinite; }
@keyframes badgePopIn {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes badgeDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}

/* -------- HERO (simple + orbit decor) -------- */
.hero.hero-simple {
  text-align: center; min-height: clamp(380px, 50vw, 520px); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero.hero-simple::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(201,168,76,0.12), transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(38,160,124,0.18), transparent 50%);
}
.hero-simple-content { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.hero-simple .hero-badge {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35); color: var(--champagne-lt);
}
.hero-simple .hero-badge::before { background: var(--champagne); }
.hero-simple-content h1 {
  font-family: var(--font-head); font-weight: 800; color: var(--white); line-height: 1.15;
  font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 1.1rem; text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-simple-content h1 em { font-style: italic; color: var(--champagne-lt); font-weight: 600; }
.hero-simple-content p { color: rgba(250,246,239,0.94); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.8rem; text-shadow: 0 1px 8px rgba(0,0,0,0.25); }
.hero-simple-content .buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.hero-orbit-decor {
  position: absolute; z-index: 1; width: clamp(120px, 16vw, 200px); height: clamp(120px, 16vw, 200px); opacity: 0.55;
}
.hero-orbit-decor-left { top: 8%; left: 4%; }
.hero-orbit-decor-right { bottom: 6%; right: 5%; }
.hero-orbit-decor .orbit-ring { position: absolute; inset: 0; border: 1.5px dashed rgba(250,246,239,0.28); border-radius: 50%; }
@media (max-width: 640px) { .hero-orbit-decor { display: none; } }

/* -------- HERO (wordmark variant) -------- */
.hero.hero-wordmark {
  background: var(--ivory); border-radius: 0 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.wordmark-stage {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; place-items: center; min-height: clamp(420px, 58vw, 620px);
}
.wordmark-text {
  grid-area: 1 / 1; z-index: 1; width: 100%; text-align: center;
  font-family: var(--font-head); font-weight: 900; letter-spacing: -0.02em; line-height: 1;
  font-size: clamp(4.2rem, 13vw, 10.5rem); color: var(--emerald); opacity: 0.92;
  white-space: nowrap; user-select: none;
}
.wordmark-photo {
  grid-area: 1 / 1; z-index: 2; width: clamp(190px, 24vw, 320px); aspect-ratio: 3/4;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid var(--ivory);
}
.wordmark-photo img { width: 100%; height: 100%; object-fit: cover; }
.wordmark-caption {
  grid-area: 1 / 1; z-index: 3; align-self: end; justify-self: start;
  max-width: 280px; background: rgba(250,246,239,0.92); backdrop-filter: blur(6px);
  border-radius: var(--radius-md); padding: 1rem 1.1rem; box-shadow: var(--shadow-sm);
}
.wordmark-caption p { color: var(--text-mid); font-size: 0.86rem; line-height: 1.5; margin-bottom: 0.8rem; }
.wordmark-badge {
  grid-area: 1 / 1; z-index: 3; align-self: end; justify-self: end;
  background: var(--white); border-radius: var(--radius-md); padding: 0.7rem 0.9rem;
  display: flex; align-items: center; gap: 0.7rem; box-shadow: var(--shadow-md);
}
.wordmark-badge img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.wordmark-badge strong { display: block; font-size: 0.8rem; color: var(--text-dark); font-weight: 600; }
.wordmark-badge span { font-size: 0.82rem; color: var(--emerald); font-weight: 700; }
@media (max-width: 640px) {
  .wordmark-text { font-size: clamp(3rem, 16vw, 5.5rem); }
  .wordmark-photo { width: clamp(140px, 44vw, 220px); }
  .wordmark-caption, .wordmark-badge { max-width: 46%; padding: 0.7rem 0.8rem; }
  .wordmark-caption p { font-size: 0.76rem; margin-bottom: 0.5rem; }
}

/* -------- HERO (collage variant) -------- */
.hero.hero-collage {
  background: var(--ivory); border-radius: 0 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
}
.collage-header { max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); text-align: center; }
.collage-header .hero-badge {
  background: rgba(13,74,58,0.08); border: 1px solid var(--border-soft); color: var(--emerald);
}
.collage-header .hero-badge::before { background: var(--champagne-dk); }
.collage-header h1 {
  font-family: var(--font-head); font-weight: 900; color: var(--emerald); line-height: 1.04;
  letter-spacing: -0.015em; font-size: clamp(2.2rem, 4.4vw, 3.2rem); margin-bottom: 1rem;
}
.collage-header h1 em { font-style: italic; color: var(--champagne-dk); font-weight: 600; }
.collage-header p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 1.6rem; }
.collage-header .buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.collage-grid {
  max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: clamp(1rem, 2vw, 1.6rem); align-items: end;
}
.collage-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.collage-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.collage-img:hover img { transform: scale(1.06); }
.collage-img.img-a { aspect-ratio: 3/4; }
.collage-img.img-b { aspect-ratio: 4/5; transform: translateY(-1.4rem); }
.collage-img.img-c { aspect-ratio: 1/1; align-self: start; margin-top: 1.6rem; }
.collage-tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2;
  background: rgba(250,246,239,0.95); color: var(--emerald); font-weight: 700; font-size: 0.78rem;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
}
@media (max-width: 860px) {
  .collage-grid { grid-template-columns: 1fr 1fr; }
  .collage-img.img-c { display: none; }
  .collage-img.img-b { transform: none; }
}
@media (max-width: 560px) {
  .collage-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   HERO — editorial split layout (text + framed visual)
   Rebuilt for guaranteed alignment: two simple columns on
   desktop, single stacked column everywhere else. No nested
   asymmetric grids, no reordering tricks — nothing to misalign.
   ============================================================ */
.hero-new {
  position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem);
  overflow: hidden;
}
.hero-shape {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(201,168,76,0.10), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(30,122,95,0.16), transparent 45%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* ---- copy side ---- */
.hero-copy { max-width: 560px; }
.hero-copy .hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.05rem; border-radius: var(--radius-pill);
  background: rgba(250,246,239,0.9); border: 1px solid var(--border-soft);
  color: var(--emerald); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.hero-copy .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--champagne-dk); flex-shrink: 0; }
.hero-new h1 {
  font-family: var(--font-head); font-weight: 900; line-height: 1.08; letter-spacing: -0.015em;
  color: var(--ivory); font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 1.1rem; max-width: 14ch;
}
.hero-new h1 em { font-style: italic; color: var(--champagne-lt); font-weight: 600; }
.hero-new .hero-copy p {
  color: rgba(250,246,239,0.82); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.9rem; max-width: 460px;
}
.hero-new .buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- visual side ---- */
.hero-visual { position: relative; width: 100%; max-width: 460px; margin: 0 auto; }
.hero-frame {
  position: relative; overflow: hidden; border-radius: 200px 200px 28px 28px;
  aspect-ratio: 3 / 4; box-shadow: var(--shadow-lg); border: 6px solid rgba(250,246,239,0.14);
}
.hero-frame-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-frame-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem 1.5rem 1.1rem;
  background: linear-gradient(0deg, rgba(10,15,13,0.85), transparent);
}
.hero-frame-label strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1.15rem; }
.hero-frame-label span { color: rgba(250,246,239,0.78); font-size: 0.78rem; }

.hero-float {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); z-index: 3;
}
.hero-float-top {
  top: -6%; left: -12%; width: clamp(74px, 12vw, 100px); height: clamp(74px, 12vw, 100px);
  border-radius: 50%; overflow: hidden; border: 4px solid var(--white); padding: 0;
}
.hero-float-top img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-bottom {
  bottom: 8%; left: -14%; display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 1rem 0.7rem 0.7rem;
  max-width: 210px;
}
.hero-float-bottom img { width: 46px; height: 46px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.hero-float-bottom strong { display: block; font-size: 0.82rem; color: var(--text-dark); font-weight: 600; }
.hero-float-bottom span { font-size: 0.78rem; color: var(--emerald); font-weight: 700; }

/* ---- info chip strip (all quick-facts in one simple, equal grid) ---- */
.info-chip-grid {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.9rem, 2vw, 1.2rem);
}
.info-chip {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft); padding: 1.1rem 1.15rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0.35rem; min-width: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .info-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
}
.chip-icon { font-size: 1.3rem; }
.chip-text strong { display: block; font-family: var(--font-head); color: var(--emerald); font-size: 1rem; }
.chip-text span, .info-chip > span { font-size: 0.76rem; color: var(--text-mid); }
.chip-num { font-family: var(--font-head); color: var(--emerald); font-size: 1.6rem; line-height: 1; }
.chip-stars { color: var(--champagne-dk); font-size: 0.8rem; }
.info-chip-promo {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); border: none;
  color: var(--champagne-lt); align-items: flex-start; justify-content: center;
}
.info-chip-promo strong { font-family: var(--font-head); font-size: 1.15rem; }
.info-chip-promo span { font-size: 0.76rem; opacity: 0.88; }

@media (max-width: 1180px) {
  .hero-float-top { left: -6%; }
  .hero-float-bottom { left: -6%; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 560px; margin: 0 auto; }
  .hero-copy .hero-badge { margin-inline: auto; }
  .hero-new .buttons { justify-content: center; }
  .hero-new .hero-copy p { margin-inline: auto; }
  .hero-visual { margin-top: 1rem; }
  .info-chip-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .hero-frame { border-radius: 120px 120px 24px 24px; }
  .hero-float-top { width: 64px; height: 64px; left: 0; top: -4%; }
  .hero-float-bottom { left: 0; max-width: 180px; padding: 0.6rem 0.85rem 0.6rem 0.6rem; }
  .hero-float-bottom img { width: 38px; height: 38px; }
  .info-chip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .hero-visual { max-width: 300px; }
  .hero-frame { border-radius: 90px 90px 20px 20px; }
  .hero-float-bottom { position: static; margin-top: 0.9rem; max-width: none; justify-content: center; }
  .info-chip-grid { grid-template-columns: 1fr; }
}

.offer-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, var(--champagne-dk), var(--champagne), var(--champagne-dk));
  background-size: 200% 100%; animation: shimmer-slide 6s ease-in-out infinite;
  color: #1a1204; text-align: center; font-size: 0.92rem; font-weight: 600;
  padding: 0.8rem 1rem; letter-spacing: 0.01em;
}
.offer-banner strong { font-family: var(--font-head); font-weight: 800; font-size: 1.02em; }
@keyframes shimmer-slide { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* -------- SECTIONS -------- */
.section { padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem); max-width: var(--container); margin-inline: auto; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.section-head h2, .section-title {
  font-family: var(--font-head); color: var(--champagne-lt); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem); text-align: center; margin-bottom: 0.6rem;
}
.section-head p, .section-intro { color: rgba(250,246,239,0.68); font-size: 1rem; line-height: 1.6; text-align: center; }

.feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  max-width: var(--container); margin: 2.5rem auto 0; padding: 0 clamp(1rem, 4vw, 2.5rem);
  position: relative; z-index: 5;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-md); padding: 1.8rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.35); }
.feature-card:active { transform: translateY(-2px) scale(0.98); }
.feature-icon {
  width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,74,58,0.1), rgba(201,168,76,0.16));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  transition: transform 0.3s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-6deg); }
.feature-card h3 { font-family: var(--font-head); font-weight: 700; color: var(--emerald); font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.5; }

/* -------- CATEGORY SHOWCASE CARDS (home) -------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.cat-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.cat-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.4); }
.cat-card:active { transform: scale(0.98); }
.cat-card .card-img {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--surface);
  border-radius: 0 0 55% 55% / 0 0 14% 14%;
}
.cat-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card:hover .card-img img { transform: scale(1.1) rotate(0.5deg); }
.cat-card .card-kicker {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--white); background: rgba(10,15,13,0.35); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.cat-card .overlay {
  position: absolute; inset: auto 0 0 0; padding: 1.3rem 1.1rem 1rem;
  background: linear-gradient(0deg, rgba(10,15,13,0.9) 0%, rgba(10,15,13,0.35) 65%, transparent 100%);
  color: var(--white);
}
.cat-card .overlay h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1.1; }
.cat-card .overlay p { font-size: 0.78rem; opacity: 0.82; margin-top: 0.15rem; }
.cat-card .discover-pill {
  position: absolute; left: 50%; bottom: 1.1rem; z-index: 3; transform: translate(-50%, 14px);
  opacity: 0; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  background: var(--champagne); color: #1a1204; font-size: 0.72rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: var(--radius-pill); white-space: nowrap; pointer-events: none;
}
.cat-card:hover .discover-pill { opacity: 1; transform: translate(-50%, 0); }
.cat-card .card-content { padding: 1.2rem 1.3rem 1.4rem; }
.cat-card .card-kicker-sm { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--champagne-dk); font-weight: 700; }
.cat-card .card-content h4 { font-family: var(--font-head); font-weight: 700; color: var(--emerald); font-size: 1.15rem; margin-top: 0.2rem; }
.cat-card .card-content p { color: var(--text-mid); font-size: 0.85rem; margin: 0.25rem 0 1rem; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.card-actions button {
  background: var(--emerald); color: var(--champagne-lt); border: none; border-radius: var(--radius-pill);
  padding: 0.55rem 1rem; font-size: 0.78rem; font-weight: 600; transition: background 0.2s, transform 0.2s;
}
.card-actions button:hover { background: var(--emerald-light); transform: translateY(-1px); }
.card-actions button:active { transform: translateY(0) scale(0.96); }
.link-btn { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 700; color: var(--champagne-dk); white-space: nowrap; transition: gap 0.2s; }
.link-btn:hover { gap: 0.5rem; }

/* -------- TOOLBAR (search / filter / sort) -------- */
.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem;
  background: var(--white); border-radius: var(--radius-md); padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.8rem;
}
.toolbar-search {
  display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 200px;
  border: 1px solid var(--border-soft); border-radius: var(--radius-pill); padding: 0.55rem 1rem;
}
.toolbar-search input { border: none; outline: none; flex: 1; font-family: inherit; font-size: 0.88rem; }
.toolbar-search svg { opacity: 0.55; flex-shrink: 0; }
.chip-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--border-soft); background: var(--surface); color: var(--text-mid);
  padding: 0.42rem 0.95rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 500;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--emerald); color: var(--emerald); }
.chip.active { background: var(--emerald); color: var(--champagne-lt); border-color: var(--emerald); }
.toolbar-sort {
  border: 1px solid var(--border-soft); border-radius: var(--radius-pill); padding: 0.55rem 1rem;
  font-family: inherit; font-size: 0.82rem; color: var(--text-mid); background: var(--white);
}
.result-count { font-size: 0.82rem; color: var(--text-light); margin: -0.8rem 0 1.2rem; }

/* -------- PRODUCT GRID / CARD -------- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.4rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex; flex-direction: column; position: relative; transform-style: preserve-3d; will-change: transform;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--champagne-dk), var(--champagne), var(--emerald-light));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.35); }
.product-card:hover::before { opacity: 1; }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface); cursor: pointer; }
.product-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), opacity 0.4s;
}
.product-card:hover .product-media img { transform: scale(1.09); }
.product-badge {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  background: var(--champagne); color: #1a1204; font-size: 0.65rem; font-weight: 700;
  padding: 0.28rem 0.65rem; border-radius: var(--radius-pill); letter-spacing: 0.04em; text-transform: uppercase;
}
.wishlist-btn {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-light); box-shadow: var(--shadow-sm); transition: all 0.2s var(--ease);
}
.wishlist-btn:hover { transform: scale(1.12); }
.wishlist-btn.active { color: var(--blush); }
.quickview-btn {
  position: absolute; left: 0; right: 0; bottom: -44px; z-index: 2;
  margin: 0 0.7rem; padding: 0.5rem; border: none; border-radius: var(--radius-pill);
  background: rgba(13,74,58,0.92); color: var(--champagne-lt); font-size: 0.75rem; font-weight: 600;
  transition: bottom 0.28s var(--ease);
}
.product-card:hover .quickview-btn { bottom: 0.7rem; }
.product-info { padding: 0.95rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-info h4 { font-family: var(--font-head); font-size: 1.08rem; color: var(--emerald); font-weight: 600; }
.product-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; color: var(--champagne-dk); }
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.2rem; gap: 0.5rem; }
.price { color: var(--text-dark); font-weight: 700; font-size: 1.02rem; }
.price .strike { color: var(--text-light); font-weight: 400; text-decoration: line-through; font-size: 0.82rem; margin-right: 0.35rem; }
.add-btn {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); color: var(--champagne-lt); border: none; border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem; font-size: 0.76rem; font-weight: 700; transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(13,74,58,0.2);
}
.add-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(13,74,58,0.3); }
.no-results { text-align: center; padding: 3rem 1rem; color: rgba(250,246,239,0.72); }

/* -------- SKELETON LOADING -------- */
.skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--ivory-dark) 37%, var(--surface) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* -------- DRAWERS (cart / wishlist) -------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(7,28,22,0.5); z-index: 900;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(94vw, 400px); z-index: 901;
  background: var(--ivory); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--border-soft); background: var(--white);
}
.drawer-header h3 { font-family: var(--font-head); color: var(--emerald); font-size: 1.3rem; }
.drawer-close { background: none; border: none; font-size: 1.3rem; color: var(--text-light); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.drawer-footer { padding: 1.2rem 1.4rem; border-top: 1px solid var(--border-soft); background: var(--white); display: grid; gap: 0.7rem; }
.drawer-empty { text-align: center; color: var(--text-light); padding: 2.5rem 1rem; font-size: 0.9rem; }
.line-item { display: flex; gap: 0.8rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border-soft); }
.line-item img { width: 62px; height: 62px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.line-item .li-info { flex: 1; min-width: 0; }
.line-item h5 { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.line-item .li-price { font-size: 0.82rem; color: var(--emerald); font-weight: 700; margin-top: 0.15rem; }
.li-actions { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.4rem; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--border-soft); border-radius: var(--radius-pill); overflow: hidden; }
.qty-stepper button { background: var(--surface); border: none; width: 24px; height: 24px; font-size: 0.85rem; }
.qty-stepper span { padding: 0 0.5rem; font-size: 0.82rem; min-width: 20px; text-align: center; }
.li-remove { background: none; border: none; color: var(--blush); font-size: 0.76rem; font-weight: 600; }
.li-total { padding: 0.8rem 0 0.3rem; display: flex; justify-content: space-between; font-weight: 700; color: var(--emerald); }

/* -------- QUICK VIEW MODAL -------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 950; background: rgba(7,28,22,0.6);
  display: flex; align-items: center; justify-content: center; padding: 1.2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; max-width: 780px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; max-height: 88vh;
  transform: scale(0.94) translateY(10px); transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal-card { transform: scale(1) translateY(0); }
.modal-media { background: var(--surface); position: relative; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.modal-body { padding: 1.8rem; display: flex; flex-direction: column; overflow-y: auto; }
.modal-close { position: absolute; top: 0.8rem; right: 0.8rem; background: rgba(255,255,255,0.9); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem; }
.modal-body h3 { font-family: var(--font-head); font-size: 1.7rem; color: var(--emerald); margin-bottom: 0.4rem; }
.modal-body .price { font-size: 1.35rem; margin-bottom: 0.9rem; }
.modal-body .desc { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.modal-actions { display: flex; gap: 0.7rem; margin-top: auto; flex-wrap: wrap; }

/* -------- TOAST -------- */
.toast-stack { position: fixed; top: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 1000; display: flex; flex-direction: column; gap: 0.6rem; }
.toast {
  background: var(--emerald); color: var(--champagne-lt); padding: 0.75rem 1.3rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(-14px); transition: all 0.3s var(--ease);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* -------- ORDER FORM (premium) -------- */
.order-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.order-card {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden; border: 1px solid var(--border-soft);
}
.order-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--champagne-dk), var(--champagne), var(--emerald-light));
}
.order-card h2 { font-family: var(--font-head); font-weight: 800; color: var(--emerald); font-size: 1.9rem; margin-bottom: 0.4rem; }
.order-card > p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.order-card label {
  display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; color: var(--emerald);
  text-transform: uppercase; letter-spacing: 0.08em; margin: 1rem 0 0.4rem;
}
.order-card input, .order-card textarea {
  width: 100%; border: none; border-bottom: 1.5px solid var(--border-soft); border-radius: 4px 4px 0 0; padding: 0.75rem 0.6rem;
  font-family: inherit; font-size: 0.94rem; color: var(--text-dark); background: var(--surface);
  transition: border-color 0.25s, background 0.25s;
}
.order-card textarea { resize: none; min-height: 90px; }
.order-card textarea[readonly] { background: var(--ivory-dark); color: var(--text-mid); cursor: default; }
.order-card input:focus, .order-card textarea:focus {
  outline: none; border-bottom-color: var(--champagne-dk); background: rgba(201,168,76,0.06);
}
.order-card input::placeholder, .order-card textarea::placeholder { color: var(--text-light); }
.discount-box { background: var(--surface); border-radius: 10px; padding: 0.8rem 1rem; font-size: 0.84rem; color: var(--text-mid); margin-top: 0.7rem; transition: all 0.3s var(--ease); }
.discount-box.active { background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08)); color: var(--champagne-dk); font-weight: 700; border: 1px solid rgba(201,168,76,0.35); }
.cart-summary-line { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-weight: 400; }
.cart-summary-line img { width: 38px; height: 38px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-summary-total { margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px dashed rgba(201,168,76,0.35); font-weight: 700; }
.submit-btn {
  width: 100%; margin-top: 1.5rem; background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: var(--champagne-lt); border: none; border-radius: var(--radius-pill); padding: 1.05rem;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 10px 24px rgba(13,74,58,0.28);
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(13,74,58,0.35); }
.submit-btn:active { transform: translateY(-1px) scale(0.98); }
.form-note { font-size: 0.76rem; color: var(--text-light); margin-top: 0.9rem; text-align: center; }
.success-message { display: none; margin-top: 1rem; background: rgba(38,160,124,0.15); color: var(--emerald); padding: 0.8rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem; text-align: center; }
.success-message.show { display: block; }

.info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  border: 1px solid var(--border-soft);
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--emerald-light), var(--champagne), var(--champagne-dk));
}
.info-card h3 { position: relative; font-family: var(--font-head); font-weight: 700; color: var(--emerald); font-size: 1.4rem; margin-bottom: 1.2rem; }
.info-card ul { position: relative; list-style: none; display: grid; gap: 0.9rem; margin-bottom: 1.4rem; }
.info-card li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: var(--text-mid); line-height: 1.4; }
.info-card li::before {
  content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(13,74,58,0.08); border: 1px solid rgba(201,168,76,0.5); color: var(--champagne-dk);
  font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem;
}
.info-card .discount-box.active {
  position: relative; background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.4); color: var(--champagne-dk); border-radius: var(--radius-md);
  padding: 1rem 1.1rem; font-size: 0.85rem; font-weight: 600;
}

/* -------- FOOTER -------- */
.site-footer { text-align: center; padding: 2.4rem 1rem; color: rgba(250,246,239,0.6); font-size: 0.85rem; border-top: 1px solid rgba(250,246,239,0.08); }

/* -------- RESPONSIVE -------- */
@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .order-wrap { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media img { min-height: 200px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-search { display: none; }
  .nav-actions .icon-btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    position: fixed; inset: var(--nav-h) 0 0 0; background-color: #faf6ef; z-index: 480;
    padding: 1.5rem; display: none; flex-direction: column; gap: 0.3rem; overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; }
  .mobile-menu a { padding: 0.9rem 0.4rem; border-bottom: 1px solid var(--border-soft); font-size: 1rem; color: var(--emerald); font-weight: 500; }
  .mobile-menu .nav-search { display: flex; flex: 0 0 auto; max-width: none; margin-top: 0.8rem; }
  .mobile-menu-actions { display: flex; gap: 0.8rem; margin-top: 1rem; }
  .mobile-menu-actions button {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem; border-radius: var(--radius-pill); border: 1px solid var(--border-soft);
    background: var(--white); color: var(--emerald); font-weight: 600; font-size: 0.9rem;
  }
  .mobile-menu-actions .icon-badge { position: static; border: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .product-price-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .product-price-row .add-btn { width: 100%; text-align: center; }
  .product-info { padding: 0.8rem; }
  .card-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .card-actions button { width: 100%; white-space: normal; }
  .link-btn { text-align: center; }
  .logo { font-size: 1.4rem; gap: 0.25rem; }
  .logo span { font-size: 0.7rem; letter-spacing: 0.16em; }
  .navbar { padding-inline: 0.8rem; }
  .hero.hero-collage, .hero.hero-wordmark { padding-left: 0.8rem; padding-right: 0.8rem; }
  .order-card, .info-card { padding: 1.2rem; }
  .modal-body { padding: 1.2rem; }
}

/* -------- TOUCH DEVICES: stop hover-lift effects from getting "stuck" on tap -------- */
/* On phones/tablets there is no real mouse hover, so tapping a card can leave it
   visually lifted/shifted (looks like cards jumping forward-backward). Disable the
   transform-based hover effects on touch/coarse-pointer devices; shadow/border
   feedback still works fine without the jump. */
@media (hover: none), (pointer: coarse) {
  .info-chip:hover,
  .icon-btn:hover,
  .btn-primary:hover,
  .feature-card:hover,
  .feature-card:hover .feature-icon,
  .card-actions button:hover,
  .wishlist-btn:hover,
  .add-btn:hover,
  .submit-btn:hover,
  .cat-card:hover .card-img img {
    transform: none;
  }
}