/* ==========================================================================
   Shrifal Dry Fruits — Premium Luxury Theme (Pixel-Perfect Reference Match)
   ========================================================================== */

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

:root {
  --anar: #8E1F33;
  --anar2: #C24157;
  --ink: #1C0B0E;
  --ink2: #280E13;
  --gold: #C9A227;
  --gold2: #E4C871;
  --goldd: #9c7c1c;
  --cream: #F8F3E6;
  --paper: #FFFDF8;
  --sand: #F1E7CF;
  --sand2: #EADCBE;
  --text: #33291d;
  --muted: #7c6c53;
  --line: #E7DAC0;
  --serif: 'Marcellus', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --deva: 'Tiro Devanagari Hindi', serif;
  --topH: 135px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html.is-loading, html.is-loading body {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  padding-top: var(--topH);
  -webkit-font-smoothing: antialiased;
}

/* ---- Scroll Progress Indicator ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--anar), var(--gold), var(--gold2));
  z-index: 10000;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.8);
  transition: width 0.1s ease-out;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.2px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--anar);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 600;
}

.deva {
  font-family: var(--deva);
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: transparent;
  overflow: hidden;
}

.door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: var(--ink);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.door-l { left: 0; }
.door-r { right: 0; }

.loader-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 3;
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: radial-gradient(52% 44% at 50% 40%, rgba(142, 31, 51, 0.5), transparent 72%);
}

.loader.open .door-l { transform: translateX(-101%); }
.loader.open .door-r { transform: translateX(101%); }
.loader.open .loader-inner { opacity: 0; transform: scale(0.9); }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.banyan { width: min(340px, 74vw); height: auto; overflow: visible; }
.loader-word { text-align: center; opacity: 0; animation: bt-bloom .9s ease forwards 1s; }
.loader-word .deva { font-family: var(--deva); font-size: 20px; color: var(--gold); letter-spacing: .06em; }
.loader-word .lw { font-family: var(--serif); font-size: 34px; letter-spacing: .36em; color: #fff; margin-top: 2px; text-indent: .36em; }
.loader-word .lt { font-family: var(--sans); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold2); margin-top: 10px; }

.bt-shadow { transform-box: fill-box; transform-origin: center; transform: scaleX(0); animation: bt-shadow .6s ease forwards .5s; }
.bt-root { fill: none; stroke: #C9A227; stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: bt-draw .7s ease forwards var(--d); }
.bt-trunk-g { transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(0); animation: bt-grow .55s cubic-bezier(.3,.8,.3,1) forwards .1s; }
.bt-canopy-g { transform-box: fill-box; transform-origin: 50% 78%; opacity: 0; transform: scale(.35); animation: bt-bloom .75s cubic-bezier(.2,.8,.2,1) forwards .4s; }
.bt-sway { transform-box: fill-box; transform-origin: 50% 96%; animation: bt-sway 4.5s ease-in-out infinite 1.2s; }
.bt-fruit { transform-box: fill-box; transform-origin: center; transform: scale(0); animation: bt-pop .5s cubic-bezier(.3,1.5,.5,1) forwards var(--d); }
.bt-fall { transform-box: fill-box; transform-origin: center; opacity: 0; animation: bt-fall 1.3s ease-in forwards var(--d); }

@keyframes bt-draw { to { stroke-dashoffset: 0; } }
@keyframes bt-grow { to { transform: scaleY(1); } }
@keyframes bt-bloom { to { opacity: 1; transform: scale(1); } }
@keyframes bt-shadow { to { transform: scaleX(1); } }
@keyframes bt-pop { to { transform: scale(1); } }
@keyframes bt-sway { 0%, 100% { transform: rotate(-1.3deg); } 50% { transform: rotate(1.3deg); } }
@keyframes bt-fall { 0% { opacity: 0; transform: translateY(-2px) scale(.4); } 25% { opacity: 1; transform: translateY(2px) scale(1); } 100% { opacity: 0; transform: translateY(52px) scale(.9); } }

@media (prefers-reduced-motion: reduce) {
  .bt-root, .bt-trunk-g, .bt-canopy-g, .bt-fruit, .bt-fall, .bt-shadow, .loader-word { animation-duration: .01s; animation-delay: 0s; }
  .bt-sway { animation: none; }
}

/* ---- Header & Floating Menu Bar ---- */
.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 12px 0 0;
  transition: padding 0.25s ease;
  background: transparent;
}

.site-top.stuck {
  padding-top: 8px;
}

.site-top.stuck .util {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.util {
  margin-bottom: 8px;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.util-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.util-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.34);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 10px 26px -18px rgba(78, 18, 29, 0.5);
}

.util-lab {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 0 4px;
}

.uchip {
  font-size: 12.5px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  border: 1px solid rgba(201, 162, 39, 0.3);
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.uchip:hover {
  background: var(--anar);
  color: #fff;
  border-color: var(--anar);
}

.pin-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.34);
  border-radius: 999px;
  padding: 5px 8px 5px 16px;
  box-shadow: 0 10px 26px -18px rgba(78, 18, 29, 0.5);
}

.pin-lab {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.pin-pill input {
  width: 95px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 12.5px;
  background: #fff;
  color: var(--ink);
}

.pin-pill input:focus {
  outline: none;
  border-color: var(--gold);
}

.pin-pill button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #3b2405;
  font-size: 14px;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  border: none;
}

.pin-pill button:hover {
  background: var(--goldd);
  color: #fff;
}

/* Main Navbar Pill */
.navpill {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 248, 238, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 162, 39, 0.38);
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: 0 18px 44px -26px rgba(78, 18, 29, 0.55);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand .wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.28em;
  color: var(--anar);
  line-height: 1;
}

.brand .sub {
  font-size: 8px;
  letter-spacing: 0.42em;
  color: var(--goldd);
  text-transform: uppercase;
  margin-top: 1px;
}

.brand .deva {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 1px;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 12px;
}

.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--anar);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.cv {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  opacity: 0.7;
}

/* ---- Shop Mega Dropdown Menu ---- */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.shop-mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 630px;
  background: #FAF5EE;
  border: 1px solid rgba(210, 180, 135, 0.45);
  border-radius: 24px;
  padding: 26px 34px 20px;
  box-shadow: 0 24px 60px -12px rgba(60, 20, 25, 0.28), 0 4px 20px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

/* Invisible bridge so mouse hover doesn't break when moving cursor downwards */
.shop-mega-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-item-dropdown:hover .shop-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.smd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 52px;
  row-gap: 20px;
  text-align: left;
}

.smd-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.smd-item {
  display: block;
  text-decoration: none !important;
  transition: transform 0.2s ease;
}

.smd-item::after {
  display: none !important;
}

.smd-title {
  display: block;
  font-family: var(--sans, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: #4E141D;
  line-height: 1.25;
  transition: color 0.2s ease, transform 0.2s ease;
}

.smd-note {
  display: block;
  font-family: var(--sans, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B5843C;
  margin-top: 3px;
  transition: color 0.2s ease;
}

.smd-item:hover .smd-title {
  color: var(--anar, #8C1C29);
  transform: translateX(3px);
}

.smd-item:hover .smd-note {
  color: #926425;
}

.smd-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 165, 110, 0.35);
  text-align: center;
}

.smd-view-all {
  font-family: var(--sans, sans-serif);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4E141D;
  text-decoration: none !important;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  display: inline-block;
}

.smd-view-all::after {
  display: none !important;
}

.smd-view-all:hover {
  color: #B5843C;
}

@media (max-width: 991px) {
  .shop-mega-dropdown {
    display: none !important;
  }
}

.nav-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  background: transparent;
}

.icon-btn:hover {
  background: var(--sand);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--anar);
  fill: none;
  stroke-width: 1.6;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--gold);
  color: #241a02;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-count.on {
  transform: scale(1);
}

.menu-btn { display: none; }

/* ---- Hero Section ---- */
.hero2 {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--topH));
  padding: calc(var(--topH) + 34px) 0 96px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, #1C0B0E 0%, #290E13 50%, #150709 100%);
}

.hero2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 72% center;
  z-index: -2;
  opacity: 0.15;
}

.hero2-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 90% at 82% 14%, rgba(193, 64, 90, 0.35), transparent 60%),
    linear-gradient(100deg, rgba(20,9,8,0.96) 0%, rgba(24,11,9,0.88) 40%, rgba(28,13,10,0.5) 70%, transparent 100%);
}

.hero2-in {
  color: #fff;
}

.hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 8px;
}

.hero2-eyebrow i {
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero2 h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.08;
  color: #fff;
  margin: 14px 0 0;
  letter-spacing: -0.4px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.hero2 p.lede {
  max-width: 31em;
  color: #eadfcd;
  font-size: 17px;
  margin: 20px 0 32px;
  line-height: 1.6;
}

.hero2-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.24s ease;
}

.btn2-gold {
  background: var(--gold);
  color: #3a2404;
  border: 1px solid var(--gold);
}

.btn2-gold:hover {
  background: #e0b83c;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(201, 162, 39, 0.6);
}

.btn2-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.btn2-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.hero2-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d8cdb8;
}

.hero2-trust b { color: var(--gold2); font-weight: 600; }
.hero2-trust i { color: var(--gold); opacity: 0.7; font-style: normal; }

.hero2-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: var(--gold2);
  animation: scrollBob 1.8s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ---- Hero Particles ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  background: radial-gradient(circle, var(--gold2) 0%, rgba(201,162,39,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
  opacity: 0.6;
}

@keyframes particleFloat {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.7; }
  100% { transform: translateY(-140px) scale(1.4); opacity: 0; }
}

.hero-thali-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thali-plate {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #5b3e18 0%, #38240b 55%, #1f1204 88%, #0f0801 100%);
  border: 8px solid #9c7832;
  box-shadow: 
    inset 0 0 40px rgba(0, 0, 0, 0.8),
    0 20px 60px -10px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(201, 162, 39, 0.18);
  display: grid;
  place-items: center;
  padding: 10%;
  animation: thaliFloat 6s ease-in-out infinite;
}

@keyframes thaliFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.thali-rim {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(228, 200, 113, 0.4);
  pointer-events: none;
}

.thali-nuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
}

.thali-item-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thali-item-wrap .thali-tooltip {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(28, 11, 14, 0.94);
  color: var(--gold2);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.thali-item-wrap:hover .thali-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.thali-item {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.6));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
  cursor: pointer;
}

.thali-item-wrap:hover .thali-item {
  transform: scale(1.22) rotate(4deg);
  filter: drop-shadow(0 14px 22px rgba(201, 162, 39, 0.5));
}

/* ---- Marquee ---- */
.origins {
  background: var(--ink);
  color: #d7cfbb;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding: 4px 0;
}

.origins .track {
  display: flex;
  white-space: nowrap;
  animation: marq 34s linear infinite;
  width: max-content;
}

.origins span {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 0;
}

.origins span b { color: var(--gold2); font-weight: 600; }
.origins .dot { margin: 0 24px; color: var(--gold); opacity: 0.6; }

@keyframes marq {
  to { transform: translateX(-50%); }
}

/* ---- Craftsmanship Trust Bar ---- */
.trust-bar {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink2) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.trust-card {
  background: rgba(255, 253, 248, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.trust-card:hover {
  background: rgba(255, 253, 248, 0.09);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -12px rgba(201, 162, 39, 0.3);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, rgba(142, 31, 51, 0.2) 100%);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 22px;
  color: var(--gold2);
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
}

.trust-card h4 {
  color: #fff;
  font-size: 16px;
  font-family: var(--serif);
  margin-bottom: 4px;
}

.trust-card p {
  color: #c9bea7;
  font-size: 12.5px;
  margin: 0;
  line-height: 1.4;
}

/* ---- Sections ---- */
section {
  padding: 80px 0;
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.sec-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--anar);
  margin: 8px 0 0;
  font-weight: 400;
}

.sec-head p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 16.5px;
  line-height: 1.5;
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.rule i { width: 44px; height: 1px; background: var(--gold); }
.rule b { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ==========================================================================
   Category Grid & Cards — 100% Screenshot Design Match
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.cat-card {
  background: #FFFDF8;
  border: 1px solid #EADDC4;
  border-radius: 18px;
  padding: 16px 14px 18px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(78, 18, 29, 0.35);
}

.cat-card .frame {
  background: #F4ECCF;
  border-radius: 110px 110px 14px 14px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
  position: relative;
}

.cat-card .frame > img {
  max-height: 115px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}

.cat-card:hover .frame > img {
  transform: scale(1.08);
}

/* 2x2 Thumbnail Grid for Combo Packs and Gift Boxes */
.thumb-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 6px;
  align-items: center;
  justify-items: center;
}

.thumb-grid-2x2 img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}

.cat-card:hover .thumb-grid-2x2 img {
  transform: scale(1.1);
}

.cat-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--anar);
  font-weight: 400;
  margin: 0;
}

.cat-card small {
  color: #9c7c1c;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* Centered Pill Button below Grid */
.btn-view-all {
  display: inline-block;
  background: #FFFDF8;
  border: 1px solid #EADDC4;
  color: var(--anar);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 36px;
  border-radius: 999px;
  transition: all 0.22s ease;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.05);
  text-decoration: none;
}

.btn-view-all:hover {
  background: var(--anar);
  color: #FFFFFF;
  border-color: var(--anar);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(142, 31, 51, 0.4);
}

/* ---- Product Card ---- */
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  height: 100%;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(78, 18, 29, 0.45);
}

.product-card .thumb {
  background: linear-gradient(168deg, var(--cream), var(--sand));
  cursor: pointer;
  padding: 20px 20px 6px;
  position: relative;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  overflow: hidden;
}

.pmedia {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 5;
}

.pmedia.has-photo > .pimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  padding: 4%;
  transition: transform 0.3s ease;
}

.product-card:hover .pmedia.has-photo > .pimg {
  transform: scale(1.06);
}

.save-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--anar);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 16px -6px rgba(110, 30, 44, 0.6);
}

.badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 3;
}

.b-best { background: var(--gold); color: #241a02; }
.b-premium { background: var(--anar); color: var(--cream); }

.product-card .card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .origin {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--goldd);
}

.product-card .origin .hi { color: var(--anar); font-weight: 600; }

.product-card h3 {
  font-size: 18px;
  margin: 6px 0 0;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

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

.stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.stars .s { color: var(--gold); letter-spacing: 1px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.price {
  font-size: 22px;
  font-family: var(--serif);
  color: var(--anar);
  font-weight: 600;
}

.mrp {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: line-through;
}

.per {
  font-size: 11px;
  color: var(--muted);
}

.product-card .add-btn {
  margin-top: 14px;
  width: 100%;
}

/* Buttons */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-gold { background: var(--gold); color: #241a02; border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold2); color: #150e01; transform: translateY(-2px); }

.btn-anar { background: var(--anar); color: var(--cream); border: 1px solid var(--anar); }
.btn-anar:hover { background: var(--anar2); color: #fff; transform: translateY(-2px); }

.btn-outline-anar { border: 1px solid var(--line); color: var(--anar); background: var(--paper); }
.btn-outline-anar:hover { border-color: var(--gold); color: var(--goldd); background: #fff; }

/* ---- Gifting ---- */
.gifting {
  background: radial-gradient(120% 120% at 20% 0%, var(--anar2), var(--anar) 46%, var(--ink));
  color: var(--cream);
}

.gifting .sec-head h2 { color: #fff; }
.gifting .sec-head p { color: #d9d1bf; }

@keyframes goldFoilGlow {
  0%, 100% { border-color: rgba(201, 162, 39, 0.4); box-shadow: 0 0 15px rgba(201, 162, 39, 0.1); }
  50% { border-color: var(--gold2); box-shadow: 0 0 25px rgba(201, 162, 39, 0.35); }
}

.gift-card {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
  height: 100%;
  animation: goldFoilGlow 4s infinite ease-in-out;
}

.gift-card:hover {
  background: rgba(255, 253, 248, 0.12);
  transform: translateY(-6px);
}

.gift-card h3 { font-size: 24px; color: #fff; margin: 4px 0 8px; }
.gift-card p { color: #d9d1bf; font-size: 14px; margin-bottom: 16px; }

/* ---- Story Section Polish ---- */
.story {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.story-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.timeline {
  margin-top: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  position: relative;
}

.timeline .t {
  position: relative;
  padding-bottom: 22px;
}

.timeline .t:last-child {
  padding-bottom: 0;
}

.timeline .t::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--gold), 0 0 14px rgba(201, 162, 39, 0.6);
  animation: pulseGoldDot 2.4s infinite ease-in-out;
}

@keyframes pulseGoldDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 1px var(--gold), 0 0 12px rgba(201, 162, 39, 0.8); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 2px var(--gold), 0 0 20px rgba(201, 162, 39, 1); }
}

.timeline .yr {
  font-family: var(--serif);
  color: var(--anar);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2px;
}

.timeline .d {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* ---- Story Showcase Card ---- */
.story-showcase {
  position: relative;
  background: linear-gradient(165deg, #FFFDF8 0%, #F5ECDA 50%, #EAD8B5 100%);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 180px 180px 32px 32px;
  padding: 52px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 25px 60px -20px rgba(78, 18, 29, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 420px;
}

.story-showcase:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 32px 70px -22px rgba(142, 31, 51, 0.3);
}

.story-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #241a02;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px -4px rgba(201, 162, 39, 0.6);
  white-space: nowrap;
  z-index: 5;
  border: 1px solid var(--gold2);
}

.story-glow-bg {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, rgba(201, 162, 39, 0) 70%);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.story-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}

.story-img {
  max-width: 290px;
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(78, 18, 29, 0.28));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-showcase:hover .story-img {
  transform: scale(1.08) rotate(2deg);
}

.story-info-pill {
  position: relative;
  z-index: 2;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--anar);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  box-shadow: 0 6px 18px -4px rgba(78, 18, 29, 0.15);
}

.story-info-pill .dot-gold {
  color: var(--gold);
  font-size: 10px;
}

/* ---- Reviews ---- */
.rev-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rev-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--serif);
  font-size: 84px;
  color: var(--sand);
  opacity: 0.5;
  pointer-events: none;
  line-height: 1;
}

.rev-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(78, 18, 29, 0.25);
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.rev-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--anar), var(--ink));
  border: 1.5px solid var(--gold);
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 4px 12px rgba(142, 31, 51, 0.25);
}

.rev-badge {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b5e20;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 2px;
}

.rev-card .s { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.rev-card p { font-size: 15px; margin: 12px 0 16px; color: var(--text); font-style: italic; position: relative; z-index: 1; }
.rev-card .who { font-family: var(--serif); color: var(--anar); font-size: 16px; font-weight: 600; }
.rev-card .loc { font-size: 11.5px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- Back to Top Button ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #241a02;
  border: 1px solid var(--gold2);
  box-shadow: 0 10px 26px -8px rgba(78, 18, 29, 0.6);
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.on {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold2);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 32px -6px rgba(201, 162, 39, 0.8);
}

/* ---- Footer ---- */
.news { background: var(--ink); color: var(--cream); text-align: center; }
.news h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); }
.news p { color: #d3cbb8; margin: 12px auto 24px; max-width: 36em; }

.contact-row {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(228, 200, 113, 0.25);
  color: #e7dcc7;
  font-size: 14px;
  line-height: 1.8;
}

.contact-row a { color: var(--gold2); }

footer {
  background: #18090B;
  color: #D6CCA8;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
}

footer h4 {
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

footer a, footer li {
  color: #D6CCA8;
  font-size: 14.5px;
  padding: 5px 0;
  list-style: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--gold2);
}

footer ul {
  padding: 0;
  margin: 0;
}

.foot-desc {
  color: #D6CCA8 !important;
  font-size: 14px;
  line-height: 1.6;
}

.foot-badge {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
  font-weight: 500;
}

.foot-address {
  color: #D6CCA8 !important;
  font-size: 13.5px;
}

.foot-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #B5A98D;
}

/* ---- Drawer & Modal Overlays ---- */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 12, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 90;
  backdrop-filter: blur(3px);
}

.scrim.on { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(430px, 100%);
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.1, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -30px rgba(0,0,0,0.5);
}

.drawer.on { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 22px; color: var(--anar); }

.close-btn { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; color: var(--muted); }
.close-btn:hover { background: var(--sand); }

.drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line .th { width: 68px; height: 68px; flex: none; background: linear-gradient(165deg, var(--paper), var(--sand)); border-radius: 12px; border: 1px solid rgba(201, 162, 39, 0.25); overflow: hidden; }
.cart-line .nm { font-family: var(--serif); font-size: 15.5px; color: var(--text); font-weight: 500; }
.cart-line .meta { font-size: 12px; color: var(--muted); margin: 2px 0 6px; }

.qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fff; }
.qty-ctrl button { width: 28px; height: 28px; color: var(--anar); font-size: 15px; font-weight: 600; }
.qty-ctrl span { min-width: 26px; text-align: center; font-size: 13.5px; }

.cart-line .lp { margin-left: auto; text-align: right; }
.cart-line .lp .p { font-family: var(--serif); color: var(--anar); font-size: 16.5px; font-weight: 600; }

.drawer-foot { border-top: 1px solid var(--line); padding: 18px 24px; background: var(--paper); }
.trow { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; color: var(--muted); }
.trow.tot { font-size: 18px; color: var(--text); font-family: var(--serif); border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; }
.trow.tot b { color: var(--anar); }

/* Modal */
.modal-custom {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-custom.on { opacity: 1; visibility: visible; }
.modal-card { background: var(--cream); border-radius: 20px; max-width: 880px; width: 100%; max-height: 92vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; transform: translateY(14px); transition: transform 0.3s; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5); }
.modal-custom.on .modal-card { transform: none; }
.modal-art { background: linear-gradient(168deg, var(--paper), var(--sand)); padding: 30px; display: grid; place-items: center; position: relative; }
.modal-info { padding: 34px 30px; position: relative; }

.weights-opt { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.wt-btn { padding: 8px 14px; border: 1px solid var(--line); border-radius: 24px; font-size: 13px; background: var(--paper); transition: all 0.16s; }
.wt-btn:hover { border-color: var(--gold); }
.wt-btn.on { background: var(--anar); color: var(--cream); border-color: var(--anar); }

/* Search Panel */
.search-panel { position: fixed; top: 0; left: 0; right: 0; background: var(--cream); z-index: 95; transform: translateY(-100%); transition: transform 0.3s ease; box-shadow: 0 20px 50px -30px rgba(0,0,0,0.4); padding: 24px 0; }
.search-panel.on { transform: none; }
.search-panel input { width: 100%; font-size: 20px; font-family: var(--serif); border: 0; border-bottom: 2px solid var(--line); background: none; padding: 10px 4px; color: var(--text); }
.search-panel input:focus { outline: none; border-color: var(--gold); }
.search-res { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; max-height: 50vh; overflow-y: auto; }
.sr-item { display: flex; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); transition: border-color 0.2s; }
.sr-item:hover { border-color: var(--gold); }

/* Toasts */
.toasts { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast-msg { background: var(--ink); color: var(--cream); padding: 12px 22px; border-radius: 30px; font-size: 14px; border: 1px solid rgba(201, 162, 39, 0.4); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 10px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Mobile responsive menu */
.mmenu { position: fixed; inset: 0; background: var(--cream); z-index: 110; transform: translateX(100%); transition: transform 0.3s ease; padding: 26px; display: flex; flex-direction: column; gap: 8px; }
.mmenu.on { transform: none; }
.mmenu a { font-family: var(--serif); font-size: 26px; color: var(--anar); padding: 12px 0; border-bottom: 1px solid var(--line); }

@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991.98px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  .hero2 h1 { font-size: 38px; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-art { display: none; }
  section { padding: 60px 0; }
  .util-in { flex-direction: column; gap: 8px; }
}

@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 575.98px) {
  :root { --topH: 90px; }
  .util { display: none; }
  .navpill { padding: 8px 16px; border-radius: 20px; }
  .brand .wordmark { font-size: 18px; }
  .hero2 { padding-top: calc(var(--topH) + 20px); }
  .hero2 h1 { font-size: 28px; }
  .hero2 p.lede { font-size: 15px; }
  .btn2 { width: 100%; justify-content: center; }
}
