:root {
  --ink: #11110f;
  --paper: #f5f1e8;
  --white: #fff;
  --coral: #ff5f46;
  --lime: #d7f255;
  --blue: #4669f4;
  --line: rgba(17, 17, 15, 0.18);
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.promo {
  display: grid;
  place-items: center;
  min-height: 32px;
  padding: 6px var(--pad);
  color: var(--white);
  background: var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo p {
  margin: 0;
}

.promo span {
  color: var(--lime);
  padding: 0 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.86;
}

.brand > span {
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 1000;
  letter-spacing: -0.07em;
  transform: scaleX(0.86);
}

.brand small {
  margin-top: 6px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  justify-self: start;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

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

.icon-button,
.bag-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 44px;
  height: 44px;
}

.icon-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.menu-button {
  display: none;
}

.bag-button {
  display: flex;
  gap: 9px;
  height: 42px;
  padding: 0 6px 0 12px;
  font-size: 13px;
  font-weight: 700;
}

.bag-count {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
}

.mobile-menu,
.menu-overlay,
.search-panel {
  position: fixed;
  visibility: hidden;
  opacity: 0;
}

.search-panel {
  inset: 109px 0 auto;
  z-index: 45;
  padding: 32px var(--pad);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transform: translateY(-15px);
  transition: 180ms ease;
}

.search-panel.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.search-form {
  max-width: 780px;
  margin: auto;
}

.search-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
}

.search-form > div {
  display: flex;
}

.search-form input {
  min-width: 0;
  flex: 1;
  height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 0;
}

.search-form button {
  padding: 0 26px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(78vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #24311f;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.1) 58%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: clamp(70px, 9vw, 130px) var(--pad);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "✦";
  margin-right: 8px;
}

.hero h1,
.section h2,
.story h2,
.combo h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(49px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 26px 0 32px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-dark:hover {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.hero-sticker {
  position: absolute;
  right: clamp(24px, 5vw, 75px);
  bottom: clamp(32px, 6vw, 80px);
  z-index: 2;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}

.hero-sticker::before,
.hero-sticker::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px dashed currentColor;
  border-radius: inherit;
}

.hero-sticker strong {
  font-size: 23px;
}

.hero-sticker span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ticker {
  overflow: hidden;
  padding: 15px 0;
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker > div {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.ticker span {
  padding-right: 2ch;
}

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

.section {
  padding: clamp(80px, 10vw, 150px) var(--pad);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.section h2,
.story h2,
.combo h2,
.newsletter h2 {
  font-size: clamp(44px, 6vw, 82px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(260px, 34vw));
  gap: 14px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  background: #d9d5cc;
}

.collection-card--tall {
  grid-row: 1 / 3;
}

.collection-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.collection-card > span {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
}

.collection-card > span b {
  font-weight: 400;
}

.collection-card--color {
  display: grid;
  place-items: center;
  background: var(--coral);
}

.collection-card--color::before {
  position: absolute;
  width: 230px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(17, 17, 15, 0.5);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(255, 255, 255, 0.08),
    0 0 0 64px rgba(255, 255, 255, 0.08);
}

.collection-card--color > div {
  position: relative;
  z-index: 2;
  text-align: center;
}

.collection-card--color small,
.collection-card--color b {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card--color strong {
  display: block;
  margin: 16px 0 25px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.products {
  background: var(--white);
}

.section-head--row {
  align-items: flex-end;
}

.rail-controls {
  display: flex;
  gap: 6px;
}

.rail-controls button {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.product-rail {
  display: grid;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.product-image {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: #efebe4;
}

.product-image--yellow {
  background: #f3e879;
}

.product-image--blue {
  background: #dbe1ff;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag--dark {
  color: var(--white);
  background: var(--ink);
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 2px 14px;
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.product-info p {
  margin: 0;
  color: #69675f;
  font-size: 11px;
}

.product-info strong {
  font-size: 16px;
}

.add-button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 160ms ease;
}

.add-button:hover,
.add-button.added {
  color: var(--white);
  background: var(--ink);
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--blue);
}

.story-image {
  min-height: 620px;
}

.story-image img {
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 120px);
  color: var(--white);
}

.story-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0 30px;
  font-size: 17px;
  line-height: 1.6;
}

.story ul {
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  list-style: none;
}

.story li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.story li span {
  display: inline-block;
  width: 50px;
  opacity: 0.7;
  font-size: 10px;
}

.story .button {
  align-self: flex-start;
}

.combo {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: clamp(80px, 10vw, 150px) var(--pad);
  background: var(--lime);
  border-bottom: 1px solid var(--ink);
}

.combo-copy > p:last-child {
  max-width: 450px;
  margin-top: 25px;
  line-height: 1.6;
}

.combo-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}

.combo-options a {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 18px;
  border: 1px solid var(--ink);
  border-right: 0;
  text-align: center;
  transition: transform 180ms ease;
}

.combo-options a:last-child {
  border-right: 1px solid var(--ink);
}

.combo-options a:hover {
  transform: translateY(-5px);
}

.combo-options .featured {
  min-height: 325px;
  color: var(--white);
  background: var(--ink);
}

.combo-options em {
  position: absolute;
  top: 18px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.combo-options span {
  font-size: 13px;
  text-transform: uppercase;
}

.combo-options span b {
  display: block;
  font-size: 48px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.combo-options strong {
  margin: 20px 0 8px;
  font-size: 24px;
}

.combo-options small {
  font-size: 10px;
}

.instagram {
  background: var(--paper);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.social-grid a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.social-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.social-grid span {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}

.social-grid a:hover img {
  transform: scale(1.04);
}

.newsletter {
  padding: clamp(80px, 9vw, 130px) var(--pad);
  color: var(--white);
  background: var(--coral);
  text-align: center;
}

.newsletter form {
  max-width: 600px;
  display: flex;
  margin: 45px auto 0;
  border-bottom: 2px solid var(--ink);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 58px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
}

.newsletter input::placeholder {
  color: rgba(17, 17, 15, 0.65);
}

.newsletter button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-note {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 75px var(--pad) 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand > span {
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 1000;
  letter-spacing: -0.09em;
}

.footer-brand p {
  max-width: 290px;
  margin: 12px 0;
  color: #aaa89f;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: #77756d;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 13px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid #34332f;
  color: #85837b;
  font-size: 10px;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  padding: 15px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.mobile-tabs {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    height: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    justify-self: start;
  }

  .search-button,
  .bag-button > span {
    display: none;
  }

  .bag-button {
    padding: 0;
  }

  .search-panel {
    inset: 98px 0 auto;
  }

  .mobile-menu {
    inset: 0 auto 0 0;
    z-index: 110;
    width: min(88vw, 420px);
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--lime);
    transform: translateX(-100%);
    transition: 260ms ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .menu-overlay {
    inset: 0;
    z-index: 105;
    background: rgba(0, 0, 0, 0.45);
    transition: 220ms ease;
  }

  .menu-overlay.open {
    visibility: visible;
    opacity: 1;
  }

  .menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .close-menu {
    font-size: 28px;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.35);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .mobile-menu nav span {
    font-weight: 400;
  }

  .menu-instagram {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
  }

  .hero {
    min-height: calc(100svh - 98px);
  }

  .hero-copy {
    padding-bottom: 68px;
  }

  .hero-sticker {
    width: 92px;
    right: 20px;
    bottom: 32px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 70vw 52vw;
  }

  .collection-card--tall {
    grid-row: auto;
  }

  .collection-card--color {
    grid-column: auto;
  }

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

  .story-image {
    min-height: 75vw;
  }

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

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  body {
    padding-bottom: 64px;
  }

  .promo {
    min-height: 30px;
    font-size: 9px;
  }

  .header-inner {
    padding-inline: 12px;
  }

  .brand > span {
    font-size: 28px;
  }

  .brand small {
    font-size: 5px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero > img {
    object-position: 51% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 75%);
  }

  .hero-copy {
    padding: 54px 20px 42px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    margin: 18px 0 24px;
    font-size: 15px;
  }

  .hero-sticker {
    display: none;
  }

  .button {
    width: 100%;
  }

  .ticker {
    padding-block: 12px;
    font-size: 10px;
  }

  .section {
    padding-block: 74px;
  }

  .section-head {
    display: block;
    margin-bottom: 32px;
  }

  .section h2,
  .story h2,
  .combo h2,
  .newsletter h2 {
    font-size: 46px;
  }

  .section-head .text-link {
    margin-top: 25px;
  }

  .section-head--row {
    display: flex;
    align-items: flex-end;
  }

  .section-head--row .rail-controls {
    display: none;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 82vw 62vw;
    gap: 6px;
  }

  .collection-card > span {
    inset: auto 6px 6px;
    padding: 13px 11px;
    font-size: 13px;
  }

  .collection-card--color::before {
    width: 120px;
  }

  .collection-card--color strong {
    font-size: 30px;
  }

  .collection-card--color small {
    display: none;
  }

  .product-rail {
    width: calc(100% + 20px);
    grid-auto-columns: 78vw;
    padding-right: 20px;
  }

  .product-image {
    aspect-ratio: 0.92;
  }

  .story-image {
    min-height: 100vw;
  }

  .story-copy {
    padding: 68px 20px;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .combo {
    padding-inline: 20px;
    overflow: hidden;
  }

  .combo-options {
    width: calc(100% + 10px);
    margin-left: -5px;
  }

  .combo-options a {
    min-height: 210px;
    padding: 20px 6px;
  }

  .combo-options .featured {
    min-height: 250px;
  }

  .combo-options span b {
    font-size: 38px;
  }

  .combo-options strong {
    font-size: 19px;
  }

  .combo-options small {
    font-size: 8px;
  }

  .social-grid {
    gap: 4px;
  }

  .instagram .text-link {
    margin-top: 20px;
  }

  .newsletter form {
    display: block;
    border: 0;
  }

  .newsletter input {
    width: 100%;
    border-bottom: 2px solid var(--ink);
  }

  .newsletter button {
    width: 100%;
    height: 54px;
    margin-top: 12px;
    color: var(--white);
    background: var(--ink);
  }

  footer {
    padding: 60px 20px 24px;
    gap: 46px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }

  .mobile-tabs {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--paper);
    border-top: 1px solid var(--ink);
  }

  .mobile-tabs a,
  .mobile-tabs button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: 0;
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-tabs svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linejoin: round;
  }

  .mobile-bag-count {
    position: absolute;
    top: 5px;
    right: calc(50% - 22px);
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    border-radius: 50%;
    font-size: 9px;
  }

  .toast {
    right: 12px;
    bottom: 76px;
    left: 12px;
    text-align: center;
  }
}

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