@font-face {
  font-family: "Legameon Inter";
  src: url("../_assets/legameon.com/129d26b56bdc78-inter_n4.b2a3f24c19b4de56e8871f609e73ca7f6d2e2bb9.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Legameon Inter";
  src: url("../_assets/legameon.com/24cd4441d61673-inter_n5.d7101d5e168594dd06f56f290dd759fba5431d97.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Legameon Inter";
  src: url("../_assets/legameon.com/f467fb30f31d8e-inter_n7.02711e6b374660cfc7915d1afc1c204e633421e4.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #181b19;
  --muted: #646b67;
  --line: #d9dedb;
  --green: #143f35;
  --green-bright: #256554;
  --mint: #dff0e9;
  --coral: #e95d3f;
  --white: #ffffff;
  --page-width: 1320px;
  --side-space: 40px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Legameon Inter", "Noto Sans Thai", Thonburi, Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body,
button,
input {
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.page-width {
  width: min(var(--page-width), calc(100% - (var(--side-space) * 2)));
  margin-inline: auto;
}

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

.hidden {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px var(--side-space);
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 96%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 22px rgb(20 63 53 / 7%);
}

.site-header__inner {
  width: min(var(--page-width), calc(100% - (var(--side-space) * 2)));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 32px;
}

.wordmark {
  width: fit-content;
  color: var(--green);
  font-family: "Legameon Inter", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.footer-links a,
.site-footer__bottom a {
  position: relative;
  text-decoration: none;
}

.desktop-nav a {
  padding-block: 8px;
  color: #303532;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-action {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
}

.header-action--shop {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.header-action--shop:hover,
.header-action--shop:focus-visible {
  background: var(--green);
  color: var(--white);
}

.header-action--icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 2px;
}

.header-action--icon:hover,
.header-action--icon:focus-visible {
  background: #edf3f0;
}

.header-action--icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-action--icon .cart-bubble:not(.visually-hidden) {
  position: absolute !important;
  top: 3px;
  right: 2px;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  display: grid;
  place-items: center;
  overflow: visible !important;
  clip: auto !important;
  border: 2px solid var(--white) !important;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  white-space: normal !important;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu .close-icon,
.mobile-menu[open] .menu-icon {
  display: none;
}

.mobile-menu[open] .close-icon {
  display: block;
}

.mobile-menu__panel {
  position: absolute;
  z-index: 90;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 18px var(--side-space) 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 32px rgb(20 63 53 / 10%);
}

.mobile-menu__panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu__panel a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 440px;
  height: min(48vw, 485px);
  overflow: hidden;
  background: #c7c3b8;
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 52% center;
}

.hero__shade {
  background: linear-gradient(90deg, rgb(10 20 16 / 74%) 0%, rgb(10 20 16 / 50%) 31%, rgb(10 20 16 / 9%) 61%, transparent 78%);
}

.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 58px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.hero p {
  max-width: 565px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 90%);
  font-size: 19px;
  line-height: 1.65;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg,
.text-link svg,
.newsletter-form button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg,
.newsletter-form button:hover svg,
.newsletter-form button:focus-visible svg {
  transform: translateX(3px);
}

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

.button--coral:hover,
.button--coral:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
}

.product-section {
  padding-block: 68px 118px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-number {
  margin: 0 0 14px;
  color: var(--green-bright);
  font-family: "Legameon Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.section-number--light {
  color: #8ec9b8;
}

.section-heading h2,
.story h2,
.referral h2,
.newsletter h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.16;
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 660px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 38px 18px;
}

.product-card {
  min-width: 0;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}

.product-card--featured {
  grid-column: span 6;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f5f3;
}

.product-card--featured .product-card__media {
  aspect-ratio: 2 / 1;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
}

.product-card__media:hover img,
.product-card__media:focus-visible img {
  transform: scale(1.025);
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 19px 2px 0;
}

.product-card__meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.product-card--featured h3 {
  font-size: 23px;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
  color: var(--green-bright);
}

.product-card__purchase {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.product-card__price {
  margin: 0;
  font-family: "Legameon Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.product-card form {
  margin: 0;
}

.add-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--white);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.add-button:hover,
.add-button:focus-visible {
  background: var(--green);
  color: var(--white);
}

.add-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.add-button--icon {
  width: 40px;
  padding: 0;
}

.story {
  background: var(--green);
  color: var(--white);
}

.story__inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 100px;
  padding-block: 96px;
}

.story h2 {
  max-width: 580px;
  font-size: 51px;
}

.story__copy > p {
  max-width: 610px;
  margin: 0 0 42px;
  color: rgb(255 255 255 / 78%);
  font-size: 18px;
  line-height: 1.75;
}

.story__copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 24%);
  list-style: none;
}

.story__copy li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgb(255 255 255 / 24%);
  font-size: 15px;
}

.story__copy li span {
  color: #8ec9b8;
  font-family: "Legameon Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.referral {
  background: var(--mint);
}

.referral__inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 72px;
  padding-block: 88px;
}

.referral__copy > p:not(.section-number) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #4c5d56;
  font-size: 17px;
  line-height: 1.72;
}

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

.button--green:hover,
.button--green:focus-visible {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.referral__media {
  position: relative;
  height: 434px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2px;
  overflow: hidden;
  background: rgb(20 63 53 / 12%);
  color: var(--ink);
  text-decoration: none;
}

.referral__image {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
}

.referral__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
}

.referral__media:hover .referral__image img,
.referral__media:focus-visible .referral__image img {
  transform: scale(1.025);
}

.referral__rate {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 176px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 3px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 14px 38px rgb(20 63 53 / 16%);
}

.referral__rate strong {
  color: var(--coral);
  font-family: "Legameon Inter", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.referral__rate span {
  margin-top: 8px;
  color: #52615b;
  font-size: 12px;
  line-height: 1.35;
}

.newsletter {
  background: #1b211e;
  color: var(--white);
}

.newsletter__inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .78fr);
  align-items: center;
  gap: 100px;
  padding-block: 70px;
}

.newsletter h2 {
  max-width: 650px;
  font-size: 35px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 9px;
  color: rgb(255 255 255 / 67%);
  font-size: 12px;
}

.newsletter-form__row {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgb(255 255 255 / 52%);
}

.newsletter-form input {
  min-width: 0;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 17px;
}

.newsletter-form input::placeholder {
  color: rgb(255 255 255 / 44%);
}

.newsletter-form__row:focus-within {
  border-color: var(--white);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 0 0 18px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form__status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #b7d9ce;
  font-size: 12px;
  line-height: 1.55;
}

.newsletter-form__status.is-error {
  color: #ffad9c;
}

.site-footer {
  background: var(--white);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(145px, .6fr));
  gap: 54px;
  padding-block: 76px 64px;
}

.wordmark--footer {
  font-size: 27px;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links h2 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  text-decoration: none;
}

dialog[data-testid="cart-drawer-dialog"] {
  font-family: "Legameon Inter", "Noto Sans Thai", Thonburi, Tahoma, Arial, sans-serif;
}

dialog[data-testid="cart-drawer-dialog"] .static-cart-action--primary,
.static-cart-dialog__action {
  background: var(--green);
}

dialog[data-testid="cart-drawer-dialog"] .static-cart-action--secondary {
  border-color: var(--green);
  color: var(--green);
}

.static-cart-toast {
  border-radius: 3px;
  background: var(--green);
}

@media (max-width: 1080px) {
  :root {
    --side-space: 28px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

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

  .product-card,
  .product-card--featured {
    grid-column: span 4;
  }

  .product-card--featured .product-card__media {
    aspect-ratio: 1 / 1;
  }

  .product-card--featured h3 {
    font-size: 17px;
  }

  .story__inner {
    gap: 54px;
  }

  .story h2 {
    font-size: 42px;
  }

  .referral__inner {
    grid-template-columns: minmax(0, .86fr) minmax(430px, 1.14fr);
    gap: 42px;
  }

  .newsletter__inner {
    gap: 60px;
  }

  .site-footer__main {
    grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(130px, .7fr));
    gap: 34px;
  }
}

@media (max-width: 780px) {
  :root {
    --side-space: 20px;
    --header-height: 68px;
  }

  .announcement {
    min-height: 32px;
  }

  .announcement p {
    font-size: 11px;
  }

  .header-action--shop {
    display: none;
  }

  .hero {
    min-height: 430px;
    height: calc(100svh - 150px);
    max-height: 540px;
  }

  .hero__image {
    object-position: 56% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgb(9 19 15 / 77%) 0%, rgb(9 19 15 / 52%) 58%, rgb(9 19 15 / 13%) 100%);
  }

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

  .hero p {
    max-width: 500px;
    font-size: 17px;
  }

  .product-section {
    padding-block: 58px 84px;
  }

  .section-heading h2,
  .story h2,
  .referral h2 {
    font-size: 34px;
  }

  .product-card,
  .product-card--featured {
    grid-column: span 6;
  }

  .story__inner,
  .referral__inner,
  .newsletter__inner {
    grid-template-columns: 1fr;
  }

  .story__inner {
    min-height: 0;
    gap: 46px;
    padding-block: 74px;
  }

  .story__copy > p {
    margin-bottom: 30px;
  }

  .referral__inner {
    min-height: 0;
    gap: 52px;
    padding-block: 72px;
  }

  .referral__copy > p:not(.section-number) {
    max-width: 650px;
  }

  .referral__media {
    height: 390px;
  }

  .newsletter__inner {
    min-height: 0;
    gap: 42px;
    padding-block: 62px;
  }

  .newsletter h2 {
    max-width: 590px;
    font-size: 31px;
  }

  .site-footer__main {
    grid-template-columns: 1.3fr 1fr;
    gap: 46px 28px;
    padding-block: 60px 52px;
  }
}

@media (max-width: 540px) {
  :root {
    --side-space: 16px;
    --header-height: 64px;
  }

  .wordmark {
    font-size: 20px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-action--icon {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 410px;
    height: calc(100svh - 135px);
    max-height: 520px;
  }

  .hero__image {
    object-position: 53% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgb(9 19 15 / 82%) 0%, rgb(9 19 15 / 55%) 76%, rgb(9 19 15 / 24%) 100%);
  }

  .hero__content {
    justify-content: flex-end;
    padding-block: 46px;
  }

  .hero h1 {
    max-width: 395px;
    font-size: 37px;
    line-height: 1.12;
  }

  .hero p {
    max-width: 365px;
    margin-top: 17px;
    font-size: 15px;
  }

  .button {
    min-height: 48px;
    margin-top: 24px;
  }

  .product-section {
    padding-block: 48px 72px;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .story h2,
  .referral h2 {
    font-size: 30px;
  }

  .section-heading .text-link {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 2px;
  }

  .section-heading .text-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .product-grid {
    gap: 34px 10px;
  }

  .product-card__body {
    padding-top: 14px;
  }

  .product-card__meta {
    min-height: 34px;
    font-size: 10px;
  }

  .product-card h3,
  .product-card--featured h3 {
    font-size: 14px;
  }

  .product-card__purchase {
    gap: 8px;
    padding-top: 13px;
  }

  .product-card__price {
    font-size: 13px;
  }

  .add-button--icon {
    width: 36px;
    min-height: 36px;
  }

  .story__inner {
    gap: 38px;
    padding-block: 62px 66px;
  }

  .story__copy > p,
  .referral__copy > p:not(.section-number) {
    font-size: 15px;
  }

  .story__copy li {
    grid-template-columns: 36px 1fr;
    gap: 8px;
    font-size: 13px;
  }

  .referral__inner {
    gap: 38px;
    padding-block: 62px 66px;
  }

  .referral__media {
    height: 300px;
  }

  .referral__rate {
    right: 10px;
    bottom: 10px;
    width: 150px;
    min-height: 99px;
    padding: 14px;
  }

  .referral__rate strong {
    font-size: 34px;
  }

  .newsletter__inner {
    padding-block: 54px 48px;
  }

  .newsletter h2 {
    font-size: 27px;
  }

  .newsletter-form button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .newsletter-form button {
    width: 46px;
    justify-content: flex-end;
    padding-left: 12px;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 18px;
    padding-block: 52px 44px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .footer-links:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    min-height: 66px;
  }

  dialog[data-testid="cart-drawer-dialog"] {
    width: 100vw;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
