:root {
  --bg: #ffffff;
  --bg-muted: #f4f5f7;
  --text: #1a1a1f;
  --muted: rgba(26, 26, 31, 0.72);
  --border: rgba(26, 26, 31, 0.12);
  --card: #ffffff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
  /* Primary accent (theme): green */
  --red: #16a34a;
  --dark: #111114;
  --container-max: 1320px;
  --container-gutter: 24px;
  --container-gutter-sm: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

.container {
  width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
}

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

/* Topbar */
.topbar {
  background: #f8f8f9;
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.topbar__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  flex: 0 0 auto;
}

.topbar__text {
  margin: 0;
  font-size: 12px;
  color: rgba(26, 26, 31, 0.78);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.brand__logo {
  display: block;
  height: auto;
  width: 150px;
  max-width: 100%;
}

.search {
  display: grid;
  grid-template-columns: 1fr 46px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.search__input {
  border: 0;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.search__btn {
  border: 0;
  background: #f2f2f4;
  cursor: pointer;
  font-size: 16px;
}

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

.header-actions__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(26, 26, 31, 0.84);
}

.header-actions__icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  position: relative;
}

.header-actions__icon > span[aria-hidden="true"] {
  grid-area: 1 / 1;
}

/* Tiny cart counter badge (top-right of cart icon) */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.nav {
  border-top: 1px solid var(--border);
  background: #fff;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.navlinks__link {
  font-size: 13px;
  color: rgba(26, 26, 31, 0.78);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.navlinks__item {
  display: inline-flex;
}

.navlinks__item--dropdown {
  position: relative;
  align-items: center;
}

.navlinks__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navlinks__chev {
  font-size: 12px;
  opacity: 0.7;
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -10px;
  min-width: 190px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  display: none;
  z-index: 60;
}

.dropdown::before {
  /* Prevent "hover gap" between the nav link and the menu */
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.navlinks__item--dropdown:hover .dropdown,
.navlinks__item--dropdown:focus-within .dropdown {
  display: block;
}

.dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(26, 26, 31, 0.86);
}

.dropdown__item:hover,
.dropdown__item:focus {
  outline: none;
  background: rgba(22, 163, 74, 0.1);
  color: var(--text);
}

.navlinks__link.is-active {
  color: var(--text);
  border-bottom-color: var(--red);
  font-weight: 800;
}

.nav__phone {
  font-size: 13px;
  color: rgba(26, 26, 31, 0.76);
}

/* Typography + sections */
.section {
  padding: 42px 0;
}

.section--muted {
  background: var(--bg-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
}

.h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 90ch;
  font-size: 14px;
}

.link {
  font-size: 13px;
  color: rgba(26, 26, 31, 0.78);
}

.link:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 26px 0 34px;
  background: #fff;
}

.hero__inner {
  display: block;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.hero__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(26, 26, 31, 0.72);
}

.hero__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.3vw, 44px);
  letter-spacing: -0.03em;
}

.hero__accent {
  color: var(--red);
  font-weight: 900;
}

.hero__sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.hero__grid .hero__img {
  height: 450px;
  object-fit: cover;
}

/* Layout blocks */
.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}

.panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(26, 26, 31, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

/* Grid + cards */
.grid {
  display: grid;
  gap: 16px;
}

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

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.product {
  padding: 14px 14px 16px;
  position: relative;
  text-align: center;
}

.product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
}

.product__badge--alt {
  background: #111114;
}

.product__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 8px auto 10px;
  border-radius: 10px;
  background: #fff;
}

.product__name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(26, 26, 31, 0.8);
  font-size: 12px;
}

.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
}

.qty__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 31, 0.72);
}

.qty__control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f3f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.qty__btn {
  width: 28px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(26, 26, 31, 0.9);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

.qty__btn:hover,
.qty__btn:focus-visible {
  outline: none;
  background: rgba(22, 163, 74, 0.12);
}

.qty__value {
  min-width: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
}

.product__btn {
  text-transform: uppercase;
}

.product__price {
  font-weight: 900;
  color: var(--text);
}

.product__strength {
  background: #f3f3f6;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: rgba(26, 26, 31, 0.8);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
}

.tab.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  font-weight: 900;
}

/* Features */
.features {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.feature__rating {
  font-size: 12px;
  color: #19a24b;
  margin-bottom: 8px;
}

.feature__title {
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
}

.feature__text {
  font-size: 12px;
  color: rgba(26, 26, 31, 0.72);
  line-height: 1.5;
}

/* How */
.how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.how__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  padding: 12px;
  text-align: center;
}

.how__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.how__title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 13px;
}

/* FAQ */
.faq {
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.faq__item + .faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  background: #fff;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq__chev {
  opacity: 0.7;
  transition: transform 140ms ease;
}

.faq__item.is-open .faq__chev {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 14px 14px;
  color: rgba(26, 26, 31, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #121215;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 36px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer__logo {
  width: 170px;
  height: auto;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

.footer__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
  max-width: 50ch;
}

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

.footer__title {
  font-weight: 900;
  margin-bottom: 10px;
}

.footer__link,
.footer__a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.footer__a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.footer__pay {
  white-space: nowrap;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, box-shadow 120ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(22, 163, 74, 0.45);
  outline-offset: 3px;
}

.btn-solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.btn-small {
  width: 100%;
  padding: 10px 12px;
  font-size: 12px;
}

/* Age Gate */
.agegate-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.agegate-modal {
  width: min(620px, 100%);
  background: var(--card);
  color: #111114;
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 44px 44px 38px;
  text-align: center;
}

.agegate-brand {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.agegate-logo {
  display: block;
  max-width: 320px;
  width: min(320px, 65vw);
  height: auto;
}

.agegate-site {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 26px;
  color: #1a1a1f;
}

.agegate-question {
  margin: 26px 0 18px;
  font-size: 14px;
  color: rgba(17, 17, 20, 0.72);
}

.agegate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 0 14px;
}

.btn-ghost {
  background: #2b2b30;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-primary {
  background: #2b2b30;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-primary:hover,
.btn-ghost:hover {
  filter: brightness(1.05);
}

.agegate-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(17, 17, 20, 0.78);
  user-select: none;
}

.agegate-remember input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #2b2b30;
}

/* Prevent scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Account modal */
.account-overlay {
  position: fixed;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  place-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  overflow: hidden;
}

.account-modal {
  width: min(760px, 100%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  border-radius: 4px;
  padding: 44px 44px 34px;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow: auto;
  font-size: 14px;
}

.account-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 20, 0.65);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}

.account-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(17, 17, 20, 0.9);
}

.account-title {
  margin: 0 0 18px;
  font-size: 36px;
  letter-spacing: -0.03em;
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-label {
  font-weight: 900;
  font-size: 12px;
  color: rgba(26, 26, 31, 0.82);
}

.account-label__req {
  color: #b91c1c;
}

.account-input {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.account-input:focus {
  border-color: rgba(22, 163, 74, 0.65);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
}

.account-captcha {
  height: 78px;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  width: 420px;
  max-width: 100%;
}

.account-captcha__box {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 3px solid rgba(0, 0, 0, 0.45);
  background: #fff;
  flex: 0 0 auto;
}

.account-captcha__text {
  font-weight: 900;
  font-size: 16px;
  color: rgba(17, 17, 20, 0.85);
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.account-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(17, 17, 20, 0.72);
  user-select: none;
}

.account-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2b2b30;
}

.account-link {
  font-weight: 900;
  color: rgba(17, 17, 20, 0.85);
}

.account-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-submit {
  height: 64px;
  border-radius: 4px;
  background: #1b1e22;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border: 0;
  cursor: pointer;
}

.account-submit:hover {
  filter: brightness(1.05);
}

.account-register {
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  padding-top: 10px;
}

@media (max-width: 520px) {
  .account-modal {
    padding: 28px 18px 22px;
  }

  .account-title {
    font-size: 30px;
  }

  .account-submit {
    height: 58px;
    font-size: 16px;
  }

  .account-register {
    font-size: 20px;
  }
}

/* Floating widgets */
.float {
  position: fixed;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #111114;
  z-index: 40;
  cursor: pointer;
}

.float--msg {
  left: 18px;
  bottom: 18px;
  background: var(--red);
  color: #fff;
  border-color: rgba(22, 163, 74, 0.6);
}

.float--top {
  right: 18px;
  bottom: 18px;
  background: var(--red);
  color: #fff;
  border-color: rgba(22, 163, 74, 0.6);
}

/* Cart page */
.cart-page {
  padding-top: 26px;
}

.cart-crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  margin-bottom: 22px;
  color: rgba(26, 26, 31, 0.55);
}

.cart-crumbs__item.is-active {
  color: var(--red);
}

.cart-crumbs__sep {
  opacity: 0.55;
}

.cart {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: start;
}

.cart-table {
  overflow: hidden;
}

.cart-table__head {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.6fr 0.6fr;
  gap: 14px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 31, 0.72);
}

.cart-table__body {
  padding: 0 16px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.6fr 0.6fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: center;
}

.cart-row__product {
  display: grid;
  grid-template-columns: 26px 62px 1fr;
  gap: 12px;
  align-items: center;
}

.cart-row__remove {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: rgba(26, 26, 31, 0.7);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.cart-row__remove:hover {
  border-color: rgba(22, 163, 74, 0.55);
  color: var(--text);
}

.cart-row__img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-row__name {
  font-weight: 900;
  font-size: 13px;
  color: var(--text);
}

.cart-row__price,
.cart-row__subtotal {
  font-weight: 900;
  color: var(--text);
}

.cart-row__subtotal {
  justify-self: end;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.cart-qty__btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  color: rgba(26, 26, 31, 0.9);
}

.cart-qty__btn:hover {
  background: rgba(22, 163, 74, 0.10);
}

.cart-qty__value {
  width: 44px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--text);
  border-left: 1px solid rgba(0, 0, 0, 0.10);
  border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.cart-coupon {
  margin-top: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.cart-coupon__input {
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  font-size: 13px;
  outline: none;
}

.cart-totals {
  padding: 18px;
}

.cart-totals__title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}

.cart-totals__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  color: rgba(26, 26, 31, 0.84);
  margin: 10px 0;
}

.cart-totals__row--total {
  font-size: 20px;
  color: var(--text);
  margin-top: 14px;
}

.cart-totals__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.10);
  margin: 14px 0;
}

.cart-totals__subtitle {
  font-weight: 900;
  margin: 6px 0 8px;
}

.cart-totals__muted {
  color: rgba(26, 26, 31, 0.70);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.cart-totals__field {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.cart-totals__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(26, 26, 31, 0.72);
}

.cart-totals__select,
.cart-totals__input {
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.cart-totals__update {
  width: 100%;
  margin-top: 6px;
}

.cart-totals__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.cart-totals__paychip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fff;
  font-weight: 900;
  font-size: 12px;
  color: rgba(26, 26, 31, 0.78);
}

.cart-totals__checkout {
  width: 100%;
  margin-top: 14px;
  text-align: center;
}

.cart-empty {
  padding: 18px;
  text-align: center;
}

.cart-empty__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.cart-empty__text {
  color: rgba(26, 26, 31, 0.72);
  margin-bottom: 12px;
}

/* Checkout page */
.checkout-page {
  padding-top: 18px;
}

.checkout-notices {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.checkout-notice {
  color: rgba(26, 26, 31, 0.72);
  font-weight: 800;
}

.checkout-notice__link {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-notice__strong {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.checkout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: start;
}

.checkout__title {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

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

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

.field__label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(26, 26, 31, 0.82);
}

.field__req {
  color: var(--red);
}

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

.field__input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.field__textarea {
  height: auto;
  padding: 10px 12px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(26, 26, 31, 0.8);
  font-weight: 800;
}

.check__box {
  margin-top: 2px;
}

.order {
  padding: 18px;
}

.order__title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}

.order__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 31, 0.7);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  margin-bottom: 12px;
}

.order__items {
  display: grid;
  gap: 12px;
}

.order-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
}

.order-item__img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.order-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.order-item__name {
  font-weight: 900;
  color: var(--text);
  font-size: 13px;
}

.order-item__remove {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: rgba(26, 26, 31, 0.7);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.order-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.order-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.order-qty__btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  color: rgba(26, 26, 31, 0.9);
}

.order-qty__btn:hover {
  background: rgba(22, 163, 74, 0.10);
}

.order-qty__value {
  width: 40px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--text);
  border-left: 1px solid rgba(0, 0, 0, 0.10);
  border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.order-item__price {
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}

.order-item__ex {
  color: rgba(26, 26, 31, 0.65);
  font-weight: 800;
  font-size: 12px;
}

.order__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.10);
  margin: 14px 0;
}

.order__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  color: rgba(26, 26, 31, 0.84);
  margin: 10px 0;
}

.order__row--total {
  font-size: 20px;
  color: var(--text);
}

.order__shiptitle {
  font-weight: 900;
  margin-bottom: 6px;
}

.order__shiptext {
  color: rgba(26, 26, 31, 0.70);
  font-size: 13px;
  line-height: 1.55;
}

.order__subtitle {
  font-weight: 900;
  margin-bottom: 10px;
}

.pay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.pay__chips {
  margin-left: auto;
  color: rgba(26, 26, 31, 0.6);
  font-weight: 900;
  font-size: 12px;
}

.order__muted {
  color: rgba(26, 26, 31, 0.70);
  font-size: 13px;
  margin: 2px 0 10px;
}

.card-fields {
  margin: 10px 0 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.02);
}

.card-fields[hidden] {
  display: none !important;
}

.card-fields__title {
  font-weight: 900;
  margin-bottom: 10px;
}

.card-fields__grid {
  display: grid;
  gap: 12px;
}

.check--terms a {
  color: var(--red);
  font-weight: 900;
}

.order__error {
  margin-top: 8px;
  color: #b91c1c;
  font-weight: 900;
  font-size: 13px;
}

.order__place {
  width: 100%;
  margin-top: 14px;
}

.order-empty {
  padding: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  text-align: center;
}

.order-empty__title {
  font-weight: 900;
  margin-bottom: 6px;
}

.order-empty__text {
  color: rgba(26, 26, 31, 0.72);
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .header__inner {
    grid-template-columns: 140px 1fr;
    grid-template-areas:
      "brand actions"
      "search search";
  }

  .brand {
    grid-area: brand;
  }

  .search {
    grid-area: search;
  }

  .header-actions {
    grid-area: actions;
  }

  .header-actions__label {
    display: none;
  }

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

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

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

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

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

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

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

  .cart-table__head,
  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-row__subtotal {
    justify-self: start;
  }

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

  .checkout-form__row--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container-max), calc(100% - (var(--container-gutter-sm) * 2)));
  }

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

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

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


