
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --text: #111827;
  --muted: #5b6472;
  --border: #d8e0ea;
  --primary: #111827;
  --primary-contrast: #ffffff;
  --accent: #0e46ad;
  --accent-rgb: 14, 70, 173;
  --accent-soft: rgba(var(--accent-rgb), 0.12);
  --danger: #b91c1c;
  --success: #166534;
  --warning: #a16207;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --container-wide: 1440px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 132px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
body.no-scroll { overflow: hidden; }
body.has-mobile-sticky-cta {
  scroll-padding-bottom: 108px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
}
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.container-wide {
  width: min(calc(100% - 48px), var(--container-wide));
}
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 251, 0.94);
  border-bottom: 10px solid rgba(216, 224, 234, 0.85);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nav {
  width: min(calc(100% - 40px), 1480px);
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
  transition: min-height 0.22s ease, column-gap 0.22s ease, padding 0.22s ease;
}

.site-header.is-scrolled .nav {
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
  margin: 0;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  height: 62px;
  transition: height 0.22s ease, transform 0.22s ease;
}

.brand-copy {
  display: none;
}

.brand .eyebrow {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1;
  transition: opacity 0.18s ease, max-height 0.18s ease, margin 0.18s ease;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-logo {
  display: block;
  width: auto;
  height: 100%;
  max-width: min(280px, 18vw);
  object-fit: contain;
  flex-shrink: 0;
}

.site-header.is-scrolled .brand-with-logo {
  height: 54px;
}

.site-header.is-scrolled .brand-logo {
  height: 100%;
}

.site-header.is-scrolled .brand .eyebrow {
  opacity: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
}

.desktop-nav a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
  line-height: 1.2;
}

.desktop-nav a:hover,
.nav-dropdown > a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: max-content;
}

.nav-actions .btn,
.nav-actions a {
  white-space: nowrap;
}

.mobile-menu-toggle,
.mobile-menu-drawer,
.mobile-sticky-buy {
  display: none;
}

.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.mobile-menu-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: min(84vw, 320px);
  height: 100vh;
  max-height: 100vh;
  padding: 96px 20px 24px;
  background: var(--surface);
  box-shadow: -12px 0 30px rgba(17, 24, 39, 0.12);
  z-index: 225;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu-drawer.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-menu-header h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1;
}

.mobile-menu-close {
  position: static;
  flex-shrink: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.mobile-menu-links a {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 0;
}

.mobile-menu-links a:hover {
  background: transparent;
  color: var(--accent);
}

.mobile-menu-cta {
  margin-top: auto;
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  position: sticky;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
}

@media (max-width: 1360px) {
  .nav {
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr) auto;
    column-gap: 18px;
  }

  .brand-logo {
    max-width: 220px;
  }

  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a,
  .nav-dropdown > a {
    font-size: 0.9rem;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn,
  .nav-actions a {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 12px 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-cart {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-cart-strong {
  padding-right: 14px;
}
.btn-cart.has-items,
.floating-cart.has-items {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: #fff;
  box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.14);
}
.cart-count,
#floatingCartCount,
#checkoutCount {
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}
.cart-count-strong {
  min-width: 32px;
  height: 32px;
  font-size: 1rem;
}
.floating-cart,
.toast {
  position: fixed;
  right: 18px;
  z-index: 110;
}
.floating-cart {
  bottom: 18px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
  cursor: pointer;
}
.floating-cart-strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.toast {
  top: 96px;
  width: min(100% - 24px, 360px);
  background: #111827;
  color: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.toast-content {
  display: grid;
  gap: 4px;
}
.toast-content strong { font-size: 0.98rem; }
.toast-content span { color: rgba(255, 255, 255, 0.82); }

.hero { padding: 34px 0 20px; }
.hero-featured,
.cta-box,
.card-surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-copy h1,
.checkout-main h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-copy p,
.section-head p,
.info-card p,
.faq-item p,
.policy-card p,
.cta-box p,
.cart-help,
.cart-checkout-note p,
.empty-cart p,
.notice,
.footer-muted {
  color: var(--muted);
  line-height: 1.72;
}
.hero-copy p { margin: 18px 0 0; font-size: 1.08rem; max-width: 60ch; }
.hero-commercial-section {
  padding-top: 18px;
}

.trust-hero-section {
  padding-top: 18px;
  padding-bottom: 10px;
}

.trust-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 52%, #eef3fb 100%);
  box-shadow: none;
  overflow: hidden;
}

.trust-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
}

.trust-hero-copy {
  position: relative;
  z-index: 1;
}

.trust-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.trust-hero-copy p {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.trust-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}

.trust-points li {
  position: relative;
  padding-left: 20px;
  color: #173a7a;
  font-weight: 700;
  line-height: 1.5;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.12);
}

.trust-hero-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.trust-mark-logo {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(var(--accent-rgb), 0.14));
}

.hero-carousel-priority-section {
  padding-top: 24px;
}

.hero-commercial {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-commercial-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.3vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-commercial-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.58;
}

.hero-commercial-compact {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  padding: 22px 24px;
}

.hero-commercial-compact .hero-commercial-copy h1 {
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  max-width: 15ch;
}

.section-tight-top {
  padding-top: 8px;
}

.section-head-tight {
  margin-bottom: 18px;
}

.intent-categories-grid,
.style-collections-grid {
  display: grid;
  gap: 18px;
}

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

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

.intent-category-card,
.style-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  min-height: 100%;
}

.intent-category-card:hover,
.style-card:hover {
  transform: translateY(-2px);
}

.intent-category-kicker,
.style-card-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.intent-category-card h3,
.style-card h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.1;
}

.intent-category-card p,
.style-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.intent-category-link,
.style-card-meta {
  margin-top: auto;
  font-weight: 800;
  color: var(--accent);
}

.listing-seo-block {
  margin-top: 26px;
}

.seo-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.seo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.hero-actions,
.cta-actions,
.cart-actions-stack,
.modal-actions,
.form-actions,
.checkout-extra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-pill,
.product-pay-badge,
.badge,
.mini-support-badge,
.checkout-cart-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}
.trust-pill,
.badge,
.mini-support-badge,
.checkout-cart-chip {
  background: #eef2f7;
  color: #374151;
}
.product-pay-badge {
  background: var(--accent-soft);
  color: var(--accent);
}
.hero-carousel-section {
  padding-top: 0;
}

.hero-featured {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.hero-carousel-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0b1220;
  border-radius: var(--radius-lg);
}
.hero-carousel-track {
  position: relative;
  min-height: 520px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  gap: 24px;
  color: #fff;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-slide-content h1 {
  margin: 8px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -0.05em;
  color: #fff;
}
.hero-slide-content p {
  margin: 18px 0 0;
  max-width: 56ch;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-slide-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.hero-slide-chip-soft {
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.84);
}
.hero-slide-price-card {
  justify-self: end;
  align-self: center;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  color: #fff;
}
.hero-slide-price-card strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}
.hero-slide-price-card span:last-child {
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.hero-carousel-controls {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 48px);
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}
.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot,
.hero-arrow {
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.36);
}
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.08);
}
.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.hero-arrow:hover,
.hero-dot:hover {
  transform: translateY(-1px);
}
.section { padding: 36px 0 28px; }
.section-soft {
  background: var(--surface-soft);
  border-top: 1px solid rgba(216, 224, 234, 0.7);
  border-bottom: 1px solid rgba(216, 224, 234, 0.7);
}
.section-head { margin-bottom: 24px; }
.section-head h1,
.section-head h2,
.checkout-main h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.compact-head { margin-bottom: 20px; }
.compact-head-tight { margin-bottom: 12px; }
.section-stack { display: grid; gap: 24px; }
.categories-grid,
.products-grid,
.info-grid,
.trust-columns,
.faq-grid {
  display: grid;
  gap: 20px;
}
.categories-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card,
.info-card,
.policy-card,
.faq-item,
.mini-card,
.notice {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.category-card,
.info-card,
.policy-card { padding: 24px; }
.info-card,
.policy-card,
.faq-item {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.03), rgba(255, 255, 255, 0.98) 24%),
    var(--surface);
}
.category-icon { font-size: 2rem; }
.category-card h3,
.info-card h3,
.policy-card h3 { margin: 16px 0 8px; font-size: 1.15rem; }
.category-card p { margin: 0; color: var(--muted); }
.product-media {
  aspect-ratio: 4 / 3;
  background: #f8fafc;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body { padding: 20px; }
.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.product-category {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.product-title {
  margin: 10px 0 0;
  font-size: 1.05rem;
  line-height: 1.25;
}
.product-description {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  min-height: 3.3em;
}
.product-description-no-min { min-height: 0; }
.product-price {
  margin: 14px 0 0;
  font-size: 1.2rem;
  font-weight: 800;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
}
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.list-clean li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.68;
}
.list-clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.faq-item {
  display: grid;
  gap: 10px;
}
.faq-item h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}
.faq-item p {
  margin: 0;
}
.policy-card { display: grid; gap: 10px; }
.cta-box {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.site-footer {
  padding: 24px 0 46px;
  border-top: 1px solid rgba(216, 224, 234, 0.85);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100vh;
  max-height: 100vh;
  background: var(--surface);
  box-shadow: -12px 0 30px rgba(17, 24, 39, 0.12);
  z-index: 230;
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 220;
}
.cart-header,
.cart-toolbar,
.summary-toolbar,
.modal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.cart-header h2,
.modal-card h3 { margin: 0; }
.cart-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-top: 22px;
  padding-bottom: 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.cart-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.cart-back-button {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}
.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}
.text-button {
  border: none;
  background: transparent;
  color: var(--danger);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 0;
}
.cart-toolbar-text { margin: 0; color: var(--muted); }
.cart-items,
.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  min-height: auto;
  max-height: none;
  padding-right: 4px;
}
.cart-item,
.checkout-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
}
.cart-item-image {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.cart-item-info h3,
.checkout-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.cart-item-info p,
.checkout-item p { margin: 0; color: var(--muted); }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.qty-btn,
.remove-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}
.remove-btn { color: var(--danger); }
.cart-item-total {
  align-self: start;
}
.cart-shipping label,
.field span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.cart-shipping select,
.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.cart-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 10px;
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 1.08rem;
}
.cart-checkout-note {
  border-radius: var(--radius-md);
  padding: 16px;
  background: #f8f6ff;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}
.empty-cart {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.5);
  padding: 20px;
}
.modal-card {
  width: min(100%, 520px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}
.modal-card-large { width: min(100%, 820px); }
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}
.product-modal-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
}
.product-modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.details-list { margin-top: 16px; }
.empty-state {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
  color: var(--muted);
}

.checkout-page { padding: 36px 0 48px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}
.card-surface { padding: 28px; }
.checkout-form {
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.payment-options {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.radio-card {
  display: flex;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
}
.radio-card input { margin-top: 4px; }
.radio-card strong {
  display: block;
  margin-bottom: 4px;
}
.radio-card span { color: var(--muted); }
.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checkbox-line span { color: var(--muted); line-height: 1.6; }
.checkout-sidebar {
  position: sticky;
  top: 98px;
}
.order-summary-card { display: grid; gap: 18px; }
.checkout-sidebar-actions {
  display: grid;
  gap: 12px;
}
.notice {
  padding: 14px 16px;
  line-height: 1.6;
}
.notice-success {
  border-color: rgba(22, 101, 52, 0.18);
  background: rgba(22, 101, 52, 0.08);
  color: var(--success);
}
.notice-warning {
  border-color: rgba(161, 98, 7, 0.18);
  background: rgba(161, 98, 7, 0.08);
  color: var(--warning);
}
.notice-info {
  border-color: rgba(var(--accent-rgb), 0.18);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
}
.notice-error {
  border-color: rgba(185, 28, 28, 0.18);
  background: rgba(185, 28, 28, 0.08);
  color: var(--danger);
}

@media (max-width: 1120px) {
  .products-grid,
  .categories-grid,
  .info-grid,
  .faq-grid,
  .checkout-layout,
  .compact-grid,
  .trust-columns,
  .product-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-whatsapp { display: none; }
  .products-grid,
  .categories-grid,
  .info-grid,
  .faq-grid,
  .checkout-layout,
  .compact-grid,
  .trust-columns,
  .section-head-row,
  .cta-box,
  .footer-row,
  .product-modal-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .cta-box,
  .card-surface { padding: 24px; }

  .trust-hero {
    grid-template-columns: 1fr;
    padding: 26px 24px;
  }

  .trust-hero-copy h1 {
    max-width: none;
  }

  .trust-hero-mark {
    justify-content: flex-start;
  }

  .product-actions .btn,
  .form-actions .btn,
  .checkout-sidebar-actions .btn,
  .checkout-extra-actions .btn { width: 100%; }
  .checkout-sidebar { position: static; }
  body[data-page="checkout"] .checkout-sidebar {
    width: 100%;
  }
  body[data-page="checkout"] .order-summary-card {
    display: flex;
    flex-direction: column;
  }
  body[data-page="checkout"] .cart-checkout-note {
    order: 10;
    margin-top: 18px;
  }

  body {
    padding-top: 104px;
  }

  body.has-mobile-sticky-cta {
    padding-bottom: 96px;
  }

  .site-header {
    border-bottom-width: 6px;
  }

  .nav {
    width: min(calc(100% - 24px), var(--container-wide));
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-with-logo {
    height: 48px;
  }

  .brand-logo {
    max-width: 220px;
  }

  .nav-actions {
    width: auto;
    min-width: 0;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .nav-actions a {
    display: none;
  }

  .nav-actions .mobile-menu-toggle {
    order: 1;
  }

  .nav-actions .btn-cart {
    order: 2;
    min-width: auto;
    padding: 12px 14px;
  }
  body[data-page="checkout"] .nav-actions a {
    display: none;
  }
  body[data-page="checkout"] .nav {
    grid-template-columns: 1fr;
    row-gap: 12px;
    align-items: start;
  }
  body[data-page="checkout"] .brand {
    justify-content: flex-start;
  }
  body[data-page="checkout"] .nav-actions {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
  }
  body[data-page="checkout"] .nav-actions .mobile-menu-toggle {
    order: 1;
  }
  body[data-page="checkout"] .checkout-cart-chip {
    order: 2;
    min-height: 46px;
    padding: 12px 18px;
    white-space: nowrap;
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu-drawer,
  .mobile-sticky-buy {
    display: flex;
  }

  .mobile-sticky-buy {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 145;
    min-height: 56px;
    box-shadow: 0 14px 32px rgba(14, 70, 173, 0.28);
  }

  .floating-cart {
    display: none;
  }

  .cart-drawer,
  .mobile-menu-drawer {
    padding: 18px;
  }

  .cart-drawer {
    padding: 0 18px 18px;
  }

  .mobile-menu-drawer {
    width: min(78vw, 300px);
    padding: 88px 18px 20px;
  }

  .cart-header {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .cart-header-actions {
    align-self: center;
  }
}

@media (max-width: 900px) {
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 420px;
  }
  .hero-slide-price-card {
    justify-self: start;
    align-self: end;
    max-width: 320px;
  }
  .hero-carousel-controls {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 132px;
  }
  .container { width: min(calc(100% - 20px), var(--container)); }
  .hero-slide {
    padding: 24px;
    min-height: 420px;
  }
  .hero-slide-content h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-slide-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero-slide-price-card {
    max-width: none;
    padding: 18px;
  }
  .hero-carousel-controls {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .nav {
    width: min(calc(100% - 20px), var(--container));
    min-height: 92px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .brand-with-logo {
    height: 42px;
  }
  .brand {
    justify-content: flex-start;
  }
  .brand-logo {
    max-width: 220px;
  }
  .nav-actions {
    gap: 8px;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-actions .btn,
  .nav-actions a {
    flex: 1 1 calc(50% - 8px);
    padding: 10px 14px;
    white-space: normal;
    text-align: center;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  body[data-page="checkout"] .nav-actions {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  body[data-page="checkout"] .nav-actions .checkout-cart-chip,
  body[data-page="checkout"] .nav-actions .mobile-menu-toggle {
    flex: 0 0 auto;
  }
  body[data-page="checkout"] .checkout-cart-chip {
    padding: 10px 14px;
  }
  .hero { padding-top: 28px; }
  .hero-copy h1,
  .trust-hero-copy h1,
  .checkout-main h1 { font-size: 2.2rem; }
  .categories-grid,
  .products-grid,
  .info-grid,
  .faq-grid,
  .compact-grid,
  .trust-columns,
  .checkout-layout,
  .product-modal-grid { grid-template-columns: 1fr; }
  .cart-item,
  .checkout-item {
    grid-template-columns: 68px 1fr;
  }
  .cart-item-total,
  .checkout-item strong {
    grid-column: 2 / -1;
    justify-self: end;
  }
  .floating-cart,
  .toast {
    right: 12px;
  }
  .floating-cart { bottom: 12px; }
  .toast { top: 82px; width: calc(100% - 24px); }
}

@media (max-width: 960px) {
  .nav {
    width: min(calc(100% - 28px), var(--container-wide));
    min-height: 80px;
    column-gap: 18px;
  }

  .brand-with-logo {
    height: 54px;
  }

  .site-header.is-scrolled .brand-with-logo {
    height: 46px;
  }

  .brand-logo {
    max-width: 250px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a,
  .nav-dropdown > a {
    font-size: 0.98rem;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn,
  .nav-actions a {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 720px) {
  .brand-with-logo {
    height: 48px;
  }

  .site-header.is-scrolled .brand-with-logo {
    height: 42px;
  }

  .brand-logo {
    max-width: 220px;
  }

  .brand-name {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .cart-back-button {
    display: inline-flex;
  }
}

.checkout-layout-single { grid-template-columns: 1fr; max-width: 900px; }
.result-state {
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.result-success { background: rgba(34, 197, 94, 0.08); }
.result-warning { background: rgba(245, 158, 11, 0.10); }
.result-error { background: rgba(239, 68, 68, 0.08); }
.result-pending { background: rgba(59, 130, 246, 0.08); }
.order-meta { margin-top: 1rem; }
.order-meta-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.order-meta-grid span { display: block; color: var(--muted); font-size: 0.875rem; }
.order-meta-grid strong { font-size: 1rem; }
.cart-summary-large { margin-top: 1rem; }
.result-actions { margin-top: 1.5rem; }

.orders-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.filter-input {
  min-width: 280px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.orders-summary {
  margin: 12px 0 18px;
  color: var(--muted);
}

.orders-card-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.orders-status-editor {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.orders-status-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.orders-quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-status-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.quick-status-btn.is-active {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: var(--primary);
}

.result-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.result-info-card {
  height: 100%;
}

.result-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.product-description-no-min {
  min-height: 0;
}

@media (max-width: 900px) {
  .orders-toolbar {
    justify-content: stretch;
  }

  .filter-input {
    min-width: 100%;
    width: 100%;
  }

  .result-info-grid {
    grid-template-columns: 1fr;
  }
}

.order-card {
  min-height: 100%;
}

.order-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.order-card-total {
  font-size: 1.15rem;
  white-space: nowrap;
}

.order-public-id {
  font-size: .8rem;
  color: var(--muted);
}

.order-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.order-support-actions,
.order-inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.order-line-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.product-chip-soft {
  background: rgba(var(--accent-rgb), 0.08);
}

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

@media (max-width: 900px) {
  .order-card-top,
  .order-detail-grid,
  .operations-form-grid,
  .result-info-grid-3 {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .order-card-total {
    font-size: 1rem;
  }
}

.order-history {
  display: grid;
  gap: 12px;
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-list-admin {
  margin-top: 12px;
}

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

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

.timeline-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.timeline-top span {
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}


.order-timeline {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06), rgba(var(--accent-rgb), 0.02));
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 20px;
  padding: 18px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline-step {
  position: relative;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  min-height: 104px;
}

.timeline-step-marker {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
  margin-bottom: 12px;
  box-shadow: 0 0 0 6px rgba(203, 213, 225, 0.24);
}

.timeline-step-body {
  display: grid;
  gap: 6px;
}

.timeline-step-body strong {
  font-size: 0.98rem;
}

.timeline-step-body span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.timeline-step-done {
  border-color: rgba(22, 101, 52, 0.18);
  background: rgba(22, 101, 52, 0.05);
}
.timeline-step-done .timeline-step-marker {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(22, 101, 52, 0.14);
}

.timeline-step-current {
  border-color: rgba(var(--accent-rgb), 0.24);
  background: rgba(var(--accent-rgb), 0.08);
}
.timeline-step-current .timeline-step-marker {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.16);
}

.timeline-step-problem {
  border-color: rgba(185, 28, 28, 0.2);
  background: rgba(185, 28, 28, 0.06);
}
.timeline-step-problem .timeline-step-marker {
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(185, 28, 28, 0.14);
}

.timeline-step-upcoming {
  opacity: 0.84;
}

.timeline-top-wrap {
  align-items: flex-start;
  gap: 10px;
}

.timeline-headline-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.history-type-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(var(--accent-rgb), 0.10);
  color: var(--accent);
}

.history-type-chip-internal {
  background: rgba(17, 24, 39, 0.08);
  color: var(--text);
}

@media (max-width: 980px) {
  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    min-height: auto;
  }
}

.gift-guides-block {
  display: grid;
  gap: 18px;
}

.section-head-align-start {
  align-items: flex-start;
}

.section-head-actions {
  display: flex;
  align-items: center;
}

.gift-search-section {
  padding-top: 28px;
}

.gift-search-card-hero {
  padding: 28px;
  border-radius: 28px;
}

.gift-search-card-compact {
  padding: 18px;
  border-radius: 22px;
}

.gift-search-card-compact .gift-search-input {
  min-height: 58px;
}

.section-actions-right {
  display: flex;
  justify-content: flex-end;
}

.gift-search-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gift-search-label {
  font-size: 1.05rem;
  font-weight: 800;
}

 .gift-search-input {
  width: 100%;
  min-height: 68px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 20px;
  font-size: 1.05rem;
  color: var(--text);
}

.gift-search-input:focus {
  outline: 2px solid rgba(var(--accent-rgb), 0.18);
  border-color: rgba(var(--accent-rgb), 0.36);
}


.gift-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.gift-guide-chip {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  display: grid;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gift-guide-chip strong { font-size: 1rem; }
.gift-guide-chip span { color: var(--muted); font-size: .92rem; }
.gift-guide-chip:hover,
.gift-guide-chip.active {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.30);
  box-shadow: 0 14px 28px rgba(var(--accent-rgb), 0.12);
}

.category-card {
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.product-link {
  color: inherit;
}

.marketplace-card {
  display: grid;
  gap: 0;
}

.product-seo {
  margin: -2px 0 8px;
  color: #6b7280;
  font-size: .92rem;
}

.product-actions-stack-mobile {
  flex-wrap: wrap;
}

.product-page-main {
  padding: 48px 0 72px;
}

.breadcrumb-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.product-page-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 28px;
  padding: 28px;
}

.product-page-gallery {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  place-items: center;
}

.product-page-image {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.product-page-info {
  display: grid;
  gap: 18px;
  align-content: start;
}

.product-page-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.product-page-description {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.product-page-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

.marketplace-summary-box {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.marketplace-summary-box strong {
  font-size: 1rem;
}

.product-conversion-stack {
  display: grid;
  gap: 14px;
}

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

.recipient-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: rgba(var(--accent-rgb), 0.05);
  color: #4b5563;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.product-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-trust-strip {
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(var(--accent-rgb), 0.06);
  border-radius: 20px;
  padding: 16px 18px;
}

.product-trust-strip strong {
  display: block;
  margin-bottom: 6px;
}

.product-trust-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-highlights {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 18px;
}

.product-highlights li {
  color: var(--text);
}

.related-section {
  padding-top: 28px;
}

.related-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.related-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.related-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.related-carousel-arrow:disabled {
  opacity: 0.38;
  cursor: default;
  box-shadow: none;
}

.related-carousel-shell {
  position: relative;
}

.related-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.related-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.related-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  align-items: stretch;
}

.related-product-card {
  min-width: 0;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.related-product-card .product-media {
  aspect-ratio: 1 / 1;
}

.related-product-card .product-body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.related-product-card .product-topline,
.related-product-card .product-category,
.related-product-card .product-description,
.related-product-card .product-seo {
  display: none;
}

.related-product-card .product-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-product-card .product-price {
  margin: 0;
  font-size: 1.15rem;
}

.related-product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.related-product-actions .btn-small {
  min-height: 38px;
  padding: 9px 12px;
}

.related-product-actions .btn-primary {
  flex: 1 1 auto;
}

.related-product-link {
  flex: 0 0 auto;
}

.related-carousel-track.is-empty {
  display: block;
}

@media (max-width: 920px) {
  .product-page-layout {
    grid-template-columns: 1fr;
  }

  .related-carousel-track {
    grid-auto-columns: calc((100% - 16px) / 2.35);
  }
}


.payment-options-single {
  display: block;
}

.radio-card-static {
  cursor: default;
}

.radio-card-static.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.08);
}

.product-content-tabs {
  margin-top: 28px;
  padding: 24px;
  display: grid;
  gap: 18px;
}

.product-tabs-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-tab-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.product-tab-btn.active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.22);
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.active {
  display: grid;
  gap: 18px;
}

.product-long-description {
  display: grid;
  gap: 14px;
}

.product-long-description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.specs-table {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--muted);
  font-weight: 700;
}

.spec-value {
  color: var(--text);
}

@media (max-width: 720px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .related-section-head {
    align-items: start;
    flex-direction: column;
  }

  .related-carousel-controls {
    align-self: flex-end;
  }

  .related-carousel-track {
    grid-auto-columns: minmax(248px, 82%);
    gap: 14px;
  }

  .related-product-card .product-body {
    padding: 13px;
  }

  .related-product-card .product-title {
    font-size: 0.98rem;
  }
}

.product-purchase-box {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.purchase-box-text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.inline-quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.inline-quantity-value {
  min-width: 24px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.qty-btn-large {
  width: 48px;
  height: 48px;
}

.product-content-tabs {
  margin-top: 8px;
}

.gift-guides-grid .gift-guide-chip {
  min-height: 100%;
}


.section-actions-centered { margin-top: 28px; display: flex; justify-content: center; }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > a { display: inline-flex; align-items: center; white-space: nowrap; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 210;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}
.nav-dropdown-menu a:hover { background: var(--surface-soft); }
.listing-page-main { padding-top: 28px; }
.section-top-pad { padding-top: 22px; }
.listing-head h1 { margin-bottom: 10px; }
.listing-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.filters {
  display: block;
}
.sort-control {
  display: grid;
  grid-template-columns: 120px minmax(320px, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 460px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}
.sort-control span {
  white-space: nowrap;
  text-align: right;
}
.sort-select {
  min-height: 46px;
  min-width: 0;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}
.category-card { display: block; }
@media (max-width: 1024px) {
  .nav-dropdown-menu { display: none; }
}

@media (max-width: 900px) {
  .section-head-actions { width: 100%; }
  .section-head-actions .btn { width: 100%; }
  .listing-controls {
    width: 100%;
    justify-content: flex-start;
  }
  .sort-control {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }
  .sort-control span {
    text-align: left;
  }
  .sort-select { min-width: 0; width: 100%; }
}

.gift-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gift-suggestion-chip {
  border: 1px solid rgba(187, 196, 210, 0.9);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.gift-suggestion-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

.compact-products-grid {
  gap: 18px;
}

.compact-products-grid .product-media {
  aspect-ratio: 1 / 1;
}

.compact-products-grid .product-body {
  padding: 14px;
}

.compact-products-grid .product-title {
  font-size: 1.08rem;
  line-height: 1.25;
}

.compact-products-grid .product-description {
  min-height: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.compact-products-grid .product-seo {
  display: none;
}

.compact-products-grid .product-price {
  margin-top: 10px;
  font-size: 1.08rem;
}

.compact-products-grid .product-actions {
  gap: 8px;
}

.compact-products-grid .btn-small {
  padding: 10px 14px;
}

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

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

@media (max-width: 1180px) {
  .hero-commercial,
  .intent-categories-grid,
  .style-collections-grid,
  .catalog-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-commercial {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .gift-search-suggestions {
    gap: 8px;
  }

  .gift-suggestion-chip {
    width: calc(50% - 4px);
    justify-content: center;
  }

  .intent-categories-grid,
  .style-collections-grid,
  .compact-best-sellers-grid,
  .catalog-preview-grid {
    grid-template-columns: 1fr;
  }
}


@media (min-width: 1200px) {
  .gift-search-section .container-wide,
  #mas-vendidos .container-wide,
  #productos .container-wide {
    width: min(calc(100% - 56px), var(--container-wide));
  }

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

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

@media (max-width: 900px) {
  .container-wide {
    width: min(calc(100% - 24px), var(--container-wide));
  }
}
