:root {
  --bg: #ffffff;
  --text: #080808;
  --muted: #646464;
  --soft: #8d8d8d;
  --line: #e9e9e9;
  --line-strong: #d9d9d9;
  --panel: #ffffff;
  --panel-soft: #f8f8f8;
  --green: #73ef78;
  --green-2: #51df58;
  --green-dark: #1d9c26;
  --black: #080808;
  --shadow: 0 24px 80px rgba(0,0,0,.08);
  --soft-shadow: 0 12px 34px rgba(0,0,0,.06);
  --radius: 18px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
body::selection { background: #d7ffd8; color: #000; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { opacity: .48; cursor: not-allowed; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 18%, rgba(130, 255, 140, .10), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fff 65%, #fbfbfb 100%);
}

/* Header */
.topbar {
  width: min(var(--max), calc(100% - 96px));
  margin: 24px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0b0b0b;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.08em;
  transform: rotate(-8deg);
  box-shadow: none;
}
.brand strong { display: block; color: var(--text); letter-spacing: -.02em; font-size: 15px; font-weight: 900; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 10px; letter-spacing: .26em; margin-top: 4px; }
.nav { display: flex; align-items: center; justify-content: center; gap: 30px; flex: 1; }
.nav a {
  color: #111;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: color .2s ease, transform .2s ease;
}
.nav a:hover { color: var(--green-dark); transform: translateY(-1px); }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding: 0 7px;
  margin-left: 4px;
  border-radius: 999px;
  color: #0a0a0a;
  background: #f0f0f0;
  font-size: 12px;
  font-weight: 800;
}
.home-actions { display: flex; align-items: center; gap: 20px; min-width: max-content; }
.demo-btn {
  padding: 14px 22px;
  border-radius: 10px;
  background: #f8f8f8;
  color: #0c0c0c;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid #ededed;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.demo-btn:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.language-btn { color: #0d0d0d; font-size: 14px; font-weight: 600; }
.status-mini { color: #6a6a6a; }
.nav-toggle { display: none; border: 0; background: transparent; color: #050505; font-size: 22px; }

.profile-menu {
  position: relative;
  z-index: 45;
}
.profile-trigger {
  height: 48px;
  padding: 6px 10px 6px 7px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: rgba(255,255,255,.84);
  color: #0b0b0b;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.profile-trigger:hover,
.profile-menu.open .profile-trigger {
  transform: translateY(-1px);
  border-color: #dcdcdc;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
}
.profile-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0b0b;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: -.04em;
  transform: rotate(-6deg);
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-avatar.large {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 14px;
  font-size: 13px;
}
.profile-copy {
  display: grid;
  min-width: 96px;
  text-align: left;
  line-height: 1.05;
}
.profile-copy small {
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.profile-copy strong {
  max-width: 132px;
  margin-top: 3px;
  color: #090909;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-chevron {
  color: #777;
  font-size: 14px;
  transition: transform .18s ease;
}
.profile-menu.open .profile-chevron { transform: rotate(180deg); }
.profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 254px;
  padding: 10px;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.profile-menu.open .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.profile-drop-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #efefef;
  margin-bottom: 8px;
}
.profile-drop-head strong {
  display: block;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 950;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.profile-drop-head small {
  display: block;
  margin-top: 3px;
  color: #787878;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.profile-dropdown a,
.profile-dropdown button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #101010;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  transition: background .16s ease, color .16s ease;
}
.profile-dropdown a:hover,
.profile-dropdown button:hover {
  background: #f4f4f4;
}
.profile-dropdown button {
  color: #b0192b;
}
.profile-dropdown form { margin: 0; }

.page-shell {
  width: min(var(--max), calc(100% - 96px));
  margin: 60px auto 120px;
}

/* Base typography */
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  color: #070707;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -.07em;
  line-height: .92;
  font-weight: 950;
}
h2 { margin-bottom: 16px; color: #090909; font-size: clamp(30px, 4vw, 56px); letter-spacing: -.055em; line-height: 1; font-weight: 900; }
h3 { margin-bottom: 10px; color: #0a0a0a; font-size: 21px; letter-spacing: -.03em; line-height: 1.15; }
p { color: var(--muted); line-height: 1.7; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #0b0b0b;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(115,239,120,.18);
}

/* Alerts */
.alert {
  border: 1px solid var(--line);
  background: #fff;
  color: #0c0c0c;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: var(--soft-shadow);
}
.alert-success { border-color: rgba(46,185,54,.28); background: #f5fff6; color: #0e6e18; }
.alert-error { border-color: rgba(215,58,79,.28); background: #fff5f6; color: #a10f24; }
.alert-info { border-color: rgba(0,0,0,.10); background: #fbfbfb; color: #222; }

/* Buttons and form controls */
.btn {
  border: 1px solid #5ddb64;
  background: linear-gradient(180deg, #8afb8d, #68ed6b);
  color: #030303;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), 0 9px 18px rgba(74,226,80,.22);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); filter: saturate(1.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), 0 13px 24px rgba(74,226,80,.28); }
.btn-ghost {
  border-color: #e6e6e6;
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 12px 34px rgba(0,0,0,.05);
}
.btn-small { min-height: 38px; padding: 9px 13px; border-radius: 10px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-pay { background: #0b0b0b; border-color: #0b0b0b; color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.14); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
input {
  width: 100%;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 12px 13px;
  outline: none;
  transition: border .18s ease, box-shadow .18s ease;
}
input:focus { border-color: #6be772; box-shadow: 0 0 0 4px rgba(115,239,120,.18); }
input::placeholder { color: #858585; }

/* Home */
.mono-hero {
  min-height: calc(100vh - 142px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1fr);
  align-items: center;
  gap: 70px;
  padding: 10px 0 90px;
}
.mono-copy h1 { max-width: 650px; }
.mono-copy h1 span {
  text-decoration: underline;
  text-decoration-thickness: .075em;
  text-underline-offset: .12em;
}
.mono-copy p {
  max-width: 540px;
  margin-bottom: 30px;
  color: #111;
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: -.01em;
}
.hero-email {
  width: min(520px, 100%);
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid #e5e5e5;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.hero-email input {
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
}
.hero-email input:focus { box-shadow: none; border: 0; }
.hero-email button {
  height: 46px;
  border: 1px solid #5ddb64;
  background: linear-gradient(180deg, #8afb8d, #68ed6b);
  color: #030303;
  border-radius: 10px;
  padding: 0 24px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), 0 6px 14px rgba(74,226,80,.28);
  transition: transform .18s ease, filter .18s ease;
}
.hero-email button:hover { transform: translateY(-1px); filter: saturate(1.05); }
.signin-field {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: #747474;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.signin-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #0a0a0a;
  color: #fff;
  font-size: 12px;
  transform: rotate(-10deg);
}
.hero-stats {
  width: min(470px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 72px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8e8;
}
.hero-stats div + div { border-left: 1px solid #e8e8e8; padding-left: 34px; }
.hero-stats strong { display: block; font-size: clamp(34px, 3.8vw, 46px); line-height: 1; letter-spacing: -.06em; color: #0a0a0a; }
.hero-stats span { display: block; margin-top: 8px; color: #0d0d0d; font-size: 14px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: #0b0b0b; }
.stars { font-size: 27px; letter-spacing: -2px; color: #050505; }
.rating-row strong { font-size: 15px; }
.rating-row small { color: #8b8b8b; }

.mono-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.phone-wire {
  width: 280px;
  height: 410px;
  border: 2px solid #1b1b1b;
  border-radius: 46px;
  position: relative;
  transform: rotate(-6deg) skewY(-1deg);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.58));
  box-shadow: 0 38px 80px rgba(0,0,0,.06);
}
.phone-wire:before, .phone-wire:after {
  content: "";
  position: absolute;
  border: 1.5px solid #161616;
  border-radius: 28px;
  inset: 24px;
  opacity: .18;
}
.phone-wire:after {
  inset: auto -46px 54px -46px;
  height: 40px;
  border-radius: 20px;
  transform: rotate(5deg);
  opacity: .17;
}
.phone-notch { width: 88px; height: 18px; border-radius: 999px; background: #d9dedc; position: absolute; top: 28px; left: 50%; transform: translateX(-50%); }
.phone-card, .float-card {
  position: absolute;
  background: #fff;
  border: 1.4px solid #1c1c1c;
  border-radius: 16px;
  color: #0b0b0b;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(0,0,0,.07);
}
.top-card { left: -120px; top: 60px; width: 150px; height: 94px; padding: 18px; transform: rotate(19deg); }
.middle-card { left: 64px; top: 132px; width: 155px; height: 82px; padding: 18px; display: grid; gap: 10px; }
.middle-card span { display: block; height: 14px; border-radius: 8px; background: #e8ece9; }
.middle-card span:last-child { width: 68px; background: #8af18f; justify-self: end; }
.bottom-card { right: -130px; bottom: 84px; width: 178px; height: 84px; padding: 18px; transform: rotate(18deg); }
.float-card { min-width: 170px; padding: 17px 19px; font-size: 12px; line-height: 1.45; }
.float-card strong { display: block; font-size: 18px; margin-top: 3px; }
.card-pay { right: 54px; top: 48px; transform: rotate(-6deg); }
.card-order { right: -36px; bottom: 66px; transform: rotate(9deg); }
.card-chat { left: 30px; bottom: 86px; transform: rotate(-7deg); }
.motion-line { position: absolute; height: 1.5px; width: 120px; background: #191919; opacity: .12; transform-origin: center; }
.line-one { left: 110px; top: 210px; transform: rotate(-17deg); }
.line-two { left: 90px; top: 248px; transform: rotate(-17deg); width: 90px; }
.line-three { left: 150px; top: 286px; transform: rotate(-17deg); width: 140px; }

.home-section { padding: 80px 0; border-top: 1px solid #ededed; }
.feature-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-item, .rec-card, .light-empty, .final-cta, .card, .product-card, .mini-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.feature-item { padding: 28px; }
.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 13px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 900;
  transform: rotate(-6deg);
}
.feature-item p { margin-bottom: 0; }
.split-section { display: grid; grid-template-columns: .9fr 1fr; gap: 80px; align-items: start; }
.split-section h2 { max-width: 640px; }
.split-section > p { max-width: 620px; color: #1a1a1a; font-size: 18px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-head h2 { margin-bottom: 0; }
.section-head a, .light-empty a, .final-cta a { font-weight: 900; color: var(--green-dark); }
.recommendation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rec-card { overflow: hidden; }
.rec-media { height: 180px; display: grid; place-items: center; background: #f8f8f8; border-bottom: 1px solid #ededed; }
.rec-media img { width: 100%; height: 100%; object-fit: cover; }
.rec-media span { width: 72px; height: 72px; border-radius: 20px; background: #0a0a0a; color: #fff; display: grid; place-items: center; font-size: 34px; font-weight: 950; }
.rec-content { padding: 22px; }
.rec-content small { display: block; color: #848484; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; margin-bottom: 12px; }
.rec-content p { min-height: 72px; }
.rec-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
.rec-foot button, .rec-foot a {
  border: 1px solid #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 13px;
  font-weight: 900;
}
.light-empty { padding: 42px; text-align: center; }
.final-cta { padding: 54px; text-align: center; background: #0a0a0a; color: #fff; }
.final-cta h2, .final-cta p { color: #fff; }
.final-cta p { opacity: .72; }
.final-cta a { display: inline-flex; margin-top: 12px; color: #0a0a0a; background: var(--green); padding: 14px 22px; border-radius: 12px; }

/* App pages */
.page-title { margin: 22px 0 34px; max-width: 780px; }
.page-title h1 { font-size: clamp(46px, 5.2vw, 74px); margin-bottom: 18px; }
.page-title p { font-size: 18px; color: #222; max-width: 680px; }
.category-block { margin-top: 34px; }
.category-block h2 { margin-bottom: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.product-card { overflow: hidden; display: flex; flex-direction: column; min-height: 430px; transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(0,0,0,.10); }
.product-image {
  height: 180px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7f7f7, #fff);
  border-bottom: 1px solid #ededed;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image span { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 24px; background: #0b0b0b; color: #fff; font-size: 48px; font-weight: 950; letter-spacing: -.12em; transform: rotate(-8deg); }
.product-body { padding: 22px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; flex: 1; }
.product-body p { color: #666; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid #ededed; padding-top: 18px; }
.product-foot strong { white-space: nowrap; font-size: 18px; color: #0b0b0b; }

.checkout-layout { display: grid; grid-template-columns: 1fr 390px; gap: 20px; align-items: start; }
.card { padding: 28px; }
.checkout-head { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.checkout-head h1 { font-size: clamp(36px, 4vw, 54px); margin: 0; }
.checkout-head h2 { margin: 0; font-size: 30px; }
.connected, .pending { padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.connected { background: #effff0; color: #16751f; border: 1px solid #c8f7cb; }
.pending { background: #fafafa; color: #6a6a6a; border: 1px solid #e5e5e5; }
.account-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; border: 1px solid var(--line); background: #fbfbfb; border-radius: 18px; }
.account-box small, .account-box span { display: block; color: var(--muted); }
.account-box strong { display: block; font-size: 22px; letter-spacing: .03em; margin: 2px 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }
.cart-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fbfbfb; }
.cart-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: #0a0a0a; color: #fff; font-weight: 950; letter-spacing: -.12em; transform: rotate(-7deg); }
.cart-item span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }
.cart-price { text-align: right; }
.cart-price button { background: transparent; border: 0; color: var(--muted); padding: 4px; margin-top: 5px; font-weight: 700; }
.cart-price button:hover { color: #b00020; }
.checkout-side { position: sticky; top: 24px; }
.stack-form { margin: 18px 0; }
.stack-form label { display: block; margin-bottom: 8px; color: #111; font-weight: 900; font-size: 13px; }
.inline-form { display: flex; gap: 8px; }
.total-row { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; margin-top: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.total-row span { color: var(--muted); }
.total-row strong { font-size: 30px; color: #0a0a0a; }
.fine-print { font-size: 13px; margin-bottom: 0; color: #777; }
.empty-state { text-align: center; padding: 54px 24px; border: 1px dashed #dedede; border-radius: 22px; background: #fff; }
.empty-state.small { padding: 30px 18px; }
.success-panel, .error-card, .setup-card { max-width: 840px; margin: 60px auto; }
.setup-card pre { overflow: auto; padding: 16px; border-radius: 16px; background: #fafafa; border: 1px solid var(--line); color: #0c0c0c; }
code { padding: 2px 6px; background: #f3f3f3; border-radius: 7px; color: #111; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
  z-index: 60;
}
.cookie-banner[hidden] { display: none; }
.cookie-brand { display: flex; align-items: center; gap: 10px; color: #0c0c0c; }
.cookie-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: #0a0a0a; font-size: 15px; }
.cookie-banner p { margin: 0; color: #4c4c4c; font-size: 13px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { min-width: 82px; padding: 11px 14px; border-radius: 10px; border: 1px solid #e5e5e5; background: #f8f8f8; color: #0a0a0a; font-weight: 800; }
.cookie-actions button:first-child { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

.footer {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #777;
  border-top: 1px solid #ededed;
  padding-top: 24px;
  font-size: 13px;
}

/* Animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .topbar, .page-shell, .footer { width: min(100% - 40px, var(--max)); }
  .nav { gap: 18px; }
  .home-actions { gap: 12px; }
  .mono-hero { grid-template-columns: 1fr; gap: 20px; padding-bottom: 60px; }
  .mono-visual { min-height: 470px; }
  .product-grid, .recommendation-grid, .feature-strip, .checkout-layout { grid-template-columns: 1fr; }
  .checkout-side { position: static; }
  .split-section { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 820px) {
  .topbar { align-items: center; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 46px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--soft-shadow); }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 13px; }
  .home-actions { display: none; }
  .profile-dropdown { right: auto; left: 0; }
}

@media (max-width: 640px) {
  .topbar, .page-shell, .footer { width: min(100% - 24px, var(--max)); }
  .page-shell { margin-top: 46px; }
  h1 { font-size: clamp(46px, 16vw, 70px); }
  .mono-copy p, .page-title p { font-size: 16px; }
  .hero-email { flex-direction: column; height: auto; align-items: stretch; padding: 6px; }
  .signin-field { min-height: 44px; }
  .hero-email button { width: 100%; }
  .hero-stats { margin-top: 42px; gap: 20px; }
  .hero-stats div + div { padding-left: 20px; }
  .mono-visual { min-height: 360px; transform: scale(.82); transform-origin: center top; margin-bottom: -70px; }
  .home-section { padding: 54px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .card { padding: 22px; }
  .cart-item { grid-template-columns: 46px 1fr; }
  .cart-price { grid-column: 1 / -1; text-align: left; display: flex; justify-content: space-between; align-items: center; }
  .inline-form { flex-direction: column; }
  .profile-trigger { height: 44px; padding-right: 8px; }
  .profile-copy { min-width: 0; }
  .profile-copy strong { max-width: 96px; }
  .profile-dropdown { width: min(260px, calc(100vw - 24px)); }
  .cookie-banner { grid-template-columns: 1fr; align-items: start; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}

/* Header cart + Store CTA update */
.nav a.nav-store {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--green);
  border: 1px solid rgba(13, 165, 26, .18);
  color: #061006;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(115, 239, 120, .24);
}
.nav a.nav-store:hover {
  color: #061006;
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(115, 239, 120, .30);
}

.cart-menu {
  position: relative;
  z-index: 46;
}
.cart-trigger {
  min-height: 48px;
  padding: 6px 8px 6px 7px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  color: #0b0b0b;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.cart-trigger:hover,
.cart-menu.open .cart-trigger {
  transform: translateY(-1px);
  background: #fff;
  border-color: #dcdcdc;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
}
.cart-symbol {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #0b0b0b;
  color: #fff;
  transform: rotate(-6deg);
}
.cart-symbol svg {
  width: 20px;
  height: 20px;
}
.cart-copy {
  display: grid;
  text-align: left;
  line-height: 1.05;
  min-width: 58px;
}
.cart-copy small {
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cart-copy strong {
  margin-top: 3px;
  color: #090909;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.cart-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f2f2f2;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 950;
  transition: background .2s ease, transform .2s ease;
}
.cart-badge.has-items {
  background: var(--green);
  animation: cartPop .38s ease both;
}
@keyframes cartPop {
  0% { transform: scale(.75); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.cart-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(390px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.cart-menu.open .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.cart-drop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 12px;
  border-bottom: 1px solid #eeeeee;
}
.cart-drop-head strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.03em;
}
.cart-drop-head small {
  display: block;
  color: #8a8a8a;
  margin-top: 2px;
  font-size: 12px;
}
.cart-drop-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.cart-drop-empty {
  padding: 30px 14px 18px;
  text-align: center;
}
.cart-drop-empty span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
}
.cart-drop-empty strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
}
.cart-drop-empty p {
  margin: 8px auto 16px;
  color: #777;
  max-width: 280px;
  font-size: 14px;
}
.cart-drop-empty a {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--green);
  color: #061006;
  font-weight: 950;
}
.cart-drop-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 320px;
  overflow: auto;
  padding: 12px 2px;
}
.cart-drop-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background: #fbfbfb;
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}
.cart-drop-item:hover { background: #fff; }
.cart-drop-item.is-removing {
  opacity: .45;
  transform: translateX(8px) scale(.98);
}
.cart-drop-media {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #0b0b0b;
  color: #fff;
  font-weight: 950;
  transform: rotate(-6deg);
}
.cart-drop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(6deg) scale(1.08);
}
.cart-drop-info {
  min-width: 0;
}
.cart-drop-info strong {
  display: block;
  color: #090909;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-drop-info small {
  display: block;
  color: #767676;
  margin-top: 4px;
  font-size: 12px;
}
.cart-drop-item form {
  margin: 0;
}
.cart-drop-item button {
  width: 32px;
  height: 32px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  color: #777;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.cart-drop-item button:hover {
  color: #b00020;
  border-color: #ffc9d2;
  background: #fff7f8;
  transform: rotate(4deg);
}
.cart-drop-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 8px;
  border-top: 1px solid #eeeeee;
}
.cart-drop-total span {
  color: #777;
  font-weight: 700;
}
.cart-drop-total strong {
  font-size: 20px;
  font-weight: 950;
}
.cart-drop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cart-drop-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 13px;
}
.cart-secondary {
  border: 1px solid #e9e9e9;
  background: #fff;
  color: #111;
}
.cart-primary {
  border: 1px solid rgba(13, 165, 26, .18);
  background: var(--green);
  color: #061006;
  box-shadow: 0 14px 28px rgba(115, 239, 120, .22);
}

@media (max-width: 820px) {
  .home-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 8px;
  }
  .language-btn.status-mini,
  .home-actions > .language-btn:not(.status-mini) {
    display: none;
  }
  .cart-copy,
  .profile-copy {
    display: none;
  }
  .cart-trigger,
  .profile-trigger {
    min-height: 42px;
    height: 42px;
    padding: 5px 7px;
  }
  .cart-symbol,
  .profile-avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .cart-dropdown {
    right: -62px;
  }
  .nav a.nav-store {
    justify-content: center;
    margin-bottom: 6px;
  }
}

@media (max-width: 520px) {
  .cart-dropdown {
    right: -92px;
    width: calc(100vw - 24px);
  }
  .cart-drop-actions {
    grid-template-columns: 1fr;
  }
}

/* Polished scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #111 #f3f3f3;
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-left: 1px solid #ececec;
}
::-webkit-scrollbar-thumb {
  background: #0b0b0b;
  border: 3px solid #f5f5f5;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #28b432;
}
.cart-drop-list::-webkit-scrollbar {
  width: 8px;
}
.cart-drop-list::-webkit-scrollbar-thumb {
  border-width: 2px;
}

/* Store recommendation CTA as a real button */
.section-head a.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  background: #0b0b0b;
  border: 1px solid #0b0b0b;
  color: #fff;
  font-weight: 950;
  letter-spacing: -.01em;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.section-head a.catalog-button::after {
  content: "→";
  margin-left: 10px;
  transform: translateX(0);
  transition: transform .2s ease;
}
.section-head a.catalog-button:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: rgba(13, 165, 26, .18);
  color: #061006;
  box-shadow: 0 22px 50px rgba(115, 239, 120, .28);
}
.section-head a.catalog-button:hover::after {
  transform: translateX(3px);
}

/* Reviews */
.reviews-section {
  position: relative;
}
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .62fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 20px;
}
.reviews-copy,
.review-form-card,
.review-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}
.reviews-copy {
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews-copy h2 {
  max-width: 660px;
  margin-bottom: 18px;
}
.reviews-copy p {
  max-width: 620px;
  color: #323232;
}
.reviews-summary {
  width: fit-content;
  margin-top: 28px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 14px;
  align-items: center;
  border: 1px solid #ededed;
  border-radius: 18px;
  background: #fbfbfb;
}
.reviews-summary strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}
.reviews-summary span {
  font-size: 22px;
  letter-spacing: -1px;
  color: #0a0a0a;
}
.reviews-summary small {
  grid-column: 1 / -1;
  color: #777;
  font-weight: 700;
}
.review-form-card {
  padding: 20px;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-form-user,
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-form-user {
  padding: 12px;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  background: #fbfbfb;
  margin-bottom: 4px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #0a0a0a;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  transform: rotate(-6deg);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(6deg) scale(1.08);
}
.review-form-user strong,
.review-head strong {
  display: block;
  font-weight: 950;
  color: #0a0a0a;
}
.review-form-user small,
.review-head small {
  display: block;
  margin-top: 2px;
  color: #7b7b7b;
  font-size: 12px;
}
.review-form label {
  color: #111;
  font-size: 13px;
  font-weight: 850;
}
.review-form input[type="text"],
.review-form input:not([type]),
.review-form textarea {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  color: #0a0a0a;
  padding: 14px 15px;
  outline: none;
  resize: vertical;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: #101010;
  box-shadow: 0 0 0 4px rgba(115, 239, 120, .20);
}
.rating-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  background: #fbfbfb;
}
.rating-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rating-picker label {
  color: #d0d0d0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, color .15s ease;
}
.rating-picker label:hover,
.rating-picker label:hover ~ label,
.rating-picker input:checked ~ label {
  color: #0a0a0a;
}
.rating-picker label:hover {
  transform: translateY(-2px) scale(1.05);
}
.review-form button,
.review-login-box a {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #061006;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(115, 239, 120, .24);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.review-form button:hover,
.review-login-box a:hover {
  transform: translateY(-2px);
  background: var(--green-2);
  box-shadow: 0 20px 42px rgba(115, 239, 120, .32);
}
.review-login-box {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  padding: 26px;
}
.review-login-box > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #0b0b0b;
  color: #fff;
  font-size: 28px;
  transform: rotate(-8deg);
}
.review-login-box h3 {
  max-width: 280px;
  margin: 0;
}
.review-login-box p {
  max-width: 330px;
  margin: 0;
  color: #6f6f6f;
}
.review-login-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  margin-top: 4px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.10);
}
.review-stars {
  margin-top: 18px;
  color: #080808;
  font-size: 22px;
  letter-spacing: -1px;
}
.review-card p {
  margin: 14px 0 0;
  color: #343434;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .section-head a.catalog-button {
    width: 100%;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .reviews-summary {
    width: 100%;
  }
}
