:root {
  --forest: #123f2a;
  --forest-deep: #0b3422;
  --forest-2: #205b3d;
  --leaf: #637d6b;
  --ivory: #fffaf2;
  --paper: #f4ede3;
  --surface-warm: #f3e1ce;
  --surface-blush: #f7eae4;
  --surface-sage: #dfe9df;
  --surface-summary: #f6eee3;
  --white: #ffffff;
  --ink: #15231b;
  --ink-soft: #405047;
  --muted: #58675e;
  --line: rgba(21, 35, 27, 0.15);
  --gold: #d3a445;
  --gold-ink: #80520b;
  --terracotta: #9f4632;
  --lotus: #c66d78;
  --danger: #a72f2d;
  --shadow: 0 18px 50px rgba(25, 45, 33, 0.14);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(255, 250, 242, 0.97), rgba(255, 250, 242, 0.97)),
    url("../img/pl-lotus-hero-desktop-20260730.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  font-family: var(--sans);
  letter-spacing: 0;
}

body.drawer-open,
body.modal-open,
body.order-success-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--forest);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: 100%;
  height: 88px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.985);
  box-shadow: 0 8px 30px rgba(24, 50, 34, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1380px, calc(100% - 48px));
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  position: relative;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: nav-drop 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: block;
  border: 1px solid rgba(204, 138, 32, 0.7);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(18, 63, 42, 0.14);
  transition: width 220ms ease, height 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 46px;
  height: 46px;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1;
}

.brand-copy small {
  color: var(--terracotta);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  width: min(330px, calc(100vw - 48px));
  position: absolute;
  z-index: 61;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 0;
  padding: 10px;
  visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  transition: visibility 0s linear 180ms, opacity 180ms ease, transform 180ms ease;
}

.nav-links a {
  position: relative;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:last-child {
  border-bottom: 0;
}

.nav-links.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  animation: nav-drop 520ms 140ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes nav-drop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-icon,
.account-trigger,
.menu-trigger {
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(18, 63, 42, 0.18);
  border-radius: 6px;
  color: var(--forest);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 7px 18px rgba(18, 63, 42, 0.08);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-icon:hover,
.header-icon:focus-visible,
.account-trigger:hover,
.account-trigger:focus-visible,
.menu-trigger:hover,
.menu-trigger:focus-visible {
  color: var(--white);
  background: var(--forest);
  outline: none;
  transform: translateY(-2px);
}

.account-trigger {
  color: var(--white);
  background: var(--forest);
}

.account-trigger span {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-trigger img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.google-mark {
  width: 21px;
  height: 21px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.cart-button {
  position: relative;
}

.cart-count {
  min-width: 19px;
  height: 19px;
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--ivory);
  border-radius: 20px;
  color: var(--white);
  background: var(--gold-ink);
  font-size: 0.58rem;
  font-weight: 900;
}

.menu-trigger {
  display: inline-flex;
}

.menu-trigger-lines {
  width: 21px;
  height: 16px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.menu-trigger-lines i {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 140ms ease;
}

.menu-trigger[aria-expanded="true"] .menu-trigger-lines i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] .menu-trigger-lines i:nth-child(2) {
  opacity: 0;
}

.menu-trigger[aria-expanded="true"] .menu-trigger-lines i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  height: 780px;
  min-height: 690px;
  position: relative;
  overflow: hidden;
  color: var(--forest);
  background: var(--paper);
}

.hero-slides,
.hero-slide,
.hero-background,
.hero-background picture,
.hero-background img {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 900ms, opacity 900ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  z-index: 1;
  opacity: 1;
  transition-delay: 0s;
}

.hero-background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

.hero-slide.is-active .hero-background img {
  animation: hero-scene-breathe 12s ease-in-out infinite alternate;
}

.hero-slide--masala .hero-background img {
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.04) translateX(-1%);
}

.hero-slide--flavours .hero-background img {
  filter: saturate(0.78) contrast(1.02) sepia(0.08);
  transform: scale(1.045) translateX(-1%);
}

@keyframes hero-scene-breathe {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.075);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.79) 33%, rgba(255, 250, 242, 0.12) 67%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(18, 63, 42, 0.04));
}

.hero-inner {
  width: min(1380px, calc(100% - 48px));
  height: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(470px, 1.14fr);
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-copy {
  max-width: 590px;
  padding-left: 18px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease 100ms, transform 560ms ease 100ms;
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(12px);
}

.hero-slide.is-active .hero-copy > * {
  animation: hero-copy-rise 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active .hero-copy > :nth-child(1) {
  animation-delay: 90ms;
}

.hero-slide.is-active .hero-copy > :nth-child(2) {
  animation-delay: 140ms;
}

.hero-slide.is-active .hero-copy > :nth-child(3) {
  animation-delay: 190ms;
}

.hero-slide.is-active .hero-copy > :nth-child(4) {
  animation-delay: 240ms;
}

.hero-slide.is-active .hero-copy > :nth-child(5) {
  animation-delay: 290ms;
}

@keyframes hero-copy-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 5.55rem;
  font-weight: 400;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-copy > p {
  max-width: 470px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

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

.hero-price strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.hero-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-stock-status {
  width: fit-content;
  margin: 18px 0 0;
  padding: 8px 12px;
  border: 1px solid rgba(158, 65, 45, 0.42);
  border-radius: 4px;
  color: var(--terracotta);
  background: rgba(255, 250, 242, 0.84);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .primary-button {
  min-width: 174px;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-button {
  color: var(--white);
  background: var(--forest);
}

.secondary-button {
  color: var(--forest);
  background: rgba(255, 250, 242, 0.78);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  outline: none;
  transform: translateY(-2px);
}

.primary-button:active,
.secondary-button:active {
  transform: translateY(0) scale(0.98);
}

.hero-product {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  height: 640px;
  position: relative;
  align-self: end;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 680ms ease 160ms, transform 680ms ease 160ms;
}

.hero-slide.is-active .hero-product {
  opacity: 1;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
}

.hero-product img {
  width: auto;
  height: 610px;
  position: absolute;
  right: 10%;
  bottom: -35px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(26, 43, 31, 0.2));
  animation: product-drift 5s ease-in-out infinite;
}

.hero-product--masala img {
  height: 570px;
  right: 13%;
  bottom: -20px;
}

.hero-product--flavours img {
  height: 530px;
  right: 3%;
  bottom: -8px;
  mix-blend-mode: normal;
}

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

.hero-pagination {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100% - 1380px) / 2 + 24px));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-arrow,
.hero-dot {
  border: 1px solid rgba(18, 63, 42, 0.28);
  color: var(--forest);
  background: rgba(255, 250, 242, 0.88);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 5px;
}

.hero-dot {
  width: 24px;
  height: 4px;
  padding: 0;
  border-radius: 0;
  transition: width 200ms ease, background 200ms ease;
}

.hero-dot[aria-current="true"] {
  width: 42px;
  border-color: var(--forest);
  background: var(--forest);
}

.ticker {
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.ticker-track {
  width: max-content;
  display: flex;
  animation: ticker-move 30s linear infinite;
}

.ticker-set {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  color: var(--gold);
  content: "✦";
  font-size: 0.72rem;
}

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

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}

.section-heading p {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.products-section {
  padding: 112px 0 0;
  border-top: 1px solid rgba(21, 35, 27, 0.08);
  background: var(--ivory);
}

.product-showcase {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 86px;
  padding: 66px 0;
  border-top: 1px solid var(--line);
}

.product-showcase:last-child {
  border-bottom: 1px solid var(--line);
}

.product-showcase:nth-child(odd) .product-media {
  order: 2;
}

.product-media {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(21, 35, 27, 0.08);
  background: var(--surface-warm);
}

.product-media::before {
  width: 310px;
  height: 310px;
  position: absolute;
  content: "";
  border: 1px solid rgba(204, 138, 32, 0.3);
  border-radius: 50%;
  animation: product-ring-breathe 8s ease-in-out infinite;
}

.product-media::after {
  width: 1px;
  height: 76%;
  position: absolute;
  top: 12%;
  left: 50%;
  content: "";
  background: rgba(18, 63, 42, 0.12);
}

.product-media--dark {
  background: var(--surface-sage);
}

.product-media--dark::before {
  border-color: rgba(18, 63, 42, 0.28);
}

.product-media--flavours {
  background: var(--surface-blush);
}

.product-media--flavours::before {
  width: 380px;
  height: 380px;
  border-color: rgba(159, 70, 50, 0.26);
}

.product-media--flavours::after {
  display: none;
}

.product-media--flavours img {
  height: 430px;
  mix-blend-mode: normal;
}

.product-media--wide img {
  width: min(94%, 600px);
  height: auto;
  max-height: 410px;
}

.product-media--one-kg {
  background: var(--surface-warm);
}

.product-media--one-kg::before {
  width: 390px;
  height: 390px;
  border-color: rgba(128, 82, 11, 0.28);
}

.product-media--one-kg img {
  height: 470px;
  mix-blend-mode: multiply;
}

.product-media--bulk {
  background: var(--surface-sage);
}

.product-media--bulk::before {
  width: 400px;
  height: 400px;
  border-color: rgba(18, 63, 42, 0.24);
}

.product-media--bulk::after {
  display: none;
}

.product-media--bulk img {
  width: min(86%, 460px);
  height: auto;
  border-radius: 6px;
}

.product-media img {
  width: auto;
  height: 460px;
  position: relative;
  z-index: 1;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(26, 43, 31, 0.18));
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.product-showcase:hover .product-media img {
  transform: translateY(-10px) scale(1.025) rotate(-0.5deg);
  filter: drop-shadow(0 32px 30px rgba(26, 43, 31, 0.24));
}

.product-showcase:nth-of-type(even):hover .product-media img {
  transform: translateY(-10px) scale(1.025) rotate(0.5deg);
}

@keyframes product-ring-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.product-copy {
  max-width: 540px;
}

.product-copy h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1;
}

.product-copy .product-subtitle {
  margin: 10px 0 0;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-copy .product-description {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.product-price {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2.1rem;
}

.product-meta.is-price-hidden .product-price,
.product-variant-button small.is-price-hidden {
  filter: blur(5px);
  opacity: 0.72;
  pointer-events: none;
  user-select: none;
}

.product-stock-status {
  width: fit-content;
  margin: 18px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(158, 65, 45, 0.42);
  border-radius: 4px;
  color: var(--terracotta);
  background: rgba(158, 65, 45, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-unit {
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-variant-options {
  margin-top: 25px;
}

.product-variant-options > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-variant-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-variant-button {
  min-height: 62px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 8px 6px;
  border: 1px solid rgba(18, 63, 42, 0.22);
  border-radius: 4px;
  color: var(--forest);
  background: var(--white);
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-variant-button strong {
  font-size: 0.74rem;
  font-weight: 900;
}

.product-variant-button small {
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-variant-button:hover,
.product-variant-button:focus-visible {
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.product-variant-button.is-selected {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.product-variant-button.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-highlights li {
  padding: 8px 11px;
  border: 1px solid rgba(18, 63, 42, 0.18);
  border-radius: 3px;
  color: var(--forest);
  background: rgba(99, 125, 107, 0.1);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-highlights li.is-featured-highlight {
  border-color: var(--gold);
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 8px 18px rgba(18, 63, 42, 0.16);
}

.product-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 34px;
}

.product-stepper {
  height: 52px;
  display: grid;
  grid-template-columns: 44px 42px 44px;
  overflow: hidden;
  border: 1px solid var(--forest);
  border-radius: 5px;
}

.product-stepper button {
  border: 0;
  color: var(--forest);
  background: transparent;
  font-size: 1.15rem;
}

.product-stepper button:hover,
.product-stepper button:focus-visible {
  color: var(--white);
  background: var(--forest);
  outline: none;
}

.product-stepper span {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--forest);
  border-right: 1px solid var(--forest);
  font-size: 0.8rem;
  font-weight: 900;
}

.add-product {
  flex: 1;
}

.out-of-stock-button {
  min-height: 52px;
  flex: 1;
  border: 1px solid rgba(158, 65, 45, 0.42);
  border-radius: 5px;
  color: var(--terracotta);
  background: rgba(158, 65, 45, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buy-now-button {
  min-width: 116px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  color: var(--forest);
  background: rgba(255, 250, 242, 0.72);
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.buy-now-button:hover,
.buy-now-button:focus-visible {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  outline: none;
  transform: translateY(-2px);
}

.buy-now-button:active {
  transform: translateY(0) scale(0.98);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

.origin-section {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.origin-section picture,
.origin-section picture img {
  position: absolute;
  inset: 0;
}

.origin-section img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 9s ease;
}

.origin-section.is-in-view img {
  transform: scale(1.04);
}

.origin-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 63, 42, 0.04) 20%, rgba(18, 63, 42, 0.88) 100%);
}

.origin-copy {
  width: min(1240px, calc(100% - 48px));
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 0 64px;
}

.origin-copy span {
  color: #f0c66c;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bulk-enquiry-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bulk-enquiry-button:hover,
.bulk-enquiry-button:focus-visible {
  border-color: var(--terracotta);
  color: var(--white);
  background: var(--terracotta);
  transform: translateY(-2px);
}

.product-actions [hidden] {
  display: none !important;
}

.origin-copy h2 {
  max-width: 690px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 4.25rem;
  font-weight: 400;
  line-height: 0.98;
}

.origin-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.social-section {
  overflow: hidden;
  padding: 94px 0 82px;
  border-top: 1px solid rgba(21, 35, 27, 0.08);
  background: var(--surface-blush);
}

.worldwide-section {
  padding: 82px 0;
  border-top: 1px solid rgba(21, 35, 27, 0.08);
  background: var(--ivory);
}

.worldwide-map {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
}

.worldwide-map img {
  width: 100%;
  height: auto;
  display: block;
}

.social-heading {
  width: min(1240px, calc(100% - 48px));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 46px;
}

.social-heading .section-heading {
  margin: 0;
}

.instagram-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--white);
  background: var(--forest);
  outline: none;
}

.instagram-feed-grid {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.instagram-reel {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 42, 0.14);
  border-radius: 6px;
  background-color: var(--white);
  background-image: url("../img/logo-120.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58px 58px;
  box-shadow: 0 16px 40px rgba(18, 63, 42, 0.1);
}

.instagram-reel[data-reveal] {
  transform: translateY(38px) scale(0.97);
  transition-delay: calc(var(--reel-index) * 90ms);
}

.instagram-reel[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.instagram-reel[data-reveal].is-visible:hover {
  z-index: 1;
  box-shadow: 0 26px 50px rgba(18, 63, 42, 0.18);
  transform: translateY(-7px) scale(1.01);
}

.instagram-reel iframe {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: block;
  border: 0;
  background: transparent;
}

.promise-section {
  padding: 80px 0;
  color: var(--white);
  background: var(--forest-deep);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.promise-item {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.promise-item:last-child {
  border-right: 0;
}

.promise-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border: 1px solid rgba(240, 198, 108, 0.7);
  border-radius: 50%;
  color: var(--gold);
}

.promise-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
}

.promise-item small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  padding: 74px 0 42px;
  color: var(--ink);
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 450px;
}

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

.footer-brand p,
.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--terracotta);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  padding-right: 72px;
}

.whatsapp-button {
  width: 52px;
  height: 52px;
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #0d7a49;
  box-shadow: 0 13px 34px rgba(13, 87, 50, 0.26);
  transition: transform 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  outline: none;
  transform: translateY(-3px) scale(1.03);
}

.drawer-backdrop,
.account-overlay,
.order-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  background: rgba(18, 34, 25, 0.62);
  backdrop-filter: blur(9px);
  transition: visibility 0s linear 260ms, opacity 260ms ease;
}

.drawer-backdrop.is-open,
.account-overlay.is-open,
.order-success-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.cart-drawer {
  width: min(1080px, 92vw);
  height: calc(100vh - 28px);
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: -20px 0 70px rgba(10, 28, 17, 0.24);
  transform: translateX(calc(100% + 30px));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.drawer-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.drawer-title img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.drawer-title strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.drawer-title span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: transparent;
}

.icon-close:hover,
.icon-close:focus-visible {
  color: var(--white);
  background: var(--forest);
  outline: none;
}

.checkout-form-shell {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  overflow: hidden;
}

.checkout-main {
  min-height: 0;
  overflow-y: auto;
  padding: 30px;
}

.checkout-summary {
  min-height: 0;
  overflow-y: auto;
  padding: 30px 26px;
  border-left: 1px solid var(--line);
  background: var(--surface-summary);
}

.checkout-block + .checkout-block {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.checkout-block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.checkout-block h3,
.checkout-summary h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.checkout-block-head p,
.checkout-summary-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.text-button {
  padding: 7px 0;
  border: 0;
  color: var(--forest);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--terracotta);
  outline: none;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.empty-cart {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed rgba(18, 63, 42, 0.28);
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}

.empty-cart svg {
  color: var(--forest);
}

.empty-cart strong {
  display: block;
  margin-top: 10px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.empty-cart p {
  max-width: 330px;
  margin: 7px auto 15px;
  font-size: 0.75rem;
  line-height: 1.6;
}

.cart-line {
  min-height: 126px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.cart-line img {
  width: 94px;
  height: 98px;
  display: block;
  padding: 4px;
  border-radius: 4px;
  background: var(--paper);
  object-fit: contain;
}

.cart-line-info {
  min-width: 0;
}

.cart-line-info strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.15;
}

.cart-line-info small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
}

.mini-stepper {
  height: 34px;
  display: grid;
  grid-template-columns: 34px 34px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.mini-stepper button,
.mini-stepper span {
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-size: 0.75rem;
}

.mini-stepper span {
  font-weight: 800;
}

.mini-stepper button:last-child {
  border-right: 0;
}

.mini-stepper button:hover,
.mini-stepper button:focus-visible {
  color: var(--white);
  background: var(--forest);
  outline: none;
}

.line-remove {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--danger);
  background: #fff7f5;
}

.line-remove:hover,
.line-remove:focus-visible {
  color: var(--white);
  background: var(--danger);
  border-color: var(--danger);
  outline: none;
}

.cart-line-price {
  align-self: start;
  padding-top: 8px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field > span,
.field > label {
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font-size: 0.78rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #78837c;
  opacity: 1;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(18, 63, 42, 0.09);
}

.address-map {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  color: var(--forest);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 900;
}

.address-map:hover,
.address-map:focus-visible {
  color: var(--white);
  background: var(--forest);
  outline: none;
}

.checkout-summary-head {
  margin-bottom: 24px;
}

.summary-lines {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.summary-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.76rem;
}

.summary-line span small {
  display: block;
  margin-top: 3px;
  font-size: 0.58rem;
}

.summary-line strong {
  color: var(--ink);
}

.summary-line.total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 1rem;
}

.summary-line.total strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.coupon-offers {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.coupon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.coupon-head strong {
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-head small {
  color: var(--muted);
  font-size: 0.58rem;
}

.coupon-list {
  display: grid;
  gap: 8px;
}

.coupon-offer {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border: 1px dashed rgba(18, 63, 42, 0.33);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.coupon-offer:hover,
.coupon-offer:focus-visible {
  border-color: var(--forest);
  background: var(--surface-sage);
  outline: none;
  transform: translateY(-1px);
}

.coupon-offer span {
  min-width: 0;
}

.coupon-offer strong,
.coupon-offer small {
  display: block;
}

.coupon-offer strong {
  color: var(--forest);
  font-size: 0.67rem;
  font-weight: 900;
}

.coupon-offer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.35;
}

.coupon-offer em {
  color: var(--terracotta);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-offer.is-applied {
  border-style: solid;
  border-color: var(--forest);
  background: rgba(110, 134, 101, 0.08);
}

.coupon-feedback {
  min-height: 30px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.5;
}

.payment-options {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.payment-options > strong {
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-choice {
  min-height: 62px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.payment-choice:has(input:checked) {
  border-color: var(--forest);
  background: var(--surface-sage);
}

.payment-choice span strong,
.payment-choice span small {
  display: block;
}

.payment-choice span strong {
  color: var(--forest);
  font-size: 0.7rem;
}

.payment-choice span small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.35;
}

.checkout-button {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-button:not(:disabled):hover,
.checkout-button:not(:disabled):focus-visible {
  border-color: var(--terracotta);
  background: var(--terracotta);
  outline: none;
}

.checkout-button:not(:disabled):active {
  transform: scale(0.99);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.57rem;
}

.order-result {
  min-height: 0;
  margin-top: 12px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
}

.order-result.error {
  color: var(--danger);
}

.account-overlay {
  display: grid;
  place-items: center;
  padding: 26px;
}

.order-success-overlay {
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 24px;
}

.order-success-modal {
  width: min(458px, 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px 42px 38px;
  border: 1px solid rgba(18, 63, 42, 0.12);
  border-radius: 8px;
  color: var(--forest);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(8, 24, 14, 0.3);
  text-align: center;
  transform: translateY(22px) scale(0.97);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.order-success-overlay.is-open .order-success-modal {
  transform: translateY(0) scale(1);
}

.order-success-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
}

.order-success-mark {
  width: 74px;
  height: 74px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(18, 63, 42, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 28px rgba(18, 63, 42, 0.2);
}

.order-success-modal h2 {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 0.98;
}

.order-success-modal > p {
  position: relative;
  z-index: 1;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.order-success-number {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: 26px 0 0;
  padding: 15px;
  border: 1px dashed rgba(18, 63, 42, 0.3);
  border-radius: 5px;
  background: var(--surface-summary);
}

.order-success-number span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-success-number strong {
  color: var(--forest);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.order-success-action {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.order-success-history {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 16px;
  color: var(--forest);
  font-size: 0.67rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.celebration-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.celebration-confetti i {
  width: 8px;
  height: 14px;
  position: absolute;
  top: 45%;
  left: 50%;
  display: block;
  border-radius: 1px;
  background: var(--gold);
  opacity: 0;
}

.order-success-overlay.is-open .celebration-confetti i {
  animation: celebration-burst 1.2s cubic-bezier(0.12, 0.84, 0.32, 1) both;
}

.celebration-confetti i:nth-child(1) { --burst-x: -130px; --burst-y: -156px; background: var(--terracotta); animation-delay: 50ms; }
.celebration-confetti i:nth-child(2) { --burst-x: -82px; --burst-y: -190px; background: var(--gold); animation-delay: 90ms; }
.celebration-confetti i:nth-child(3) { --burst-x: -22px; --burst-y: -150px; background: var(--lotus); animation-delay: 30ms; }
.celebration-confetti i:nth-child(4) { --burst-x: 45px; --burst-y: -182px; background: var(--forest-2); animation-delay: 100ms; }
.celebration-confetti i:nth-child(5) { --burst-x: 118px; --burst-y: -142px; background: var(--gold); animation-delay: 60ms; }
.celebration-confetti i:nth-child(6) { --burst-x: -146px; --burst-y: 18px; background: var(--forest-2); animation-delay: 120ms; }
.celebration-confetti i:nth-child(7) { --burst-x: 138px; --burst-y: 26px; background: var(--lotus); animation-delay: 80ms; }
.celebration-confetti i:nth-child(8) { --burst-x: -78px; --burst-y: 102px; background: var(--gold); animation-delay: 110ms; }
.celebration-confetti i:nth-child(9) { --burst-x: 72px; --burst-y: 110px; background: var(--terracotta); animation-delay: 40ms; }

@keyframes celebration-burst {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--burst-x), var(--burst-y), 0) rotate(220deg); }
}

.makhana-burst {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.makhana-burst i {
  width: clamp(19px, 2.2vw, 34px);
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(118, 86, 45, 0.34);
  border-radius: 45% 55% 48% 52%;
  background:
    radial-gradient(circle at 28% 34%, rgba(103, 73, 39, 0.86) 0 5%, transparent 6%),
    radial-gradient(circle at 66% 30%, rgba(103, 73, 39, 0.78) 0 5%, transparent 6%),
    radial-gradient(circle at 59% 68%, rgba(103, 73, 39, 0.7) 0 4%, transparent 5%),
    radial-gradient(circle at 43% 53%, #fffdf4 0 42%, #e9d9b8 72%, #c7aa7e 100%);
  box-shadow: 0 7px 13px rgba(52, 34, 16, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
}

.order-success-overlay.is-open .makhana-burst i {
  animation: makhana-bombard 1.55s cubic-bezier(0.16, 0.86, 0.25, 1) both;
  animation-delay: var(--makhana-delay, 0ms);
}

.makhana-burst i:nth-child(1) { --makhana-x: -43vw; --makhana-y: -38vh; --makhana-spin: 190deg; --makhana-scale: 1; --makhana-delay: 0ms; }
.makhana-burst i:nth-child(2) { --makhana-x: -30vw; --makhana-y: -47vh; --makhana-spin: -250deg; --makhana-scale: 0.8; --makhana-delay: 70ms; }
.makhana-burst i:nth-child(3) { --makhana-x: -12vw; --makhana-y: -42vh; --makhana-spin: 320deg; --makhana-scale: 1.15; --makhana-delay: 35ms; }
.makhana-burst i:nth-child(4) { --makhana-x: 13vw; --makhana-y: -48vh; --makhana-spin: -220deg; --makhana-scale: 0.85; --makhana-delay: 125ms; }
.makhana-burst i:nth-child(5) { --makhana-x: 34vw; --makhana-y: -38vh; --makhana-spin: 270deg; --makhana-scale: 1; --makhana-delay: 55ms; }
.makhana-burst i:nth-child(6) { --makhana-x: 45vw; --makhana-y: -21vh; --makhana-spin: -180deg; --makhana-scale: 0.78; --makhana-delay: 95ms; }
.makhana-burst i:nth-child(7) { --makhana-x: -46vw; --makhana-y: -12vh; --makhana-spin: 220deg; --makhana-scale: 1.1; --makhana-delay: 145ms; }
.makhana-burst i:nth-child(8) { --makhana-x: -37vw; --makhana-y: 20vh; --makhana-spin: -310deg; --makhana-scale: 0.88; --makhana-delay: 85ms; }
.makhana-burst i:nth-child(9) { --makhana-x: -19vw; --makhana-y: 39vh; --makhana-spin: 250deg; --makhana-scale: 1.05; --makhana-delay: 20ms; }
.makhana-burst i:nth-child(10) { --makhana-x: 2vw; --makhana-y: 44vh; --makhana-spin: -220deg; --makhana-scale: 0.8; --makhana-delay: 150ms; }
.makhana-burst i:nth-child(11) { --makhana-x: 21vw; --makhana-y: 38vh; --makhana-spin: 300deg; --makhana-scale: 1.12; --makhana-delay: 45ms; }
.makhana-burst i:nth-child(12) { --makhana-x: 39vw; --makhana-y: 25vh; --makhana-spin: -270deg; --makhana-scale: 0.9; --makhana-delay: 115ms; }
.makhana-burst i:nth-child(13) { --makhana-x: 46vw; --makhana-y: 7vh; --makhana-spin: 180deg; --makhana-scale: 1; --makhana-delay: 175ms; }
.makhana-burst i:nth-child(14) { --makhana-x: -28vw; --makhana-y: 9vh; --makhana-spin: -210deg; --makhana-scale: 0.76; --makhana-delay: 105ms; }
.makhana-burst i:nth-child(15) { --makhana-x: 28vw; --makhana-y: -7vh; --makhana-spin: 260deg; --makhana-scale: 1.08; --makhana-delay: 65ms; }
.makhana-burst i:nth-child(16) { --makhana-x: -7vw; --makhana-y: -32vh; --makhana-spin: -320deg; --makhana-scale: 0.84; --makhana-delay: 160ms; }
.makhana-burst i:nth-child(17) { --makhana-x: 8vw; --makhana-y: 25vh; --makhana-spin: 230deg; --makhana-scale: 0.96; --makhana-delay: 130ms; }
.makhana-burst i:nth-child(18) { --makhana-x: -2vw; --makhana-y: 5vh; --makhana-spin: -180deg; --makhana-scale: 1.2; --makhana-delay: 190ms; }

@keyframes makhana-bombard {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3) rotate(0deg); }
  14% { opacity: 1; }
  82% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--makhana-x)), calc(-50% + var(--makhana-y))) scale(var(--makhana-scale)) rotate(var(--makhana-spin)); }
}

.account-modal {
  width: min(900px, 94vw);
  height: min(560px, calc(100vh - 52px));
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(8, 24, 14, 0.3);
  transform: translateY(22px) scale(0.985);
  transition: transform 260ms ease;
}

.account-overlay.is-open .account-modal {
  transform: translateY(0) scale(1);
}

.account-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background: var(--forest);
}

.account-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.account-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 63, 42, 0.05), rgba(18, 63, 42, 0.92));
}

.account-visual-copy {
  position: relative;
  z-index: 1;
}

.account-visual-copy span {
  color: #f0c66c;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-visual-copy h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1.03;
}

.account-visual-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.65;
}

.account-content {
  min-height: 0;
  position: relative;
  overflow-y: auto;
  padding: 46px 46px 38px;
}

.account-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.account-brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 56px;
}

.account-brand-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.account-brand-row strong,
.account-brand-row span {
  display: block;
}

.account-brand-row strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.account-brand-row span {
  margin-top: 3px;
  color: var(--terracotta);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-kicker {
  display: block;
  margin-top: 30px;
  color: var(--terracotta);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-content h2 {
  margin: 8px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.98;
}

.account-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.account-actions {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.google-login,
.account-secondary,
.account-signout {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-login {
  color: var(--white);
  background: var(--forest);
}

.account-secondary {
  color: var(--forest);
  background: transparent;
}

.account-signout {
  color: var(--danger);
  border-color: rgba(185, 54, 50, 0.35);
  background: transparent;
}

.google-login:hover,
.google-login:focus-visible,
.account-secondary:hover,
.account-secondary:focus-visible {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  outline: none;
}

.account-signout:hover,
.account-signout:focus-visible {
  color: var(--white);
  background: var(--danger);
  outline: none;
}

.history-panel {
  display: none;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.history-panel.is-open {
  display: block;
}

.history-status {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.history-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.history-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--ivory);
}

.history-order strong {
  display: block;
  color: var(--forest);
  font-size: 0.7rem;
}

.history-order small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.4;
}

.history-order em {
  align-self: start;
  color: var(--terracotta);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.toast {
  max-width: min(380px, calc(100vw - 32px));
  min-height: 46px;
  position: fixed;
  z-index: 140;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 5px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1060px) {
  .header-inner {
    width: min(100% - 32px, 1000px);
    gap: 18px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-inner {
    width: calc(100% - 40px);
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-product img {
    height: 550px;
    right: 0;
  }

  .section-shell,
  .origin-copy,
  .social-heading {
    width: calc(100% - 40px);
  }

  .product-showcase {
    gap: 48px;
  }

  .checkout-form-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .instagram-feed-grid {
    width: 100%;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 340px);
    justify-content: start;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 20px 18px;
    scroll-padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .instagram-feed-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-reel {
    scroll-snap-align: center;
  }
}

@media (max-width: 820px) {
  body {
    background-attachment: scroll;
    background-image:
      linear-gradient(rgba(255, 250, 242, 0.97), rgba(255, 250, 242, 0.97)),
      url("../img/pl-lotus-hero-mobile-20260730.webp");
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr auto;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-copy {
    display: none;
  }

  .nav-links {
    width: calc(100% - 24px);
    position: fixed;
    z-index: 61;
    top: 74px;
    right: auto;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    visibility: hidden;
    border: 1px solid var(--line);
    border-radius: 7px;
    opacity: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    transition: visibility 0s linear 180ms, opacity 180ms ease, transform 180ms ease;
    animation: none;
  }

  .menu-trigger {
    order: -1;
  }

  .account-trigger > span:not(.google-mark) {
    display: none;
  }

  .account-trigger .google-mark {
    display: grid;
  }

  .account-trigger,
  .header-icon,
  .menu-trigger {
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
  }

  .hero {
    height: 740px;
    min-height: 740px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.97) 0%, rgba(255, 250, 242, 0.87) 39%, rgba(255, 250, 242, 0.16) 69%, rgba(18, 63, 42, 0.08) 100%);
  }

  .hero-inner {
    width: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 0 24px;
  }

  .hero-copy {
    max-width: 600px;
    justify-self: center;
    padding-left: 0;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 4.3rem;
    line-height: 0.92;
  }

  .hero h1 span {
    font-size: 0.95rem;
    margin-bottom: 11px;
  }

  .hero-copy > p {
    max-width: 500px;
    margin: 18px auto 0;
  }

  .hero-price {
    justify-content: center;
    margin-top: 15px;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-stock-status {
    margin-inline: auto;
  }

  .hero-product {
    width: 100%;
    height: 350px;
    position: relative;
    right: auto;
    bottom: auto;
    order: -1;
    flex: 0 0 350px;
    margin: 0;
    align-self: center;
  }

  .hero-product img,
  .hero-product--masala img {
    height: 340px;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    animation: product-drift-mobile 5s ease-in-out infinite;
  }

  .hero-product--flavours img {
    width: min(92vw, 395px);
    max-width: none;
    height: auto;
    right: 50%;
    bottom: 0;
    filter: drop-shadow(0 18px 18px rgba(26, 43, 31, 0.14));
    mix-blend-mode: multiply;
  }

  .hero-product--flavours {
    height: 340px;
    flex-basis: 340px;
  }

  .hero-slide--flavours .hero-copy h1 {
    font-size: 3.65rem;
    line-height: 0.94;
  }

  @keyframes product-drift-mobile {
    0%,
    100% {
      transform: translateX(50%) translateY(0) rotate(-0.4deg);
    }
    50% {
      transform: translateX(50%) translateY(-8px) rotate(0.4deg);
    }
  }

  .hero-pagination {
    right: 18px;
    bottom: 18px;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .product-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px 0;
  }

  .product-showcase:nth-child(odd) .product-media {
    order: 0;
  }

  .product-media {
    min-height: 470px;
  }

  .product-media--flavours img {
    height: 390px;
  }

  .product-media--wide img {
    width: min(94%, 520px);
    height: auto;
    max-height: 360px;
  }

  .product-media--one-kg img {
    height: 430px;
  }

  .product-media--bulk img {
    width: min(84%, 430px);
  }

  .product-copy {
    max-width: none;
  }

  .origin-section {
    min-height: 600px;
  }

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

  .promise-item:nth-child(2) {
    border-right: 0;
  }

  .promise-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cart-drawer {
    width: calc(100vw - 20px);
    right: 10px;
  }

  .checkout-form-shell {
    display: block;
    overflow-y: auto;
  }

  .checkout-main,
  .checkout-summary {
    overflow: visible;
  }

  .checkout-summary {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.is-scrolled {
    height: 62px;
  }

  .header-inner {
    width: calc(100% - 18px);
    gap: 7px;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 40px;
    height: 40px;
  }

  .account-trigger,
  .header-icon,
  .menu-trigger {
    min-width: 40px;
    height: 40px;
    padding: 0 9px;
  }

  .menu-trigger {
    order: 0;
  }

  .header-actions {
    gap: 6px;
  }

  .cart-count {
    top: -5px;
    right: -4px;
  }

  .hero {
    height: 660px;
    min-height: 660px;
  }

  .hero-background img {
    object-position: center bottom;
  }

  .hero-inner {
    width: calc(100% - 24px);
    padding: 76px 0 20px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.59rem;
  }

  .hero h1 {
    font-size: 3.05rem;
    line-height: 0.93;
  }

  .hero h1 span {
    font-size: 0.74rem;
  }

  .hero-copy > p {
    max-width: 340px;
    margin-top: 13px;
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .hero-price {
    margin-top: 10px;
  }

  .hero-price strong {
    font-size: 1.55rem;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-actions .secondary-button {
    display: none;
  }

  .primary-button,
  .secondary-button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.66rem;
  }

  .hero-product {
    height: 350px;
    flex-basis: 350px;
  }

  .hero-product img,
  .hero-product--masala img {
    height: 340px;
    bottom: 0;
  }

  .hero-product--flavours img {
    width: min(90vw, 312px);
    height: auto;
    right: 50%;
    bottom: 0;
  }

  .hero-product--flavours {
    height: 286px;
    flex-basis: 286px;
  }

  .hero-slide--flavours .hero-copy h1 {
    max-width: 310px;
    margin-inline: auto;
    font-size: 2.72rem;
    line-height: 0.96;
  }

  .hero-pagination {
    right: 12px;
    bottom: 12px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .ticker span {
    padding: 13px 18px;
    font-size: 0.62rem;
  }

  .section-shell,
  .origin-copy,
  .social-heading {
    width: calc(100% - 28px);
  }

  .products-section {
    padding: 76px 0 0;
  }

  .social-section {
    padding: 72px 0 52px;
  }

  .worldwide-section {
    padding: 54px 0;
  }

  .worldwide-map {
    width: calc(100% - 28px);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 2.42rem;
  }

  .section-heading p {
    font-size: 0.8rem;
  }

  .product-showcase {
    gap: 28px;
    padding: 40px 0;
  }

  .product-media {
    min-height: 390px;
  }

  .product-media::before {
    width: 240px;
    height: 240px;
  }

  .product-media img {
    height: 360px;
  }

  .product-media--flavours img {
    height: 340px;
  }

  .product-media--wide img {
    width: min(94%, 440px);
    height: auto;
    max-height: 300px;
  }

  .product-media--one-kg img {
    height: 360px;
  }

  .product-media--bulk img {
    width: min(88%, 350px);
  }

  .product-variant-button {
    min-height: 58px;
  }

  .product-variant-button strong {
    font-size: 0.68rem;
  }

  .product-variant-button small {
    font-size: 0.48rem;
  }

  .product-copy h3 {
    font-size: 2.46rem;
  }

  .product-copy .product-description {
    margin-top: 18px;
    font-size: 0.82rem;
  }

  .product-meta,
  .product-highlights {
    margin-top: 21px;
  }

  .product-actions {
    flex-wrap: wrap;
    margin-top: 25px;
  }

  .product-stepper {
    grid-template-columns: 42px 40px 42px;
  }

  .add-product {
    min-width: calc(100% - 134px);
  }

  .buy-now-button {
    width: 100%;
    flex: 1 0 100%;
  }

  .origin-section {
    min-height: 530px;
  }

  .origin-copy {
    padding-bottom: 38px;
  }

  .origin-copy h2 {
    font-size: 2.65rem;
  }

  .origin-copy p {
    font-size: 0.78rem;
  }

  .order-success-mark {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
  }

  .order-success-modal > p {
    font-size: 0.76rem;
  }

  .social-heading {
    align-items: start;
  }

  .instagram-link {
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .instagram-link span {
    display: none;
  }

  .instagram-feed-grid {
    grid-auto-columns: clamp(292px, 86vw, 330px);
    gap: 12px;
    padding: 0 14px 14px;
    scroll-padding-inline: 14px;
  }

  .promise-section {
    padding: 55px 0;
  }

  .promise-item {
    min-height: 145px;
    padding: 18px 10px;
  }

  .promise-icon {
    width: 48px;
    height: 48px;
  }

  .promise-item strong {
    font-size: 1.08rem;
  }

  .site-footer {
    padding-top: 54px;
    padding-bottom: 82px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }

  .whatsapp-button {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }

  .cart-drawer {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 0;
  }

  .drawer-head {
    min-height: 68px;
    padding: 0 16px;
  }

  .checkout-main,
  .checkout-summary {
    padding: 22px 16px;
  }

  .cart-line {
    min-height: 116px;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .cart-line img {
    width: 76px;
    height: 90px;
    grid-column: 1;
    grid-row: 1;
  }

  .cart-line-price {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-top: 0;
  }

  .cart-line-info {
    width: 100%;
    grid-column: 2;
    grid-row: 1;
    padding-right: 55px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .account-overlay {
    align-items: end;
    padding: 0;
  }

  .account-modal {
    width: 100%;
    height: min(700px, 92vh);
    grid-template-columns: 1fr;
    grid-template-rows: 165px minmax(0, 1fr);
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
  }

  .account-overlay.is-open .account-modal {
    transform: translateY(0);
  }

  .account-visual {
    padding: 18px 22px;
  }

  .account-visual img {
    object-position: center 56%;
  }

  .account-visual-copy h2 {
    max-width: 300px;
    font-size: 1.45rem;
  }

  .account-visual-copy p,
  .account-visual-copy > span {
    display: none;
  }

  .account-content {
    padding: 28px 22px 34px;
  }

  .account-close {
    top: 16px;
    right: 16px;
    z-index: 2;
    color: var(--forest);
    background: rgba(255, 255, 255, 0.92);
  }

  .account-brand-row {
    display: none;
  }

  .account-kicker {
    margin-top: 0;
  }

  .account-content h2 {
    font-size: 2.55rem;
  }

  .order-success-overlay {
    align-items: end;
    padding: 0;
  }

  .order-success-modal {
    width: 100%;
    padding: 44px 24px 32px;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
  }

  .order-success-overlay.is-open .order-success-modal {
    transform: translateY(0);
  }

  .order-success-modal h2 {
    font-size: 2.45rem;
  }
}

@media (min-width: 821px) {
  .hero-shade {
    background:
      linear-gradient(270deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.79) 34%, rgba(255, 250, 242, 0.12) 68%),
      linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(18, 63, 42, 0.04));
  }

  .hero-inner {
    grid-template-columns: minmax(470px, 1.14fr) minmax(360px, 0.86fr);
  }

  .hero-product {
    grid-column: 1;
    grid-row: 1;
    transform: translateX(-34px);
  }

  .hero-copy {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-right: 18px;
    padding-left: 0;
  }

  .hero-product img {
    right: auto;
    left: 10%;
  }

  .hero-product--masala img {
    right: auto;
    left: 13%;
  }

  .hero-pagination {
    right: auto;
    left: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold) !important;
  outline-offset: 3px;
}
