:root {
  color-scheme: light;
  --ink: #090c0a;
  --ink-soft: #222825;
  --paper: #f3f5f1;
  --card: #ffffff;
  --muted: #6a736d;
  --line: #dfe4df;
  --green: #13ee3c;
  --green-strong: #00d92f;
  --green-pale: #d9ffe1;
  --shadow: 0 18px 60px rgba(9, 18, 11, 0.11);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(19, 238, 60, 0.09), transparent 28rem),
    var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
select,
label {
  touch-action: manipulation;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(100% - 28px, 920px);
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 28px, 920px);
  min-height: calc(74px + var(--safe-top));
  margin-inline: auto;
  padding-top: var(--safe-top);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  place-items: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.topbar-link {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  padding: 38px 28px 24px;
  border-radius: var(--radius-xl);
  color: white;
  background:
    linear-gradient(150deg, rgba(19, 238, 60, 0.05), transparent 34%),
    var(--ink);
  box-shadow: 0 18px 50px rgba(5, 10, 6, 0.2);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  right: -92px;
  bottom: 36px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 90px rgba(19, 238, 60, 0.2);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero-orbit-one {
  right: -145px;
  bottom: -20px;
  width: 440px;
  height: 440px;
}

.hero-orbit-two {
  right: -202px;
  bottom: -78px;
  width: 555px;
  height: 555px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--green-strong);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(19, 238, 60, 0.14);
}

.hero h1 {
  max-width: 620px;
  margin: 26px 0 14px;
  font-size: clamp(42px, 8.6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--green);
}

.hero-content > p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 238px;
  margin-top: 27px;
  padding: 16px 18px;
  border: 0;
  border-radius: 15px;
  background: white;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-cta span {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  place-items: center;
}

.hero-mark {
  position: absolute;
  right: -6px;
  bottom: 75px;
  width: 230px;
  height: 230px;
  transform: rotate(-9deg);
}

.paw-dot,
.paw-pad {
  position: absolute;
  display: block;
  background: var(--ink);
}

.paw-dot {
  width: 43px;
  height: 62px;
  border-radius: 50%;
}

.paw-one { left: 28px; top: 31px; transform: rotate(-25deg); }
.paw-two { left: 76px; top: 6px; transform: rotate(-7deg); }
.paw-three { right: 59px; top: 10px; transform: rotate(8deg); }
.paw-four { right: 18px; top: 43px; transform: rotate(25deg); }

.paw-pad {
  left: 48px;
  bottom: 21px;
  width: 135px;
  height: 119px;
  border-radius: 57% 57% 48% 48%;
  transform: perspective(100px) rotateX(-5deg);
}

.hero-benefits {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 22px;
  left: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-benefits span {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 720;
}

.hero-benefits b {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.catalog-section {
  padding-top: 64px;
  scroll-margin-top: 16px;
}

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

.section-heading h2,
.delivery h2,
.how h2 {
  margin: 7px 0 0;
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading > p {
  max-width: 245px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin: 0 -14px 20px;
  padding: 0 14px 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.filter-chip.is-active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

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

.product-card,
.skeleton-card {
  min-width: 0;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 11, 0.07);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 9px 34px rgba(10, 18, 12, 0.055);
}

.catalog-error {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  text-align: center;
}

.catalog-error p {
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-error button {
  padding: 11px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.skeleton-card {
  background: linear-gradient(105deg, #e9ede8 32%, #f7f8f6 42%, #e9ede8 54%);
  background-size: 220% 100%;
  animation: shimmer 1.35s infinite linear;
}

@keyframes shimmer {
  to { background-position-x: -220%; }
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-art {
  position: relative;
  display: grid;
  min-height: 220px;
  overflow: hidden;
  place-items: center;
}

.product-art::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  content: "";
}

.product-art svg {
  position: relative;
  z-index: 1;
  width: 76%;
  max-width: 230px;
  height: auto;
  filter: drop-shadow(0 16px 14px rgba(22, 28, 23, 0.13));
}

.product-art-soy { background: linear-gradient(140deg, #efffe8, #caffcf); }
.product-art-silica { background: linear-gradient(140deg, #e7fbff, #c4ecff); }
.product-art-bentonite { background: linear-gradient(140deg, #f0efec, #d9d4cb); }
.product-art-wood { background: linear-gradient(140deg, #fff0ce, #f6d48c); }

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 9px;
  border-radius: 999px;
  color: white;
  background: rgba(7, 10, 8, 0.85);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-copy h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 880;
  letter-spacing: -0.04em;
}

.product-description {
  min-height: 38px;
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.variant-select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #f8faf7;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}

.variant-select:focus-visible,
.field input:focus,
.field textarea:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 3px rgba(0, 217, 47, 0.11);
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.price-copy {
  display: grid;
  gap: 2px;
}

.price-copy strong {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.price-copy small {
  color: var(--muted);
  font-size: 10px;
}

.add-button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 15px;
  color: var(--ink);
  background: var(--green);
  font-size: 25px;
  font-weight: 500;
  cursor: pointer;
  place-items: center;
  transition: transform 120ms ease, background 120ms ease;
}

.add-button:active,
.hero-cta:active,
.submit-order:active,
.cart-dock:active {
  transform: scale(0.97);
}

.delivery {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 14px;
  padding-top: 72px;
}

.delivery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
}

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

.delivery-card-dark::after {
  position: absolute;
  right: -66px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 42px solid rgba(19, 238, 60, 0.18);
  border-radius: 50%;
  content: "";
}

.delivery-card-dark h2 {
  max-width: 450px;
  margin-top: 11px;
}

.delivery-card-dark p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.delivery-icon {
  position: absolute;
  top: 22px;
  right: 23px;
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 20px;
  place-items: center;
}

.delivery-card-green {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--green);
}

.delivery-number {
  display: flex;
  align-items: start;
  font-size: clamp(78px, 15vw, 120px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.delivery-number span {
  margin: 7px 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.delivery-card-green strong {
  font-size: 17px;
  font-weight: 900;
}

.delivery-card-green p {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.how {
  padding-top: 72px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  place-items: center;
}

.steps li div {
  display: grid;
  gap: 3px;
}

.steps strong {
  font-size: 13px;
}

.steps small {
  color: var(--muted);
  font-size: 10px;
}

.footer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 70px;
  margin-bottom: calc(110px + var(--safe-bottom));
  padding: 26px 0 30px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
}

.footer strong,
.footer p {
  width: 100%;
}

.footer p {
  margin: -1px 0 2px;
  color: var(--muted);
  font-size: 10px;
}

.footer a {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.cart-dock {
  position: fixed;
  z-index: 40;
  right: max(14px, calc((100vw - 920px) / 2));
  bottom: calc(12px + var(--safe-bottom));
  left: max(14px, calc((100vw - 920px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px;
  border: 0;
  border-radius: 21px;
  color: white;
  background: rgba(9, 12, 10, 0.96);
  box-shadow: 0 16px 45px rgba(6, 12, 8, 0.3);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.cart-dock-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--green);
  font-size: 20px;
  place-items: center;
}

.cart-dock-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.cart-dock-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.cart-dock-copy strong {
  font-size: 14px;
}

.cart-dock-total {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  background: white;
  font-size: 14px;
  font-weight: 900;
}

.sheet-backdrop,
.success-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(2, 5, 3, 0.58);
  backdrop-filter: blur(7px);
  animation: fade-in 180ms ease both;
}

.bottom-sheet {
  position: fixed;
  z-index: 90;
  right: max(0px, calc((100vw - 920px) / 2));
  bottom: 0;
  left: max(0px, calc((100vw - 920px) / 2));
  max-height: min(92vh, 860px);
  overflow: hidden;
  border-radius: 29px 29px 0 0;
  background: var(--paper);
  box-shadow: 0 -22px 70px rgba(0, 0, 0, 0.24);
  animation: sheet-up 240ms cubic-bezier(.2, .85, .35, 1) both;
}

@keyframes fade-in { from { opacity: 0; } }
@keyframes sheet-up { from { transform: translateY(25%); opacity: 0.6; } }

.sheet-handle {
  width: 42px;
  height: 4px;
  margin: 9px auto 0;
  border-radius: 99px;
  background: #c9ceca;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 245, 241, 0.92);
}

.sheet-header h2 {
  margin: 3px 0 0;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 25px;
  cursor: pointer;
  place-items: center;
}

.sheet-content {
  max-height: calc(min(92vh, 860px) - 98px);
  overflow-y: auto;
  padding: 18px 18px calc(30px + var(--safe-bottom));
  overscroll-behavior: contain;
}

.cart-lines {
  display: grid;
  gap: 10px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}

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

.cart-line-copy span {
  display: block;
  color: var(--green-strong);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-line-copy strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
}

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

.cart-line-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-line-total {
  font-size: 13px;
  font-weight: 900;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 11px;
  background: var(--paper);
}

.quantity-control button {
  display: grid;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 8px;
  background: white;
  font-size: 15px;
  cursor: pointer;
  place-items: center;
}

.quantity-control button:disabled {
  color: #b6bdb8;
  cursor: default;
}

.quantity-control b {
  min-width: 28px;
  font-size: 11px;
  text-align: center;
}

.remove-line {
  border: 0 !important;
  color: #ab3737;
  background: transparent !important;
  font-size: 18px !important;
}

.cart-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  margin: 12px 0 18px;
  padding: 17px 2px 18px;
  border-bottom: 1px solid var(--line);
}

.cart-summary span,
.cart-summary strong {
  font-size: 18px;
  font-weight: 900;
}

.cart-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
}

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

.form-heading {
  display: grid;
  gap: 3px;
  margin: 3px 0 2px;
}

.form-heading span {
  font-size: 18px;
  font-weight: 900;
}

.form-heading small,
.field span small {
  color: var(--muted);
  font-size: 10px;
}

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

.field > span,
.choice-field legend {
  padding: 0;
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: white;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field input {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 82px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a2aaa4;
}

.choice-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 8px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: #e5e9e4;
}

.segmented label {
  min-width: 0;
  cursor: pointer;
}

.segmented input,
.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  min-height: 42px;
  padding: 0 7px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 760;
  text-align: center;
  place-items: center;
}

.segmented input:checked + span {
  background: white;
  box-shadow: 0 4px 12px rgba(12, 19, 13, 0.08);
}

.payment-field {
  display: grid;
  gap: 8px;
}

.payment-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 2px rgba(0, 217, 47, 0.1);
}

.radio-ui {
  display: grid;
  width: 20px;
  height: 20px;
  border: 1.5px solid #9aa29c;
  border-radius: 50%;
  place-items: center;
}

.radio-ui::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-strong);
  content: "";
  transform: scale(0);
  transition: transform 120ms ease;
}

.payment-option input:checked ~ .radio-ui::after,
.payment-option input:checked + .radio-ui::after {
  transform: scale(1);
}

.payment-copy {
  display: grid;
  gap: 3px;
}

.payment-copy strong {
  font-size: 12px;
}

.payment-copy small {
  color: var(--muted);
  font-size: 9px;
}

.payment-option em {
  padding: 6px 8px;
  border-radius: 999px;
  color: #006c1b;
  background: var(--green-pale);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-strong);
}

.consent a {
  font-weight: 800;
}

.submit-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-top: 4px;
  padding: 0 16px 0 19px;
  border: 0;
  border-radius: 16px;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.submit-order strong {
  padding: 9px 11px;
  border-radius: 11px;
  color: white;
  background: var(--ink);
  font-size: 12px;
}

.submit-order:disabled {
  opacity: 0.56;
  cursor: wait;
}

.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.success-overlay {
  display: grid;
  padding: 20px;
  place-items: center;
}

.success-card {
  width: min(100%, 430px);
  padding: 30px 25px 25px;
  border-radius: 27px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
  animation: success-in 240ms cubic-bezier(.2, .9, .32, 1.2) both;
}

@keyframes success-in { from { transform: translateY(16px) scale(0.96); opacity: 0; } }

.success-check {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  font-size: 32px;
  font-weight: 900;
  place-items: center;
}

.success-card h2 {
  margin: 6px 0 14px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.success-card p {
  margin: 0 0 8px;
  font-size: 13px;
}

.success-card > small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.success-card button,
.legal-back {
  display: grid;
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  place-items: center;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: calc(96px + var(--safe-bottom));
  left: 18px;
  width: min(calc(100% - 36px), 500px);
  margin-inline: auto;
  padding: 13px 15px;
  border-radius: 13px;
  color: white;
  background: rgba(9, 12, 10, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  animation: toast-in 180ms ease both;
}

@keyframes toast-in { from { transform: translateY(8px); opacity: 0; } }

.legal-content {
  max-width: 720px;
  padding: 48px 0 80px;
}

.legal-content h1 {
  margin: 8px 0 28px;
  font-size: clamp(38px, 7vw, 58px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-content p {
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.legal-back {
  max-width: 260px;
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 42px rgba(10, 18, 12, 0.09);
  }

  .add-button:hover {
    background: var(--green-strong);
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: calc(68px + var(--safe-top));
  }

  .brand-logo-wrap {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 555px;
    padding: 31px 22px 22px;
  }

  .hero::before {
    right: -96px;
    bottom: 58px;
    width: 290px;
    height: 290px;
  }

  .hero-content > p {
    max-width: 330px;
  }

  .hero-mark {
    right: -28px;
    bottom: 106px;
    transform: scale(0.86) rotate(-9deg);
  }

  .hero-benefits {
    gap: 7px;
  }

  .hero-benefits span {
    font-size: 8px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 10px;
    text-align: left;
  }

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

  .product-card,
  .skeleton-card {
    min-height: 0;
  }

  .product-art {
    min-height: 210px;
  }

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

  .delivery-card {
    min-height: 255px;
  }

  .delivery-card-green {
    min-height: 220px;
  }

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

  .steps li {
    min-height: 74px;
  }

  .cart-line {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 39px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero-benefits span {
    font-size: 7.5px;
  }

  .topbar-link {
    padding-inline: 10px;
    font-size: 9px;
  }
}

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