/* =============================================================
   Sri Swaadha Organics — premium static stylesheet
   Brand palette derived from the logo presentation.
   ============================================================= */

:root {
  /* Brand colours */
  --green-deep:   #1f3a2d;
  --green:        #2d5a3d;
  --green-soft:   #5a7a4f;
  --green-pale:   #c7d6bf;

  --rust:         #a0432b;
  --rust-deep:    #7d3520;
  --rust-soft:    #d59478;

  --cream:        #f7eed8;
  --cream-warm:   #f1e3c4;
  --ivory:        #fdf9ed;

  --brown-deep:   #3a2a1d;
  --brown:        #5b4128;
  --brown-soft:   #8b6b43;

  --gold:         #d4a744;
  --gold-pale:    #ecd592;

  /* System */
  --ink:          #2a2118;
  --ink-soft:     #5b4f43;
  --line:         rgba(58, 42, 29, 0.14);

  /* Type */
  --serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:   "Poppins", "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============================== Reset ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; letter-spacing: .005em; }

/* ============================== Type primitives ============================== */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rust);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--gold-pale); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--green-deep);
  margin: 0 0 24px;
}
.display em { color: var(--rust); }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  margin: 0 0 20px;
}
.h2 em { color: var(--rust); }
.h2--light { color: var(--ivory); }
.h2--light em { color: var(--gold-pale); }

.body {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 56ch;
}
.body--light { color: rgba(247, 238, 216, 0.78); }

.lede {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 52ch;
  line-height: 1.65;
}

/* ============================== Layout ============================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}
.section__head .body { margin-left: auto; margin-right: auto; }

/* ============================== Buttons ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-deep);
  color: var(--ivory);
  box-shadow: 0 14px 30px -16px rgba(31, 58, 45, .55);
}
.btn--primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(160, 67, 43, .55);
}
.btn--ghost {
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
}
.btn--ghost:hover {
  background: var(--green-deep);
  color: var(--ivory);
}
.btn--text {
  padding: 14px 4px;
  color: var(--green-deep);
  font-weight: 500;
}
.btn--text span { transition: transform .3s var(--ease); display: inline-block; }
.btn--text:hover span { transform: translateX(6px); }
.btn--text:hover { color: var(--rust); }
.btn--block { width: 100%; justify-content: center; padding: 16px 26px; }
.btn--on-dark {
  background: var(--cream);
  color: var(--green-deep);
}
.btn--on-dark:hover {
  background: var(--rust);
  color: var(--ivory);
}

/* ============================== Brand mark ============================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.brand__sub {
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================== Nav ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.is-stuck {
  background: rgba(253, 249, 237, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--rust); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 10px 22px; font-size: 13px; }

/* ============================== Cart button ============================== */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--green-deep);
  flex-shrink: 0;
}
.cart-btn svg { width: 22px; height: 22px; }
.cart-btn:hover { color: var(--rust); }
.cart-btn__count {
  position: absolute;
  top: 0; right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--rust);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 1;
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  width: 22px; height: 1.5px;
  background: var(--green-deep);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ============================== Hero ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212, 167, 68, .25), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(45, 90, 61, .12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 60%, var(--cream-warm) 100%);
  z-index: -2;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background: url("assets/pattern.svg") repeat;
  opacity: .35;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__copy { position: relative; z-index: 2; }
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__chips li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--rust);
  border-radius: 50%;
}

/* Real product photo in the hero */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  height: 620px;
}
.hero__bottle {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(58, 42, 29, .25));
  transition: transform .5s var(--ease);
  border-radius: var(--radius-lg);
}
.hero__bottle--wide {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.bottle {
  position: relative;
  width: 230px;
  height: 460px;
  filter: drop-shadow(0 40px 60px rgba(58, 42, 29, .25));
}
.bottle__cap {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 38px;
  background: linear-gradient(180deg, #c89548 0%, #8a5a25 100%);
  border-radius: 6px 6px 4px 4px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.2), inset 0 2px 0 rgba(255,255,255,.2);
}
.bottle__cap::after {
  content: '';
  position: absolute;
  inset: 6px 4px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,.15) 0 2px,
    transparent 2px 4px
  );
  border-radius: 3px;
}
.bottle__neck {
  position: absolute;
  top: 34px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 30px;
  background: linear-gradient(180deg, rgba(212,167,68,.35), rgba(212,167,68,.55));
  border-radius: 4px 4px 0 0;
}
.bottle__body {
  position: absolute;
  top: 60px; left: 0;
  width: 100%; height: 400px;
  background: linear-gradient(170deg, rgba(255, 235, 180, .55) 0%, rgba(212, 167, 68, .65) 60%, rgba(160, 110, 40, .65) 100%);
  border-radius: 26px 26px 18px 18px;
  border: 1px solid rgba(255,255,255,.4);
  overflow: hidden;
}
.bottle__oil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 198, 90, .9) 0%, rgba(212, 144, 28, .95) 100%);
  clip-path: polygon(0 8%, 100% 8%, 100% 100%, 0 100%);
}
.bottle__shine {
  position: absolute;
  top: 10%; left: 14%;
  width: 14px; height: 70%;
  background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,0));
  filter: blur(2px);
  border-radius: 50%;
}
.bottle__label {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 86%;
  background: var(--ivory);
  border-radius: 8px;
  padding: 22px 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 10px 24px -16px rgba(0,0,0,.3);
}
.bottle__mark {
  width: 30px; height: 38px;
  color: var(--rust);
  margin-bottom: 2px;
}
.bottle__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.bottle__divider {
  width: 60%;
  height: 1px;
  background: var(--rust);
  position: relative;
  margin: 4px 0;
}
.bottle__divider::before, .bottle__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rust);
  transform: translateY(-50%);
}
.bottle__divider::before { left: 0; }
.bottle__divider::after  { right: 0; }
.bottle__org {
  font-size: 9.5px;
  color: var(--rust);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.bottle__variant {
  font-size: 9.5px;
  color: var(--brown);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
}
.bottle__vol {
  font-size: 8.5px;
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__art-badge {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--ivory);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(31, 58, 45, .6);
  transform: rotate(-12deg);
  border: 6px solid var(--cream);
  animation: floatBadge 6s ease-in-out infinite;
}
.hero__art-badge-num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--gold-pale);
}
.hero__art-badge-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
}
@keyframes floatBadge {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-10deg) translateY(-8px); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1px solid var(--ink-soft);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: var(--ink-soft);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================== Marquee ============================== */
.marquee {
  background: var(--green-deep);
  color: var(--gold-pale);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(247,238,216,.08);
  border-bottom: 1px solid rgba(247,238,216,.08);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  animation: marquee 38s linear infinite;
}
.marquee__track span:nth-child(even) { color: var(--rust-soft); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================== Split layout ============================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split--reverse .split__copy { order: 1; }
.split--reverse .split__media { order: 2; }

/* ============================== Tradition section ============================== */
.tradition {
  background: var(--ivory);
}
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 60px -40px rgba(58, 42, 29, .4);
}
.frame--tall { aspect-ratio: 4 / 5; }
.frame--squareish { aspect-ratio: 5 / 4; }
.frame--small { aspect-ratio: 4 / 3; max-width: 60%; }
.frame--photo { aspect-ratio: 1 / 1; }
.frame--bottle {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 167, 68, .18), transparent 60%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}
.frame__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.frame__photo--contain {
  object-fit: contain;
  padding: 28px 0;
}
.frame--offset {
  margin-top: -80px;
  margin-left: auto;
  border: 6px solid var(--cream);
  position: relative;
  z-index: 2;
}
.frame__art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.frame__art--ghani {
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 220, 150, .4), transparent 60%),
    linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 100%);
}
.frame__art--ghani::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 70%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 12px solid rgba(212, 167, 68, .35);
  border-radius: 50%;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,.4),
    0 0 0 1px rgba(212, 167, 68, .2);
}
.frame__art--ghani::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 8%; aspect-ratio: 1 / 4;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, var(--brown-deep), #1a0f08);
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0,0,0,.5);
}
.frame__art--apartment {
  background:
    linear-gradient(180deg, rgba(31, 58, 45, .15), rgba(31, 58, 45, .55)),
    repeating-linear-gradient(
      180deg,
      var(--cream-warm) 0 60px,
      var(--rust-soft) 60px 64px,
      var(--cream-warm) 64px 124px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 80px,
      rgba(0,0,0,.1) 80px 84px
    );
}
.frame__art--bottles {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,220,150,.4), transparent 60%),
    linear-gradient(160deg, var(--gold) 0%, var(--rust) 100%);
}
.frame__art--bottles::before {
  content: '';
  position: absolute;
  inset: 20% 12%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(244, 198, 90, .8) 0 12%, transparent 14%),
    radial-gradient(ellipse at 50% 50%, rgba(244, 198, 90, .8) 0 12%, transparent 14%),
    radial-gradient(ellipse at 75% 50%, rgba(244, 198, 90, .8) 0 12%, transparent 14%);
}
.frame__caption {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(247, 238, 216, .92);
  color: var(--brown);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.pillars {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
.pillars li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
}
.pillars__num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--rust);
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.pillars h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.005em;
}
.pillars p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================== Process section ============================== */
.process {
  background: var(--green-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("assets/pattern.svg");
  opacity: .08;
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: rgba(247, 238, 216, .04);
  border: 1px solid rgba(247, 238, 216, .12);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  background: rgba(247, 238, 216, .08);
  border-color: rgba(212, 167, 68, .35);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-pale);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.step__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-pale);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold-pale);
}
.step__icon svg { width: 28px; height: 28px; }
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ivory);
}
.step p {
  margin: 0;
  font-size: 14px;
  color: rgba(247, 238, 216, .72);
  line-height: 1.65;
}

/* ============================== Oils ============================== */
.oils { background: var(--ivory); }
.grid--oils {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.oil-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  border: 1px solid rgba(58, 42, 29, .06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.oil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(58, 42, 29, .35);
}
.oil-card__art {
  position: relative;
  min-height: 240px;
  background: var(--gold);
}
.oil-card__art::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 86px; height: 78%;
  background: linear-gradient(180deg, rgba(244, 198, 90, .85) 0%, rgba(212, 144, 28, .95) 100%);
  border-radius: 14px 14px 6px 6px;
  box-shadow: inset -6px 0 14px rgba(0,0,0,.2), 0 12px 30px -16px rgba(0,0,0,.4);
}
.oil-card__art::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 78%;
  transform: translateX(-50%);
  width: 32px; height: 18px;
  background: var(--brown-deep);
  border-radius: 3px;
}
.oil-card__art--groundnut { background: linear-gradient(160deg, #e8c871 0%, #c08a30 100%); }

/* Real bottle photo inside an oil card */
.oil-card__art--photo {
  background: linear-gradient(160deg, #f1e3c4 0%, #e8d4a8 100%);
}
.oil-card__art--photo::before,
.oil-card__art--photo::after { display: none; }
.oil-card__art--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.oil-card__art--sesame    { background: linear-gradient(160deg, #d59478 0%, #a0432b 100%); }
.oil-card__art--mustard   { background: linear-gradient(160deg, #ecd592 0%, #d4a744 100%); }
.oil-card__art--coconut   { background: linear-gradient(160deg, #f1e3c4 0%, #c7d6bf 100%); }

.oil-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--green-deep);
  color: var(--gold-pale);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.oil-card__body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.oil-card__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--green-deep);
  letter-spacing: -0.005em;
}
.oil-card__body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.oil-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.oil-card__price { color: var(--rust); font-weight: 600; }

/* ============================== Why ============================== */
.why {
  background: var(--cream);
  position: relative;
}
.grid--why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(58, 42, 29, .05);
  transition: transform .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); }
.why-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--green-deep);
}
.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================== Apartments ============================== */
.apartments {
  background: linear-gradient(135deg, var(--green-deep) 0%, #15281f 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.apartments::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("assets/pattern.svg");
  opacity: .07;
  pointer-events: none;
}
.ap-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 36px;
}
.ap-feature {
  border-left: 1px solid rgba(212, 167, 68, .3);
  padding: 4px 0 4px 18px;
}
.ap-feature__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--gold-pale);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.ap-feature p {
  margin: 0;
  font-size: 13px;
  color: rgba(247,238,216,.74);
  line-height: 1.5;
}

/* ============================== Testimonials ============================== */
.testimonials { background: var(--ivory); }
.grid--testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 32px 32px;
  margin: 0;
  border: 1px solid rgba(58, 42, 29, .05);
}
.testi__quote {
  position: absolute;
  top: 14px; left: 26px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--rust);
  opacity: .35;
}
.testi blockquote {
  margin: 0 0 22px;
}
.testi blockquote p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--brown-deep);
  margin: 0;
}
.testi figcaption {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.testi figcaption strong {
  color: var(--green-deep);
  font-weight: 600;
  font-size: 14px;
}
.testi figcaption span {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============================== Contact ============================== */
.contact {
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.contact__list {
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}
.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
}
.contact__list a, .contact__list span:not(.contact__label) {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-deep);
  font-weight: 500;
}
.contact__list a:hover { color: var(--rust); }

/* Form */
.form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(58, 42, 29, .06);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 6px; }
.field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(160, 67, 43, .12);
}
.field textarea { resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__success {
  margin: 4px 0 0;
  color: var(--green);
  font-size: 14px;
}

/* ============================== Footer ============================== */
.footer {
  background: var(--green-deep);
  color: rgba(247,238,216,.78);
  padding: 80px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("assets/pattern.svg");
  opacity: .05;
  pointer-events: none;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  position: relative;
}
.brand--footer .brand__name { color: var(--ivory); }
.brand--footer .brand__sub { color: var(--gold-pale); }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-pale);
  margin: 22px 0 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__cols h5 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 600;
}
.footer__cols a, .footer__cols span {
  display: block;
  padding: 5px 0;
  color: rgba(247,238,216,.7);
  font-size: 14px;
  transition: color .25s var(--ease);
}
.footer__cols a:hover { color: var(--gold-pale); }

.footer__bottom {
  border-top: 1px solid rgba(247,238,216,.12);
  margin-top: 56px;
  padding-top: 22px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(247,238,216,.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============================== Reveal animation ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================== Responsive ============================== */
@media (max-width: 980px) {
  .hero { padding-top: 120px; min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__art { height: 480px; order: -1; }
  .bottle { transform: scale(.92); }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }

  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__copy { order: unset; }
  .split--reverse .split__media { order: unset; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--oils { grid-template-columns: 1fr; }
  .oil-card { grid-template-columns: 160px 1fr; }
  .grid--why { grid-template-columns: repeat(2, 1fr); }
  .grid--testi { grid-template-columns: 1fr; }
  .ap-features { grid-template-columns: 1fr; }

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

@media (max-width: 640px) {
  .display { font-size: 38px; }
  .h2 { font-size: 30px; }
  .hero__art-badge { width: 100px; height: 100px; right: 0; }
  .hero__art-badge-num { font-size: 22px; }
  .marquee__track { font-size: 16px; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .oil-card { grid-template-columns: 1fr; }
  .oil-card__art { min-height: 200px; }
  .grid--why { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .footer__cols { grid-template-columns: 1fr; gap: 22px; }
  .frame--offset { margin-top: 16px; max-width: 100%; }

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

/* ============================== Products section ============================== */
.products { background: var(--ivory); }

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

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(58, 42, 29, .06);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px -28px rgba(58, 42, 29, .38);
}

.product-card__art {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-warm);
}
.product-card__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 8%;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__art img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--green-deep);
  color: var(--gold-pale);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.product-card__badge--green { background: var(--green-deep); color: var(--gold-pale); }
.product-card__badge--rust  { background: var(--rust); color: var(--ivory); }
.product-card__badge--gold  { background: var(--gold); color: var(--brown-deep); }

.product-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card__tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
  background: rgba(90, 122, 79, .1);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.product-card__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.product-card__desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}

.product-card__price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.product-card__price-from {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brown-soft);
  font-weight: 500;
}
.product-card__price-val {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--rust);
}
.product-card__price-unit {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}
.product-card__order { padding: 10px 18px; font-size: 13px; white-space: nowrap; }

/* ============================== WhatsApp button ============================== */
.btn--whatsapp {
  background: #25D366;
  color: var(--green-deep);   /* #1f3a2d on #25D366 ≈ 4.8:1 — passes WCAG AA */
  box-shadow: 0 14px 30px -16px rgba(37, 211, 102, .55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--whatsapp:hover {
  background: #0a7064;        /* darker teal — #fdf9ed on #0a7064 ≈ 6.2:1 */
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(10, 112, 100, .55);
}

/* Contact WhatsApp CTA */
.contact__wa-btn {
  margin-top: 28px;
  width: fit-content;
}

/* ============================== Order Modal ============================== */
dialog.order-modal {
  /* Reset browser dialog defaults */
  border: none;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100%;
  overflow: hidden;

  /* Our layout */
  display: none; /* overridden by [open] */
  align-items: center;
  justify-content: center;
}
dialog.order-modal[open] {
  display: flex;
}
dialog.order-modal::backdrop {
  background: rgba(31, 58, 45, .72);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
}

.order-modal__panel {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: 0 80px 120px -40px rgba(31, 58, 45, .55);
  display: grid;
  grid-template-columns: 200px 1fr;
  animation: panelIn .35s var(--ease) both;
}
@keyframes panelIn {
  from { opacity: 0; transform: scale(.95) translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.order-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(58, 42, 29, .07);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--brown);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.order-modal__close:hover { background: var(--rust); color: var(--ivory); }

.order-modal__img-wrap {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  min-height: 300px;
}
.order-modal__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 8%;
}

.order-modal__content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-modal__tagline {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.28em;
}

.order-modal__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.order-modal__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  background: transparent;
  color: var(--brown);
  font-family: var(--sans);
}
.size-pill:hover { border-color: var(--green-deep); color: var(--green-deep); }
.size-pill.is-active {
  background: var(--green-deep);
  color: var(--ivory);
  border-color: var(--green-deep);
}

.order-modal__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.order-modal__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--green-deep);
  transition: background .2s var(--ease);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--cream-warm); }
.qty-val {
  min-width: 36px;
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-deep);
  user-select: none;
}

.order-modal__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.order-modal__total-val {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--rust);
  letter-spacing: -0.01em;
}

.order-modal__note {
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ============================== Cart drawer ============================== */
dialog.cart-drawer {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100%;
  overflow: hidden;

  display: none;
  align-items: stretch;
  justify-content: flex-end;
}
dialog.cart-drawer[open] { display: flex; }
dialog.cart-drawer::backdrop {
  background: rgba(31, 58, 45, .55);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
}

.cart-drawer__panel {
  background: var(--ivory);
  width: 100%;
  max-width: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -40px 0 80px -40px rgba(31, 58, 45, .45);
  animation: drawerIn .35s var(--ease) both;
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-drawer__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0;
}
.cart-drawer__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(58, 42, 29, .07);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--brown);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cart-drawer__close:hover { background: var(--rust); color: var(--ivory); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 24px;
  text-align: center;
  color: var(--ink-soft);
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-item__info h4 {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}
.cart-item__info p {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--ink-soft);
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}
.cart-item__qty-btn {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--green-deep);
  border-radius: 50%;
  transition: background .2s var(--ease);
}
.cart-item__qty-btn:hover { background: var(--cream-warm); }
.cart-item__qty span {
  min-width: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--ink);
}
.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  height: 100%;
}
.cart-item__price {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--rust);
}
.cart-item__remove {
  font-size: 16px;
  color: var(--ink-soft);
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  transition: color .2s var(--ease);
}
.cart-item__remove:hover { color: var(--rust); }

.cart-drawer__footer {
  border-top: 1px solid var(--line);
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cart-drawer__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
}
.cart-drawer__clear {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  transition: color .2s var(--ease);
}
.cart-drawer__clear:hover { color: var(--rust); }

/* ============================== Toast ============================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  background: var(--green-deep);
  color: var(--ivory);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 20px 40px -16px rgba(31, 58, 45, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 90;
  white-space: nowrap;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .cart-drawer__panel { max-width: 100%; }
  .toast { white-space: normal; text-align: center; max-width: 88vw; }
}

/* ============================== Responsive — products & modal ============================== */
@media (max-width: 980px) {
  .grid--products { grid-template-columns: repeat(2, 1fr); }
  .order-modal__panel { max-width: 520px; }
}

@media (max-width: 640px) {
  .grid--products { grid-template-columns: 1fr; }
  .product-card__art { aspect-ratio: 4 / 3; }

  .order-modal__panel {
    grid-template-columns: 1fr;
    max-height: 95dvh;
  }
  .order-modal__img-wrap {
    min-height: 200px;
    height: 220px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .order-modal__content { padding: 20px; gap: 14px; }
  .order-modal__name { font-size: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
