:root {
  color: #12271f;
  background: #fffdf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --green-950: #002d20;
  --green-900: #003b2a;
  --green-800: #07543e;
  --green-700: #0e6a4d;
  --gold-600: #b88620;
  --gold-500: #c99b34;
  --gold-300: #e1c77e;
  --cream-100: #fbf6ed;
  --cream-200: #f5ead8;
  --line: #e8ddca;
  --ink: #15251f;
  --muted: #637069;
  --danger: #be2929;
  --shadow: 0 12px 30px rgba(0, 45, 32, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #fffdf9;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

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

.rn-site {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement-bar {
  background: var(--green-950);
  color: #fff;
  font-size: 13px;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-points {
  display: flex;
  align-items: center;
  gap: 24px;
}

.announcement-points span,
.need-help {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement-points i {
  color: var(--gold-500);
}

.header-main {
  min-height: 104px;
  display: grid;
  grid-template-columns: 206px minmax(420px, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.brand {
  width: 186px;
  height: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: center;
}

.product-search {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 190px 56px;
  border: 1px solid #d8d8d3;
  border-radius: 6px;
  background: white;
  overflow: hidden;
}

.product-search input,
.product-search select {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.product-search input {
  padding: 0 18px;
}

.product-search select {
  padding: 0 15px;
  border-left: 1px solid #deded8;
}

.product-search button {
  border: 0;
  background: var(--green-900);
  color: var(--gold-500);
  font-size: 19px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.product-search button:hover,
.product-search button:focus-visible {
  background: var(--gold-500);
  color: var(--green-950);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.header-actions a > i {
  color: var(--green-900);
  font-size: 25px;
}

.header-actions strong {
  width: 19px;
  height: 19px;
  margin-left: 3px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: white;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green-900);
  font-size: 24px;
}

.primary-nav {
  background: var(--green-950);
  color: white;
}

.nav-inner {
  min-height: 50px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 3.1vw, 52px);
}

.nav-inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: color 160ms ease;
}

.nav-inner a:hover,
.nav-inner a:focus-visible,
.nav-inner a.active {
  color: var(--gold-300);
}

.nav-inner a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold-500);
}

.hero {
  position: relative;
  min-height: clamp(450px, 37vw, 575px);
  background: var(--cream-100);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shell {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-copy {
  width: min(610px, 44%);
  padding: 54px 0 68px 48px;
}

.hero-script {
  margin: 0 0 -5px;
  color: var(--gold-600);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(52px, 5.1vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-with {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 260px;
  margin: 8px 0 2px 110px;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: 27px;
}

.hero-with span {
  flex: 1;
  height: 2px;
  background: var(--gold-500);
}

.hero h1 {
  margin: 2px 0 12px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 540px;
  margin: 0;
  color: #243a31;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
  font-weight: 520;
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 27px;
}

.hero-promises span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 650;
}

.hero-promises i {
  color: var(--gold-600);
  font-size: 18px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.button-primary {
  background: var(--green-900);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 59, 42, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-700);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 15px;
  z-index: 2;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0, 59, 42, 0.22);
}

.hero-dots .active {
  background: var(--gold-500);
}

.category-section {
  padding-top: 20px;
  padding-bottom: 28px;
}

.ornate-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 13px;
}

.ornate-heading > span {
  width: 80px;
  height: 1px;
  background: var(--gold-500);
}

.ornate-heading > i {
  color: var(--gold-500);
  font-size: 9px;
}

.ornate-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 29px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-width: 0;
  padding: 10px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 45, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow);
}

.category-image {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border-radius: 12px 12px 8px 8px;
  background: var(--cream-100);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

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

.category-card h3 {
  min-height: 42px;
  margin: 12px 5px 3px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.category-card > span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-card:hover > span,
.category-card:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.product-section {
  padding: 8px 0 20px;
}

.section-heading-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.section-heading-row h2 {
  margin: 0;
  padding-right: 26px;
  background: #fffdf9;
  color: var(--green-950);
  font-size: 21px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading-row a {
  padding-left: 20px;
  background: #fffdf9;
  font-size: 13px;
  font-weight: 700;
}

.section-heading-row a i {
  color: var(--gold-600);
}

.rail-wrap {
  position: relative;
  padding-top: 15px;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  grid-template-rows: 1fr;
  gap: 15px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.collection-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover,
.collection-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.collection-visual {
  position: relative;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: var(--cream-100);
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.collection-card:hover .collection-visual img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 7px;
  border-radius: 5px;
  background: var(--green-900);
  color: white;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-tag.hot {
  background: var(--danger);
}

.favorite {
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-950);
}

.collection-info {
  padding: 11px 12px 13px;
}

.collection-info h3 {
  margin: 0 0 5px;
  color: var(--green-950);
  font-size: 14px;
}

.collection-info p {
  min-height: 34px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.product-price {
  min-height: 34px;
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 15px;
  font-weight: 800;
}

.collection-info strong {
  color: var(--gold-600);
  font-size: 11px;
}

.rail-button {
  position: absolute;
  top: 45%;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  box-shadow: 0 5px 14px rgba(0, 45, 32, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
}

.rail-button:hover,
.rail-button:focus-visible {
  background: var(--gold-500);
  color: var(--green-950);
}

.rail-button[hidden] {
  display: none;
}

.rail-button.previous {
  left: -18px;
}

.rail-button.next {
  right: -18px;
}

.benefit-banner {
  margin-top: 2px;
  margin-bottom: 18px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 13px;
  background: var(--green-950);
  color: white;
}

.benefit {
  min-width: 0;
  padding: 2px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid rgba(225, 199, 126, 0.38);
}

.benefit:last-child {
  border-right: 0;
}

.benefit > i {
  color: var(--gold-500);
  font-size: 45px;
}

.benefit h3 {
  margin: 0 0 3px;
  color: var(--gold-300);
  font-size: 18px;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-notice {
  margin-bottom: 18px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  border: 1px solid #eddfc9;
  border-radius: 13px;
  background: linear-gradient(100deg, #f8eddd, #fffaf2);
}

.payment-copy {
  padding-right: 35px;
  border-right: 1px solid #decbae;
}

.eyebrow {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-notice h2 {
  margin: 4px 0 5px;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 25px;
  text-transform: uppercase;
}

.checkout-notice p {
  margin: 0;
  color: #4f5e57;
  font-size: 13px;
  line-height: 1.5;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.payment-pills span {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #dfc9a5;
  border-radius: 7px;
  background: white;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 750;
}

.delivery-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.delivery-icon {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-500);
  font-size: 43px;
}

.assurance-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.assurance-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.assurance-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: var(--green-950);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.assurance-inner span:last-child {
  border-right: 0;
}

.assurance-inner i {
  color: var(--green-700);
  font-size: 21px;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.8fr 1fr;
  gap: 48px;
}

.footer-grid > div:not(:last-child) {
  padding-right: 28px;
  border-right: 1px solid rgba(225, 199, 126, 0.25);
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.55;
}

.footer-grid > div > a {
  display: block;
}

.footer-grid > div > a:hover,
.footer-grid > div > a:focus-visible {
  color: var(--gold-300);
}

.footer-grid .footer-contact-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-weight: 750;
}

.footer-newsletter form {
  max-width: 390px;
  height: 42px;
  margin-top: 16px;
  display: flex;
  overflow: hidden;
  border-radius: 5px;
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 13px;
  outline: none;
}

.footer-newsletter button {
  border: 0;
  padding: 0 17px;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.success-message {
  margin-top: 16px;
  color: var(--gold-300);
  font-weight: 700;
}

.rn-newsletter-status {
  margin-top: 12px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
}

.socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--green-950);
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(225, 199, 126, 0.22);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-bottom .shell {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

@media (min-width: 1000px) {
  .product-rail {
    grid-auto-columns: calc((100% - 75px) / 6);
  }
}

@media (max-width: 1180px) {
  .shell {
    width: min(1100px, calc(100% - 40px));
  }

  .header-main {
    grid-template-columns: 154px minmax(350px, 1fr) auto;
    gap: 14px;
  }

  .brand {
    width: 148px;
  }

  .product-search {
    grid-template-columns: 1fr 136px 50px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-actions a {
    gap: 7px;
    font-size: 12px;
  }

  .header-actions a > i {
    font-size: 22px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .hero-script {
    font-size: 53px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    padding: 7px 7px 11px;
  }

  .category-card h3 {
    font-size: 12px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .announcement-points span:nth-child(2),
  .announcement-points span:nth-child(3),
  .need-help {
    display: none;
  }

  .header-main {
    min-height: 122px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 68px 48px;
    gap: 0 16px;
  }

  .header-actions a span {
    display: none;
  }

  .brand {
    width: 148px;
    height: 64px;
  }

  .brand img {
    height: 74px;
  }

  .header-actions {
    gap: 18px;
  }

  .header-actions a > i {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }

  .product-search {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr 52px;
    height: 44px;
  }

  .product-search select {
    display: none;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-inner {
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .nav-inner a {
    min-height: 44px;
    justify-content: center;
  }

  .nav-inner a.active::after {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

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

  .hero-image {
    object-position: 63% center;
    opacity: 0.4;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 246, 237, 0.98) 0%, rgba(251, 246, 237, 0.84) 55%, rgba(251, 246, 237, 0.28) 100%);
  }

  .hero-shell {
    z-index: 2;
  }

  .hero-copy {
    width: min(560px, 85%);
    padding-left: 10px;
  }

  .hero-script {
    font-size: 58px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .benefit-banner {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 92px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(225, 199, 126, 0.38);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .checkout-notice {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .payment-copy {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid #decbae;
  }

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

  .assurance-inner span {
    min-height: 54px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .announcement-inner {
    justify-content: center;
  }

  .header-actions a:first-child {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero-image {
    height: 55%;
    top: auto;
    bottom: 0;
    opacity: 0.82;
    object-position: 67% center;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--cream-100) 0%, rgba(251, 246, 237, 0.98) 47%, rgba(251, 246, 237, 0.48) 78%, rgba(251, 246, 237, 0.12) 100%);
  }

  .hero-shell {
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 34px 0 0;
    text-align: center;
  }

  .hero-script {
    font-size: 49px;
  }

  .hero-with {
    width: 210px;
    margin: 6px auto 3px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    margin-inline: auto;
    font-size: 15px;
  }

  .hero-promises {
    justify-content: center;
    gap: 9px 15px;
    margin: 17px 0 20px;
  }

  .hero-promises span {
    font-size: 11px;
  }

  .button {
    min-height: 46px;
    padding-inline: 21px;
    font-size: 13px;
  }

  .hero-dots {
    bottom: 10px;
  }

  .ornate-heading > span {
    width: 26px;
  }

  .ornate-heading h2 {
    font-size: 20px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 7px 7px 12px;
    border-radius: 12px;
  }

  .category-card h3 {
    min-height: 35px;
    font-size: 12px;
  }

  .category-card > span {
    display: none;
  }

  .section-heading-row h2 {
    font-size: 17px;
  }

  .section-heading-row a {
    font-size: 11px;
  }

  .product-rail {
    grid-auto-columns: 76%;
    gap: 11px;
  }

  .rail-button {
    display: none;
  }

  .benefit-banner {
    padding: 11px 14px;
  }

  .benefit {
    padding: 13px 8px;
    gap: 15px;
  }

  .benefit > i {
    width: 46px;
    font-size: 34px;
  }

  .benefit h3 {
    font-size: 15px;
  }

  .checkout-notice {
    padding: 22px 18px;
  }

  .payment-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .delivery-copy {
    align-items: flex-start;
  }

  .delivery-icon {
    width: 62px;
    height: 62px;
    font-size: 29px;
  }

  .assurance-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 0;
  }

  .assurance-inner span {
    min-height: 48px;
    border: 0;
    font-size: 9px;
  }

  .assurance-inner span:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > div,
  .footer-grid > div:not(:last-child) {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(225, 199, 126, 0.25);
  }

  .footer-grid > div:last-child {
    border-bottom: 0;
  }

  .footer-bottom .shell {
    padding: 13px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
