:root {
  --brand-50: #eef6ff;
  --brand-100: #d9ebff;
  --brand-500: #3384fc;
  --brand-600: #1d65f0;
  --brand-700: #1a52dc;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 30px -12px rgba(15, 23, 42, 0.12);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--slate-50);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.main-content { overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600; font-family: inherit;
  border-radius: 9999px; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-700); box-shadow: 0 0 40px -10px rgba(51, 132, 252, 0.4); color: #fff; }
.btn-secondary { background: #fff; color: var(--slate-700); border: 1px solid var(--slate-200); box-shadow: var(--shadow); }
.btn-secondary:hover { background: var(--brand-50); border-color: var(--brand-100); color: var(--brand-700); }
.btn-ghost { background: transparent; color: var(--slate-700); padding: 0.5rem 1rem; }
.btn-ghost:hover { background: var(--slate-100); color: var(--brand-600); transform: none; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-xs { padding: 0.375rem 0.875rem; font-size: 0.75rem; border-radius: 9999px; }
.btn-white { background: #fff; color: var(--brand-700); }
.btn-white:hover { background: var(--brand-50); color: var(--brand-700); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(226,232,240,0.8); transition: box-shadow 0.3s; }
.site-header.is-scrolled { box-shadow: var(--shadow); }
.top-bar { background: rgba(238,246,255,0.6); border-bottom: 1px solid var(--brand-100); font-size: 0.75rem; color: var(--slate-500); }
.top-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; padding: 0.5rem 1rem; }
@media (min-width: 640px) { .top-bar__inner { justify-content: space-between; } }
.header-main { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.logo {
  display: flex; align-items: center; gap: 0.625rem; text-decoration: none; color: inherit;
  flex-shrink: 0; min-width: 0; max-width: min(100%, 16rem);
}
.logo:hover { text-decoration: none; }
.logo__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  line-height: 0;
  border-radius: 0.625rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.logo__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .logo__icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; }
}
.logo__text {
  display: none; flex-direction: column; justify-content: center; gap: 0.125rem;
  min-width: 0; line-height: 1.15;
}
@media (min-width: 640px) { .logo__text { display: flex; } }
.logo__text strong {
  font-size: 0.9375rem; color: var(--slate-900); letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (min-width: 1024px) { .logo__text strong { font-size: 1.0625rem; } }
.logo__text small {
  font-size: 0.625rem; color: var(--slate-500); font-weight: 500; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 1280px) {
  .logo { max-width: 18rem; }
  .logo__text small { -webkit-line-clamp: 1; white-space: nowrap; }
}
.nav-desktop { display: none; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  color: var(--slate-700); text-decoration: none; transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--slate-100); color: var(--brand-600); text-decoration: none; }
.nav-link.is-active { background: var(--brand-50); color: var(--brand-600); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.cart-btn { position: relative; padding: 0.5rem; border-radius: 9999px; color: var(--slate-700); }
.cart-btn:hover { background: var(--slate-100); text-decoration: none; }
.cart-count {
  position: absolute; top: 0; right: 0; min-width: 1.125rem; height: 1.125rem;
  background: var(--brand-600); color: #fff; font-size: 0.625rem; font-weight: 700;
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--slate-700); border-radius: 1px; transition: 0.2s; }
.nav-mobile { display: flex; flex-direction: column; padding: 0.75rem 1rem 1rem; border-top: 1px solid var(--slate-100); background: #fff; }
.nav-mobile[hidden] { display: none; }
.nav-mobile a { padding: 0.625rem 0.75rem; border-radius: 0.75rem; font-weight: 500; color: var(--slate-700); text-decoration: none; }
.nav-mobile a:hover { background: var(--brand-50); color: var(--brand-600); }
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline-flex; } }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--slate-50);
  background-image:
    radial-gradient(at 40% 20%, rgba(51, 132, 252, 0.12) 0, transparent 50%),
    radial-gradient(at 80% 0%, rgba(99, 102, 241, 0.1) 0, transparent 50%);
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; animation: float 6s ease-in-out infinite; }
.hero__blob--1 { width: 12rem; height: 12rem; left: -4rem; top: 3rem; background: rgba(51,132,252,0.25); }
.hero__blob--2 { width: 14rem; height: 14rem; right: -3rem; bottom: 1rem; background: rgba(99,102,241,0.2); animation-delay: 2s; }
@media (min-width: 640px) {
  .hero__blob--1 { width: 18rem; height: 18rem; left: -5rem; top: 5rem; }
  .hero__blob--2 { width: 20rem; height: 20rem; right: -2rem; bottom: 2rem; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__grid {
  position: relative; display: grid; gap: 2rem;
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 768px) { .hero__grid { gap: 2.5rem; } }
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem 3rem;
    padding: 4.5rem 0 6rem;
  }
}
.hero__content {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    align-items: flex-start;
    text-align: left;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: center;
  margin-inline: auto;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--brand-100);
  border-radius: 9999px;
  font-size: clamp(0.6875rem, 2.5vw, 0.875rem);
  font-weight: 500;
  color: var(--brand-700);
  box-shadow: var(--shadow);
  max-width: calc(100% - 0.5rem);
  width: fit-content;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__badge {
    align-self: flex-start;
    margin-inline: 0;
  }
}
@media (max-width: 1023px) {
  .hero__grid { justify-items: center; }
}
.hero__dot { flex-shrink: 0; width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
  margin: 1rem auto 0; font-size: clamp(1.625rem, 6.5vw, 3.5rem); font-weight: 800;
  line-height: 1.15; color: var(--slate-900); letter-spacing: -0.02em;
  max-width: 22rem; width: 100%;
}
@media (min-width: 640px) {
  .hero h1 { margin-top: 1.5rem; line-height: 1.12; max-width: 28rem; }
}
@media (min-width: 1024px) {
  .hero h1 { margin-left: 0; margin-right: 0; max-width: none; text-align: left; }
}
.gradient-text { background: linear-gradient(90deg, var(--brand-600), var(--brand-500), #6366f1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__lead {
  margin: 1rem auto 0; font-size: clamp(0.9375rem, 2.8vw, 1.125rem);
  color: var(--slate-500); max-width: 22rem; width: 100%;
}
@media (min-width: 640px) {
  .hero__lead { margin-top: 1.5rem; max-width: 36rem; }
}
@media (min-width: 1024px) {
  .hero__lead { margin-left: 0; margin-right: 0; text-align: left; }
}
.hero__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.375rem;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .hero__cta { margin-top: 2rem; gap: 0.5rem; }
}
@media (min-width: 1024px) {
  .hero__cta {
    align-self: flex-start;
    margin-inline: 0;
  }
}
.hero__cta .hero__cta-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
  transform: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.hero__cta .hero__cta-btn:hover,
.hero__cta .hero__cta-btn:active {
  transform: none;
}
@media (min-width: 640px) {
  .hero__cta .hero__cta-btn {
    padding: 0.4375rem 0.75rem;
    font-size: 0.75rem;
  }
  .hero__cta .hero__cta-btn:hover { transform: translateY(-2px); }
}
@media (min-width: 1024px) {
  .hero__cta .hero__cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}
.hero__cta-btn .hero__cta-text--full { display: none !important; }
.hero__cta-btn .hero__cta-text--short { display: inline !important; }
@media (min-width: 1024px) {
  .hero__cta-btn .hero__cta-text--short { display: none !important; }
  .hero__cta-btn .hero__cta-text--full { display: inline !important; }
}
.hero__checks {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.375rem;
  width: min(100%, 20rem);
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .hero__checks { margin-top: 2rem; width: min(100%, 24rem); gap: 0.5rem; }
}
@media (min-width: 1024px) {
  .hero__checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
  }
}
.hero__check {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.25rem;
  min-height: 3.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--slate-800);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.95));
  border: 1px solid var(--brand-100);
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(51, 132, 252, 0.12);
}
@media (min-width: 640px) {
  .hero__check {
    flex-direction: row;
    min-height: auto;
    padding: 0.4375rem 0.625rem;
    font-size: 0.6875rem;
    border-radius: 9999px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .hero__check { font-size: 0.75rem; padding: 0.375rem 0.75rem; }
}
.hero__check-label { display: block; text-align: center; }
.hero__check .hero__check-label--full { display: none !important; }
.hero__check .hero__check-label--short { display: block !important; }
@media (min-width: 640px) {
  .hero__check .hero__check-label--full { display: block !important; }
  .hero__check .hero__check-label--short { display: none !important; }
  .hero__check-label { text-align: left; }
}
.hero__check-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}
.hero__panel {
  display: flex; justify-content: center; align-items: stretch;
  min-width: 0; width: 100%; max-width: 22rem; margin-inline: auto;
}
@media (min-width: 1024px) {
  .hero__panel {
    justify-content: flex-end; align-items: center;
    max-width: none; margin-inline: 0;
  }
}
.hero__card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 22rem;
}
.hero__card--compact { padding: 0.75rem 0.875rem 0.625rem; }
@media (min-width: 1024px) { .hero__card { max-width: 20rem; } }
.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-100);
}
.hero__card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
}
.hero__card-pill {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.hero__order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.hero__order-list li {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.hero__card .hero__order-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.25rem;
  border-radius: 0.5rem;
}
.hero__card .hero__order-row:hover {
  background: var(--slate-50);
}
.hero__card .hero__order-icon {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.hero__card .hero__order-icon img {
  width: 1.125rem;
  height: 1.125rem;
  max-width: none;
  object-fit: contain;
  display: block;
}
.hero__card .hero__order-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}
.hero__card .hero__order-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__card .hero__order-meta {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--slate-400);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__card .hero__order-price {
  flex: 0 0 auto;
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brand-600);
  white-space: nowrap;
  text-align: right;
  line-height: 1.2;
}
.hero__card-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--slate-100);
  font-size: 0.625rem;
  color: var(--slate-500);
  line-height: 1.3;
}
.hero__card-foot-stat {
  font-weight: 600;
  color: var(--slate-600);
}
.hero__card-foot-hours {
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Trust */
.trust { background: #fff; border-block: 1px solid var(--slate-100); padding: clamp(2rem, 5vw, 3rem) 0; }
.trust__grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { display: flex; gap: 1rem; padding: 0.5rem; border-radius: var(--radius); transition: background 0.2s; }
.trust__item:hover { background: var(--slate-50); }
.trust__icon {
  width: 3rem; height: 3rem; flex-shrink: 0; border-radius: var(--radius);
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.trust__item:hover .trust__icon { background: var(--brand-600); color: #fff; }
.trust__item h3 { margin: 0; font-size: 1rem; color: var(--slate-900); }
.trust__item p { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--slate-500); }

/* Trust, categories intro, and category cards — centered on narrow screens */
@media (max-width: 639px) {
  .trust__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
  }
  .trust__item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section__head {
    align-items: center;
    text-align: center;
  }
  .section__head > div {
    width: 100%;
  }
  .section__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .cat-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
  }
  .cat-card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Featured products — section intro + cards */
  .section--muted .container > .reveal {
    text-align: center;
  }
  .section--muted .section__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .product-grid--featured .product-card__body {
    align-items: center;
    text-align: center;
  }
  .product-grid--featured .product-card__footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .product-grid--featured .product-card__actions {
    width: auto;
    justify-content: center;
  }
  /* How ordering works */
  .how-steps {
    text-align: center;
  }
  .how-steps > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-band .btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  .policy-links {
    max-width: 20rem;
    gap: 0.4375rem;
  }
  .policy-links a {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  /* Questions before you buy — FAQ & Contact */
  .section-cta-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .section-cta-row .btn {
    width: min(100%, 16rem);
    max-width: 16rem;
    justify-content: center;
    text-align: center;
  }
}

/* Footer — centered text & balanced spacing when columns stack */
@media (max-width: 767px) {
  .site-footer {
    padding-top: 0.5rem;
  }
  .footer-grid {
    gap: 2rem;
    padding: 2rem 0 2.25rem;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  .logo--footer {
    align-self: center;
    justify-content: center;
    max-width: 100%;
  }
  .logo--footer .logo__icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .logo--footer strong {
    font-size: 1rem;
  }
  .footer-brand p {
    margin: 0 auto;
    max-width: 20rem;
    line-height: 1.55;
  }
  .footer-address {
    margin-top: 0.25rem !important;
  }
  .site-footer .footer-grid > div:not(.footer-brand) {
    padding-top: 0.25rem;
  }
  .site-footer h3 {
    margin: 0 0 0.75rem;
  }
  .site-footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .site-footer li {
    margin-bottom: 0;
  }
  .footer-bottom__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    padding: 1.25rem 0;
  }
}

/* Sections */
.section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section--muted { background: #fff; }
.section__head {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 1.25rem; margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .section__head {
    flex-direction: row; flex-wrap: wrap; align-items: flex-end;
    justify-content: space-between; margin-bottom: 2.5rem;
  }
}
.section__head .btn { align-self: stretch; text-align: center; }
@media (min-width: 640px) { .section__head .btn { align-self: auto; } }
.section--closing { padding-top: 0; }
.section--closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.section--closing__inner .section__title {
  display: block;
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.section--closing__inner .section__sub,
.section__sub--center {
  display: block;
  width: 100%;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .section--closing__inner .section__sub {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
  }
}
.policy-links {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 40rem;
}
@media (min-width: 640px) {
  .policy-links { margin-top: 1.5rem; gap: 0.625rem 0.75rem; }
}
.policy-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 9999px;
  box-shadow: var(--shadow);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
@media (min-width: 640px) { .policy-links a { font-size: 0.875rem; padding: 0.5rem 1rem; } }
.policy-links a:hover {
  background: var(--brand-50);
  border-color: var(--brand-100);
  color: var(--brand-600);
  text-decoration: none;
}
.section-cta-row {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) { .section-cta-row { margin-top: 2rem; gap: 1rem; } }
.section__eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-600); margin: 0; }
.section__title { margin: 0.5rem 0 0; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--slate-900); letter-spacing: -0.02em; }
.section__sub { margin: 0.75rem 0 0; color: var(--slate-500); max-width: 40rem; }

/* Category grid */
.cat-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  display: flex; gap: 1rem; padding: 1.25rem; background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--brand-100); text-decoration: none; }
.cat-card__icon { font-size: 2rem; line-height: 1; }
.cat-card h3 { margin: 0; font-size: 1rem; font-weight: 600; color: var(--slate-900); }
.cat-card p { margin: 0.25rem 0 0; font-size: 0.75rem; color: var(--slate-500); }

/* Product grid */
.product-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-grid--featured { margin-top: clamp(1.75rem, 4vw, 2.5rem); }
@media (min-width: 768px) { .product-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .product-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.product-card__image-wrap { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--slate-50), var(--brand-50)); }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, #fff, var(--brand-50)); font-size: 0.75rem; color: var(--slate-500);
}
.product-card__icon { font-size: 2.5rem; }
.badge { position: absolute; left: 0.75rem; top: 0.75rem; padding: 0.25rem 0.625rem; border-radius: 9999px; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; }
.badge--stock { background: #fff; color: #047857; box-shadow: var(--shadow); }
.product-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card__category { margin: 0; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-600); }
.product-card__title { margin: 0.375rem 0 0; font-size: 1rem; font-weight: 600; line-height: 1.35; }
.product-card__title a { color: var(--slate-900); text-decoration: none; }
.product-card__title a:hover { color: var(--brand-600); }
.product-card__desc { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--slate-500); flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--slate-50); }
.product-card__from { display: block; font-size: 0.6875rem; color: var(--slate-500); }
.product-card__price { font-size: 1.25rem; font-weight: 800; color: var(--slate-900); }
.product-card__actions { display: flex; gap: 0.5rem; }

/* Shop layout */
.shop-page { padding: 2.5rem 0 4rem; }
.shop-grid { display: grid; gap: 2rem; margin-top: 2rem; }
.shop-products { min-width: 0; width: 100%; }
.shop-page .product-grid .product-card {
  opacity: 1;
  transform: none;
  animation: none;
}
@media (min-width: 1024px) { .shop-grid { grid-template-columns: 16rem 1fr; } }
.cart-grid { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 1024px) { .cart-grid { grid-template-columns: 1fr 20rem; } }
.shop-sidebar { position: sticky; top: calc(var(--header-h) + 5rem); align-self: start; }
.shop-sidebar__card { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 1rem; box-shadow: var(--shadow); }
.shop-cat-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.shop-cat-link {
  display: block; padding: 0.625rem 0.75rem; border-radius: 0.75rem;
  font-size: 0.875rem; color: var(--slate-700); text-decoration: none; transition: 0.2s;
}
.shop-cat-link:hover { background: var(--slate-50); text-decoration: none; color: var(--brand-600); }
.shop-cat-link.is-active { background: var(--brand-600); color: #fff; font-weight: 600; }
.search-input {
  width: 100%; padding: 0.875rem 1rem 0.875rem 2.75rem; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); font-size: 0.875rem; font-family: inherit; background: #fff; box-shadow: var(--shadow);
}
.search-input:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(51,132,252,0.15); }
.search-wrap { position: relative; }
.search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--slate-500); }

/* Product page */
.product-detail { padding: 2.5rem 0 4rem; }
.product-detail__grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .product-detail__grid { grid-template-columns: 1fr 1fr; } }
.product-detail__image { border-radius: 1.5rem; overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-card); background: var(--slate-100); }
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { margin: 0.5rem 0 0; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--slate-900); }
.product-detail__price { font-size: 2rem; font-weight: 800; color: var(--brand-600); margin: 1rem 0; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.tag { padding: 0.25rem 0.75rem; background: var(--slate-100); border-radius: 9999px; font-size: 0.75rem; font-weight: 500; color: var(--slate-700); }
.info-boxes { display: grid; gap: 1rem; margin: 2rem 0; }
@media (min-width: 640px) { .info-boxes { grid-template-columns: 1fr 1fr; } }
.info-box { padding: 1rem; background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius); box-shadow: var(--shadow); }
.info-box label { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; color: var(--slate-500); }
.info-box p { margin: 0.25rem 0 0; font-size: 0.875rem; }

/* Cart & checkout */
.page-panel { padding: 2.5rem 0 4rem; }
.cart-item { display: flex; gap: 1rem; padding: 1rem; background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); margin-bottom: 1rem; box-shadow: var(--shadow); }
.cart-item__img { width: 5rem; height: 5rem; border-radius: var(--radius); object-fit: cover; background: var(--slate-100); flex-shrink: 0; }
.summary-card { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); position: sticky; top: 8rem; }
.checkout-steps { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.checkout-step { padding: 0.375rem 0.875rem; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; background: var(--slate-200); color: var(--slate-500); }
.checkout-step.is-active { background: var(--brand-600); color: #fff; }
.checkout-step.is-done { background: var(--brand-100); color: var(--brand-700); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--slate-200); border-radius: 0.75rem;
  font-family: inherit; font-size: 0.875rem;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(51,132,252,0.15); }
.alert { padding: 1rem; border-radius: var(--radius); font-size: 0.875rem; margin: 1rem 0; }
.alert--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert--warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.payment-option {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 1rem; margin-bottom: 0.75rem; border: 1px solid var(--slate-200); border-radius: var(--radius);
  background: #fff; font-family: inherit; font-size: 0.875rem; cursor: pointer; text-align: left;
}
.payment-option:hover { border-color: var(--brand-300); background: var(--brand-50); }

/* Legal */
.legal-page { padding: 2.5rem 0 4rem; max-width: 48rem; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--slate-900); margin: 0 0 1rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 600; color: var(--slate-900); margin: 2rem 0 0.75rem; }
.legal-page h3 { font-size: 1.0625rem; font-weight: 600; color: var(--slate-800); margin: 1.25rem 0 0.5rem; }
.legal-page p, .legal-page li { color: var(--slate-600); line-height: 1.65; }
.legal-page ul, .legal-page ol { margin: 0.5rem 0 1rem; padding-left: 1.25rem; }
.legal-page li { margin-bottom: 0.375rem; }
.legal-meta {
  font-size: 0.8125rem;
  color: var(--slate-500);
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.legal-intro {
  color: var(--slate-500);
  max-width: 40rem;
  margin-top: 0.75rem;
  line-height: 1.65;
}
.legal-body .legal-table,
.legal-page .legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0 1.25rem;
}
.legal-table th,
.legal-table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--slate-100);
}
.legal-table th {
  font-weight: 600;
  color: var(--slate-900);
  background: var(--slate-50);
}
.legal-table td { color: var(--slate-600); }
.faq-list { margin-top: 2rem; }
.faq-list dt {
  font-weight: 600;
  color: var(--slate-900);
  margin-top: 1.75rem;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-list dt:first-of-type { margin-top: 0; }
.faq-list dd {
  margin: 0.5rem 0 0;
  color: var(--slate-500);
  line-height: 1.65;
}
.breadcrumb { font-size: 0.875rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--brand-600); }

/* CTA band */
.cta-band {
  margin: clamp(1.5rem, 4vw, 4rem) 0; padding: clamp(1.75rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  border-radius: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, var(--slate-900), var(--brand-900, #152755));
  color: #fff; text-align: center;
}
.cta-band h2 { margin: 0; font-size: clamp(1.375rem, 4vw, 1.75rem); line-height: 1.2; }
.cta-band p { margin: 0.75rem auto 0; max-width: 32rem; color: rgba(255,255,255,0.75); font-size: clamp(0.875rem, 2.5vw, 1rem); }
.cta-band .btn {
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 16rem;
}
@media (min-width: 480px) { .cta-band .btn { width: auto; } }
.how-steps { display: grid; gap: 1.5rem; margin-top: 2rem; text-align: left; }
@media (min-width: 640px) { .how-steps { gap: 2rem; margin-top: 2.5rem; } }
@media (min-width: 768px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .how-steps > div { display: block; }
}
.how-steps h3 { margin: 0.5rem 0 0; }
.how-steps p { margin: 0.5rem 0 0; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.how-num { font-size: clamp(2rem, 6vw, 2.5rem); font-weight: 800; color: rgba(255,255,255,0.15); line-height: 1; }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--slate-200);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 2.5rem);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.logo--footer {
  align-self: flex-start;
  margin-bottom: 0.125rem;
  text-decoration: none;
  color: inherit;
}
.logo--footer:hover { text-decoration: none; }
.logo--footer strong {
  color: var(--slate-900);
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}
.footer-company {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: -0.01em;
}
.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate-500);
  max-width: 24rem;
  line-height: 1.6;
}
.footer-address { margin-top: 0.375rem !important; }
.site-footer h3 {
  margin: 0 0 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.site-footer li:last-child { margin-bottom: 0; }
.site-footer a { color: var(--slate-500); text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--brand-600); }
.footer-bottom { background: var(--slate-50); border-top: 1px solid var(--slate-100); }
.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: clamp(1.25rem, 4vw, 1.5rem) 0;
  font-size: 0.75rem;
  color: var(--slate-500);
  text-align: center;
}
.footer-bottom__inner p { margin: 0; line-height: 1.5; }
@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  left: 1rem; right: 1rem; z-index: 200;
  padding: 0.875rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
  color: #fff; background: var(--slate-900); box-shadow: var(--shadow-card);
  transform: translateY(120%); opacity: 0; transition: transform 0.35s, opacity 0.35s;
}
@media (min-width: 640px) {
  .toast { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 22rem; }
}
.toast.is-show { transform: translateY(0); opacity: 1; }
.toast--success { background: #059669; }
.toast--warning { background: #d97706; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state h2 { color: var(--slate-900); }

/* Home — compact layout (mobile & tablet) */
@media (max-width: 1023px) {
  .page-home .hero__grid {
    gap: 1rem;
    padding: 1rem 0 1.5rem;
  }
  .page-home .hero__badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    gap: 0.3rem;
  }
  .page-home .hero__dot { width: 6px; height: 6px; }
  .page-home .hero h1 {
    margin-top: 0.5rem;
    font-size: clamp(1.125rem, 5vw, 1.625rem);
    max-width: 17rem;
    line-height: 1.2;
  }
  .page-home .hero__lead {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4;
    max-width: 17rem;
  }
  .page-home .hero__cta { margin-top: 0.625rem; gap: 0.25rem; }
  .page-home .hero__cta .hero__cta-btn {
    padding: 0.3rem 0.45rem;
    font-size: 0.625rem;
    line-height: 1.1;
  }
  .page-home .hero__checks {
    margin-top: 0.625rem;
    gap: 0.25rem;
    width: min(100%, 16.5rem);
  }
  .page-home .hero__check {
    min-height: 2.25rem;
    padding: 0.3rem 0.15rem;
    font-size: 0.5625rem;
    gap: 0.25rem;
    border-radius: 0.5rem;
  }
  .page-home .hero__check-icon {
    width: 0.75rem;
    height: 0.75rem;
    font-size: 0.5rem;
  }
  .page-home .hero__card--compact { padding: 0.5rem 0.625rem 0.4rem; }
  .page-home .hero__card { max-width: 18rem; }
  .page-home .brand-marquee { padding: 0.875rem 0; }
  .page-home .brand-marquee__label {
    font-size: 0.625rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
  }
  .page-home .trust { padding: 1.25rem 0; }
  .page-home .trust__grid { gap: 1rem; }
  .page-home .trust__item { gap: 0.625rem; padding: 0.25rem; }
  .page-home .trust__icon { width: 2rem; height: 2rem; }
  .page-home .trust__icon svg { width: 18px; height: 18px; }
  .page-home .trust__item h3 { font-size: 0.8125rem; }
  .page-home .trust__item p { font-size: 0.6875rem; margin-top: 0.125rem; }
  .page-home .section { padding: 1.75rem 0; }
  .page-home .section__head { gap: 0.75rem; margin-bottom: 1.25rem; }
  .page-home .section__eyebrow { font-size: 0.6875rem; }
  .page-home .section__title { font-size: clamp(1.125rem, 4vw, 1.5rem); margin-top: 0.25rem; }
  .page-home .section__sub { font-size: 0.75rem; margin-top: 0.375rem; }
  .page-home .section__head .btn {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
  .page-home .cat-card { padding: 0.75rem; gap: 0.625rem; }
  .page-home .cat-card__icon { font-size: 1.375rem; }
  .page-home .cat-card h3 { font-size: 0.8125rem; }
  .page-home .cat-card p { font-size: 0.6875rem; }
  .page-home .product-grid--featured { margin-top: 1.25rem; }
  .page-home .product-grid { gap: 1rem; }
  .page-home .product-card__body { padding: 0.875rem; }
  .page-home .product-card__title { font-size: 0.875rem; }
  .page-home .product-card__desc { font-size: 0.75rem; }
  .page-home .product-card__price { font-size: 1rem; }
  .page-home .cta-band {
    margin: 1.25rem 0;
    padding: 1.25rem 1rem;
  }
  .page-home .cta-band h2 { font-size: 1.125rem; }
  .page-home .cta-band p { font-size: 0.75rem; }
  .page-home .how-steps { gap: 1rem; margin-top: 1.25rem; }
  .page-home .how-steps h3 { font-size: 0.8125rem; }
  .page-home .how-steps p { font-size: 0.6875rem; }
  .page-home .how-num { font-size: 1.5rem; }
  .page-home .cta-band .btn {
    margin-top: 1rem;
    padding: 0.4375rem 1rem;
    font-size: 0.75rem;
  }
  .page-home .section--closing__inner { padding-bottom: 1.5rem; }
  .page-home .section-cta-row { margin-top: 1rem; gap: 0.5rem; }
  .page-home .section-cta-row .btn {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 639px) {
  .product-grid:not(.product-grid--featured) .product-card__footer { flex-wrap: wrap; }
  .product-grid:not(.product-grid--featured) .product-card__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob, .hero__dot { animation: none; }
  .btn:hover { transform: none; }
}
