:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --surface-strong: #f8fafc;
  --text: #111111;
  --muted: #666666;
  --line: #e5e5e5;
  --line-strong: #d4d4d4;
  --black: #000000;
  --white: #ffffff;
  --accent: #ff6a00;
  --accent-hover: #e55f00;
  --blue-accent: #2563eb;
  --green-accent: #16a34a;
  --header-bg: rgba(255, 255, 255, 0.94);
  --overlay: rgba(0, 0, 0, 0.42);
  --footer-bg: #102A43;
  --footer-text: rgba(255, 255, 255, 0.72);
  --footer-border: rgba(255, 255, 255, 0.12);
  --hero-image:
    linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(22, 163, 74, 0.04)),
    radial-gradient(circle at 30% 30%, #f0f0f0 0%, #d9d9d9 40%, #bdbdbd 100%);
}

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

body.theme-dark {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-alt: #111c34;
  --surface: #162033;
  --surface-soft: #1a263b;
  --surface-strong: #0f1b31;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: #23314d;
  --line-strong: #334155;
  --black: #f8fafc;
  --white: #0f172a;
  --accent: #ff6a00;
  --accent-hover: #ff8a33;
  --blue-accent: #60a5fa;
  --green-accent: #4ade80;
  --header-bg: rgba(15, 23, 42, 0.92);
  --overlay: rgba(2, 6, 23, 0.58);
  --footer-bg: #0b1120;
  --footer-text: rgba(226, 232, 240, 0.76);
  --footer-border: rgba(148, 163, 184, 0.18);
  --hero-image:
    linear-gradient(180deg, rgba(37, 99, 235, 0.16), rgba(22, 163, 74, 0.1)),
    radial-gradient(circle at 30% 30%, #243047 0%, #182235 48%, #0f172a 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

body[data-store-mode="landing"] {
  --header-bg: rgba(255, 255, 255, 0.97);
}

.announcement-host {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.announcement-host.is-visible {
  max-height: 84px;
}

.announcement-bar {
  width: 100%;
  color: #ffffff;
  background: var(--announcement-bg, #000000);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-100%);
  opacity: 0;
  animation: announcement-slide-down 0.34s ease forwards;
}

.announcement-bar--yellow {
  color: #111111;
}

.announcement-bar__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

.announcement-bar__copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.announcement-bar__message {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
}

.announcement-bar__link {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar__close {
  flex: 0 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.84;
}

.announcement-bar__close:hover {
  opacity: 1;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 0 8px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

body[data-store-mode="landing"] .category-menu-toggle,
body[data-store-mode="landing"] .header-search,
body[data-store-mode="landing"] .header-category-bar,
body[data-store-mode="landing"] .featured-section,
body[data-store-mode="landing"] #catalogo,
body[data-store-mode="landing"] .shipping-section,
body[data-store-mode="landing"] .tracking-section,
body[data-store-mode="landing"] .floating-help,
body[data-store-mode="landing"] .product-viewer,
body[data-store-mode="landing"] .cart-panel,
body[data-store-mode="landing"] .cart-button {
  display: none !important;
}

body[data-store-mode="landing"] .site-header {
  grid-template-columns: auto 1fr auto;
  padding-bottom: 12px;
}

body[data-store-mode="landing"] .landing-header-simple {
  grid-template-columns: 1fr;
  justify-items: center;
}

body[data-store-mode="landing"] .header-center {
  display: flex;
  justify-content: center;
}

body[data-store-mode="landing"] .site-nav {
  justify-self: center;
}

.category-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  cursor: pointer;
}

.category-menu-toggle .icon-button {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-menu-toggle svg {
  width: 100%;
  height: 100%;
}

.mobile-category-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.mobile-category-drawer[aria-hidden="true"] {
  visibility: hidden;
}

.mobile-category-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.34);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.mobile-category-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 86vw);
  padding: 18px 18px 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  box-shadow: 18px 0 48px rgba(15, 23, 42, 0.18);
  transform: translateX(-100%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  overflow: hidden;
}

.mobile-category-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-category-drawer.is-open .mobile-category-drawer__backdrop {
  opacity: 1;
}

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

.mobile-category-drawer__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.mobile-category-drawer__head strong {
  position: relative;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-category-drawer__head strong::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  margin: 0 12px 0 2px;
  vertical-align: -4px;
  background: var(--line);
}

.mobile-category-back[hidden] + strong::before {
  display: none;
}

.mobile-category-back,
.mobile-category-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.mobile-category-close {
  width: 38px;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1;
}

.mobile-category-drawer__body {
  min-width: 0;
  overflow-y: auto;
  display: grid;
  align-content: start;
}

.mobile-category-list {
  display: grid;
}

.mobile-category-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 8px 0 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.mobile-category-item::after {
  content: "›";
  width: auto;
  height: auto;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 500;
  opacity: 0.62;
  justify-self: end;
}

.mobile-category-item--all {
  color: var(--accent);
}

body.mobile-category-drawer-open {
  overflow: hidden;
}

.header-category-bar {
  grid-column: 1 / -1;
  display: block;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.scroll-filter-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.scroll-filter-arrow {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}

.scroll-filter-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}

.scroll-filter-arrow--left::before {
  transform: rotate(-135deg);
}

.scroll-filter-arrow--right::before {
  transform: rotate(45deg);
}

.scroll-filter-arrow:hover {
  color: var(--text);
}

.scroll-filter-arrow.is-disabled {
  opacity: 0.28;
  cursor: default;
}

.scroll-filter-arrow[hidden] {
  display: none;
}

.header-center {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 50px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--surface);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-gradient {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  background: linear-gradient(
    to right,
    #00c2ff,
    #ffd700,
    #ff5733,
    #00c2ff
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: logo-shift 5s linear infinite;
}

.brand-tagline {
  max-width: 320px;
  color: #777;
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mobile-brand-strip {
  display: none;
}

.site-nav {
  display: flex;
  justify-self: end;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.header-search {
  position: relative;
  display: block;
  width: min(100%, 420px);
  justify-self: end;
}

.header-search input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px 9px 40px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
}

.header-search input:focus {
  outline: none;
  border-color: var(--blue-accent);
}

.header-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.header-search-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 35;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.header-search-suggestions[hidden] {
  display: none !important;
}

.search-suggestion {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: var(--bg-alt);
}

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

.search-suggestion-copy strong {
  font-size: 0.92rem;
}

.search-suggestion-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle-bars {
  display: grid;
  gap: 4px;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-link,
.cart-close,
.category-card,
.menu-toggle,
.qty-button,
.button,
.theme-toggle {
  border: 1px solid rgba(16, 42, 67, 0.08);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
}

.icon-link,
.cart-close,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
}

.theme-toggle {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.78);
}

.theme-icon {
  position: absolute;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-icon-sun {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.theme-icon-moon {
  opacity: 0;
  transform: translateY(12px) rotate(-20deg);
}

body.theme-dark .theme-icon-sun {
  opacity: 0;
  transform: translateY(-12px) rotate(20deg);
}

body.theme-dark .theme-icon-moon {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

body.theme-dark .menu-toggle {
  background: rgba(22, 32, 51, 0.98);
  border-color: rgba(148, 163, 184, 0.14);
  color: rgba(226, 232, 240, 0.8);
}

body.theme-dark .category-menu-toggle {
  background: rgba(22, 32, 51, 0.98);
  border-color: rgba(148, 163, 184, 0.14);
  color: rgba(226, 232, 240, 0.8);
}

body.theme-dark .mobile-category-drawer__panel {
  background: var(--surface);
  border-right-color: rgba(148, 163, 184, 0.14);
}

body.theme-dark .mobile-category-back,
body.theme-dark .mobile-category-close {
  background: rgba(22, 32, 51, 0.98);
  border-color: transparent;
}

.category-menu-toggle.is-active,
.category-menu-toggle:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-1px);
}

.icon-button {
  width: 100%;
  height: auto;
  border: 0;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link:hover,
.cart-close:hover,
.category-card:hover,
.menu-toggle:hover,
.qty-button:hover,
.theme-toggle:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
}

.theme-toggle:hover {
  border-color: rgba(16, 42, 67, 0.14);
}

.site-nav-mobile-theme {
  display: none;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button__art {
  width: 46px;
  height: 46px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(16, 42, 67, 0.06);
}

.cart-button__art.is-bump {
  animation: cart-bump 0.36s ease;
}

.cart-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.cart-icon-full {
  display: none;
}

.cart-button.is-filled .cart-icon-empty {
  display: none;
}

.cart-button.is-filled .cart-icon-full {
  display: block;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.hero {
  padding: 18px 0 24px;
}

body.product-page-mode .hero,
body.product-page-mode .header-category-bar,
body.product-page-mode .category-mosaic,
body.product-page-mode .featured-section,
body.product-page-mode #catalogo,
body.product-page-mode .shipping-section,
body.product-page-mode .tracking-section,
body.product-page-mode .site-footer-newsletter {
  display: none;
}

.product-page {
  display: grid;
  gap: 16px;
  padding: 18px 0 8px;
}

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

.product-page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 2px 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-page-breadcrumb a {
  color: var(--accent-blue);
  font-weight: 500;
  text-decoration: none;
}

.product-page-title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.product-page-gallery,
.product-page-info,
.product-page-card {
  border: 0;
  background: transparent;
}

.product-page-main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
}

.product-page-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.product-page-gallery-nav[hidden],
.product-page-dots[hidden] {
  display: none;
}

.product-page-gallery-arrow {
  width: 44px;
  height: 54px;
  border: 0;
  background: transparent;
  color: #102a43;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 900;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.product-page-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 12px;
}

.product-page-dots .product-viewer-dot,
.product-page-dots .product-viewer-dot.is-active {
  width: 7px;
}

.product-page-dots .product-viewer-dot {
  background: #e0e0e0;
}

.product-page-dots .product-viewer-dot.is-active {
  background: var(--accent);
}

.product-page-info {
  display: grid;
  gap: 14px;
  padding: 0;
}

.product-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-page-meta .product-badge {
  display: none;
}

.product-page-meta .product-viewer-stock {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-accent);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-page-meta .product-viewer-stock::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--green-accent);
  flex: 0 0 auto;
}

.product-page-meta .product-viewer-stock.is-out {
  color: var(--accent);
}

.product-page-meta .product-viewer-stock.is-out::before {
  background: var(--accent);
}

.product-page-price {
  display: block;
  margin-bottom: -6px;
}

.product-page-price .price-stack {
  gap: 6px 9px;
}

.product-page-price .price-original {
  font-size: 1rem;
}

.product-page-price .discount-chip {
  font-size: 0.72rem;
}

.product-page-price strong,
.product-page-price .price-stack strong {
  color: var(--accent);
  font-size: clamp(1.95rem, 4.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
}

.product-page-price + .product-viewer-sku {
  margin-top: -8px;
  margin-bottom: -4px;
}

.product-page-short {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.product-page-trust {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--bg-alt);
}

.product-page-trust-mobile {
  display: none;
}

.product-page-trust span {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-page-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
}

.product-page-actions {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 4px;
  margin-top: 8px;
}

.product-page-buy {
  min-height: 50px;
}

.product-page-qty {
  min-height: 50px;
}

.product-page-add {
  min-height: 50px;
}

.product-page-share,
.product-page-whatsapp {
  min-width: 50px;
  width: 50px;
}

.product-page-whatsapp {
  color: #25d366;
}

body.theme-dark .product-page-qty {
  background: rgba(255, 255, 255, 0.08);
}

body.theme-dark .product-page-inline-details .product-page-card {
  background: transparent;
}

.product-page-details {
  display: grid;
  gap: 14px;
}

.product-page-inline-details {
  display: grid;
  gap: 14px;
}

.product-page-inline-details .product-page-card {
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-page-inline-details .product-page-card:first-child {
  gap: 0;
}

.product-page-card {
  display: grid;
  gap: 12px;
  padding: 0;
}

.product-page-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.product-page-related-section h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.product-page-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.product-page-related-rail {
  padding-bottom: 8px;
}

.hero-banner,
.category-card,
.product-card,
.offer-card,
.cta-card,
.shipping-card {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.65s ease forwards;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.section-heading h2,
.cta-card h2,
.cart-header h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-text,
.section-copy,
.section-heading p,
.product-card p,
.offer-card p,
.cta-form span,
.cart-empty {
  color: var(--muted);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--muted);
}

.button-secondary:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.hero-banner,
.product-card,
.offer-card,
.cta-card,
.shipping-card,
.cart-drawer {
  border: 1px solid var(--line);
  background: var(--surface);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-banner strong,
.product-meta strong,
.cart-total-row strong {
  display: block;
}

.hero-banner {
  position: relative;
  min-height: 580px;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
}

body[data-store-mode="landing"] .hero-banner {
  min-height: 620px;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

body.theme-dark .hero-banner::after {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.06) 36%, rgba(2, 6, 23, 0.18));
}

.hero-marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.landing-hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 34px;
}

.landing-hero-card {
  width: min(540px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

body.theme-dark .landing-hero-card {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
}

.landing-hero-card h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.landing-hero-card h1 span {
  color: var(--accent);
}

.landing-hero-card p:not(.eyebrow) {
  margin: 14px 0 0;
  max-width: 46ch;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.72;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.landing-promise {
  padding-top: 24px;
  padding-bottom: 12px;
}

.landing-heading {
  max-width: 760px;
}

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

.landing-promise-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

body.theme-dark .landing-promise-card {
  background: linear-gradient(180deg, rgba(22, 32, 51, 0.96), rgba(15, 27, 49, 0.96));
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.22);
}

.landing-promise-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.landing-promise-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.hero-fallback[hidden] {
  display: none;
}

.hero-fallback img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.hero-track {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
}

.hero-track[hidden] {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.hero-controls {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.hero-controls[hidden] {
  display: none;
}

.hero-control {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.24);
  color: #ffffff;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-control::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-control-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.hero-control-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding-top: 0;
  padding-bottom: 24px;
}

.featured-section {
  padding-top: 0;
  padding-bottom: 14px;
}

.recent-products-section {
  padding-top: 0;
  padding-bottom: 12px;
}

.recent-products-section[hidden] {
  display: none;
}

.featured-section .section-heading {
  margin-bottom: 10px;
}

.recent-products-section .section-heading {
  margin-bottom: 10px;
}

.featured-section .section-heading h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  color: #f97316;
}

body.product-page-mode .recent-products-section .section-heading h2 {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

#inicio,
#destacados,
#catalogo,
#seguimiento {
  scroll-margin-top: 176px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.section-heading h2,
.cta-card h2,
.cart-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-copy {
  max-width: 420px;
}

.category-grid,
.product-grid,
.offers-grid {
  display: grid;
  gap: 16px;
}

.featured-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 240px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  min-height: 320px;
  scroll-snap-type: x proximity;
}

.featured-rail::-webkit-scrollbar {
  height: 8px;
}

.featured-rail::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.featured-card:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
}

.featured-card-image-wrap {
  position: relative;
}

.featured-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, #fbfbfb, #f2f2f2);
}

.featured-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px 10px 9px;
  flex: 1 1 auto;
}

.featured-card-copy .price-stack {
  margin-top: auto;
}

.featured-card-copy > strong {
  margin-top: auto;
  align-self: flex-start;
}

.featured-card-copy h3,
.featured-card-copy strong {
  margin: 0;
}

.featured-card-copy h3 {
  font-size: 0.98rem;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.featured-card-copy strong {
  color: var(--accent);
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  align-self: flex-start;
}

.price-stack-compact {
  gap: 2px;
}

.price-original {
  order: 1;
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: line-through;
}

.discount-chip {
  order: 2;
  display: inline-flex;
  width: fit-content;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-card-badge {
  display: inline-flex;
  width: fit-content;
  align-self: flex-start;
  margin-bottom: 2px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.price-stack strong {
  order: 3;
  font-size: 1rem;
  line-height: 1.05;
}

body.theme-dark .featured-card {
  background: #182235;
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.26);
}

body.theme-dark .featured-card:hover {
  border-color: rgba(148, 163, 184, 0.22);
}

body.theme-dark .featured-card-image {
  background: linear-gradient(180deg, #132034, #1a2740);
}

body.theme-dark .featured-card-badge {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.16);
}

.category-mosaic {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  min-height: 246px;
}

.category-mosaic[hidden] {
  display: none !important;
}

.category-mosaic-card {
  position: relative;
  min-height: 118px;
  grid-column: span 4;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(145deg, rgba(16, 42, 67, 0.24), rgba(255, 179, 0, 0.18)), var(--surface-soft);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.category-mosaic-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-mosaic-card-1,
.category-mosaic-card-6 {
  grid-column: span 5;
}

.category-mosaic-card-2,
.category-mosaic-card-4,
.category-mosaic-card-5,
.category-mosaic-card-7 {
  grid-column: span 4;
}

.category-mosaic-card-3,
.category-mosaic-card-8 {
  grid-column: span 3;
}

.category-mosaic-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.3)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.26), rgba(15, 23, 42, 0.02));
}

.category-mosaic-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 12px;
}

.category-mosaic-copy strong {
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 800;
}

.category-mosaic-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.category-mosaic-card:hover {
  transform: translateY(-1px);
}

body.theme-dark .category-mosaic-card {
  border-color: rgba(148, 163, 184, 0.14);
}

.featured-section .section-heading {
  margin-bottom: 12px;
}

.featured-section .eyebrow {
  display: none;
}

.featured-section .section-heading h2 {
  color: var(--muted);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.1;
}

.recent-products-section .section-heading h2 {
  color: var(--muted);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.1;
}

.category-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(max-content, 1fr);
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  width: 100%;
  padding: 0 2px 8px;
  margin-inline: -2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 42, 67, 0.24) transparent;
}

.category-grid::-webkit-scrollbar {
  height: 5px;
}

.category-grid::-webkit-scrollbar-thumb {
  background: rgba(16, 42, 67, 0.18);
  border-radius: 999px;
}

.category-card {
  min-width: 0;
  width: 100%;
  padding: 11px 16px;
  border-color: rgba(16, 42, 67, 0.08);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  opacity: 1;
  transform: none;
  animation: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  background: var(--surface-soft);
  color: var(--text);
  transform: none;
}

.category-card.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.category-card.is-active:hover {
  background: var(--text);
  color: var(--bg);
}

.subcategory-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.subcategory-strip[hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.subcategory-strip-content {
  min-width: 0;
}

.subcategory-strip-head {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.subcategory-strip-head strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.subcategory-strip-head span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.subcategory-chip-list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.subcategory-chip {
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.subcategory-chip.is-active {
  border-color: transparent;
  background: rgba(255, 106, 0, 0.1);
  color: var(--accent);
}

body.theme-dark .category-grid::-webkit-scrollbar-thumb {
  background: rgba(226, 232, 240, 0.22);
}

body.theme-dark .category-card {
  background: rgba(22, 32, 51, 0.98);
  border-color: rgba(148, 163, 184, 0.14);
  color: rgba(226, 232, 240, 0.8);
}

body.theme-dark .category-card:hover {
  background: rgba(26, 38, 59, 1);
  color: #f8fafc;
}

body.theme-dark .category-card.is-active {
  background: #f8fafc;
  color: #0f172a;
  border-color: #f8fafc;
}

body.theme-dark .scroll-filter-arrow {
  color: rgba(226, 232, 240, 0.68);
}

body.theme-dark .scroll-filter-arrow:hover {
  color: #f8fafc;
}

body.theme-dark .subcategory-strip {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(22, 32, 51, 0.98);
}

body.theme-dark .subcategory-strip-head strong {
  color: #f8fafc;
}

body.theme-dark .subcategory-chip {
  background: rgba(15, 23, 42, 0.54);
  border-color: transparent;
  color: rgba(226, 232, 240, 0.76);
}

body.theme-dark .subcategory-chip.is-active {
  border-color: transparent;
  background: rgba(255, 106, 0, 0.16);
  color: #ffd7b3;
}

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

.catalog-load-more {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 24px;
}

.catalog-load-more[hidden] {
  display: none !important;
}

.catalog-load-more-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.catalog-load-more-button:hover {
  color: var(--accent);
  transform: translateY(1px);
}

.catalog-load-more-button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
  outline-offset: 4px;
}

.catalog-load-more-button:disabled {
  cursor: default;
  opacity: 0.55;
  transform: none;
}

.catalog-load-more-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 999px;
  flex: 0 0 auto;
}

.catalog-load-more-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.catalog-toolbar .subcategory-strip {
  flex: 1 1 420px;
  min-width: min(100%, 420px);
  margin-bottom: 0;
}

.subcategory-strip .scroll-filter-arrow {
  display: none;
}

.catalog-search {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.catalog-sort {
  display: grid;
  gap: 8px;
  min-width: 240px;
}

.catalog-search-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.catalog-search input:focus,
.catalog-sort select:focus {
  outline: none;
  border-color: var(--blue-accent);
}

.catalog-sort select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}

.catalog-sort select:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 14px;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  padding: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #fbfbfb, #f2f2f2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 20px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px;
}

.product-card-badges .product-badge {
  margin: 0;
}

.product-discount-badge {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  overflow: hidden;
  border-radius: 999px;
  background: #111111;
  line-height: 1;
}

.product-discount-badge .product-badge {
  border: 0;
  margin: 0;
  line-height: 1;
}

.product-discount-badge-floating {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

.product-discount-badge-inline {
  order: 2;
  box-shadow: none;
}

.product-discount-badge-featured {
  right: 8px;
  bottom: 8px;
  transform: scale(0.86);
  transform-origin: right bottom;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.16);
}

.product-discount-badge-featured .product-badge {
  padding: 5px 8px;
  font-size: 0.66rem;
}

.product-discount-badge-featured .product-badge-offer {
  background: #ff7a1a;
}

.product-badge-offer {
  background: #ff6a00;
  color: #ffffff;
  border-radius: 999px 0 0 999px;
}

.product-badge-percent {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
  border-radius: 0 999px 999px 0;
}

.product-card h3,
.offer-card h3 {
  margin: 0;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.25;
  min-height: calc(1.25em * 2);
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card p {
  display: none;
  margin: 0;
  padding: 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 8px;
  padding: 0 20px;
  margin-top: auto;
}

.product-meta strong {
  font-size: 1.38rem;
  line-height: 1.05;
  color: var(--accent);
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.76rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.product-stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-accent);
  flex: 0 0 auto;
}

.product-card .button {
  margin: 0 20px;
}

.product-card-buy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0 20px;
  margin-top: 4px;
  border-radius: 0;
  overflow: hidden;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.product-card-buy .button {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  padding-left: 14px;
  padding-right: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.product-card-buy .button.is-added {
  background: rgba(22, 163, 74, 0.18);
}

.product-card-qty {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.product-card-buy.is-out {
  background: var(--surface-soft);
  border-color: var(--line);
}

.product-card-buy.is-out .product-card-qty {
  background: rgba(148, 163, 184, 0.14);
}

.product-card-qty-button {
  width: 32px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.product-card-qty-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.product-card-qty-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-card-qty-value {
  display: grid;
  place-items: center;
  min-width: 28px;
  padding: 0 4px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
}

.product-card-feedback {
  display: none;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.product-card-feedback.is-visible {
  display: none;
}

.product-card:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-card:hover .product-badge {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card:hover .product-badge-offer {
  color: #ffb37a;
  border-color: rgba(255, 179, 122, 0.32);
}

.product-card:hover .product-badge-percent {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

body.theme-dark .product-card:hover .product-badge {
  color: rgba(248, 250, 252, 0.72);
}

body.theme-dark .product-badge-percent {
  background: #f8fafc;
  color: #0f172a;
  border-color: #f8fafc;
}

.product-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-dark .product-card:hover p {
  color: rgba(226, 232, 240, 0.72);
}

.product-card:hover .product-stock {
  color: #86efac;
}

.product-card:hover .button {
  background: transparent;
  color: #ffffff;
  border-color: transparent;
}

.product-card:hover .product-card-qty {
  background: rgba(0, 0, 0, 0.14);
}

.product-card:hover .product-card-qty-button,
.product-card:hover .product-card-qty-value {
  color: #ffffff;
}

.product-card:hover .product-card-qty-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.product-card:hover .product-card-feedback {
  color: #86efac;
}

body.theme-dark .product-card-feedback {
  color: #ffffff;
}

body.theme-dark .product-card {
  background: #182235;
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
}

body.theme-dark .product-image {
  background: linear-gradient(180deg, #132034, #1a2740);
}

body.theme-dark .product-badge {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.16);
}

body.theme-dark .product-card-buy.is-out {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.14);
}

.product-card:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
}

.product-card .button:disabled {
  border-color: var(--line);
  color: #9a9a9a;
  background: var(--surface-soft);
  cursor: not-allowed;
  transform: none;
}

.product-card:hover .button:disabled {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.16);
}

body.theme-dark .product-card:hover .button:disabled {
  background: rgba(148, 163, 184, 0.12);
  color: rgba(226, 232, 240, 0.45);
  border-color: rgba(148, 163, 184, 0.16);
}

.product-empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-empty-state strong,
.product-empty-state p {
  margin: 0;
}

.product-empty-state p {
  color: var(--muted);
  line-height: 1.6;
}

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

.offer-card {
  padding: 24px;
  border-radius: 10px;
  background: var(--bg-alt);
}

.offer-card:nth-child(1) h3 {
  color: var(--blue-accent);
}

.offer-card:nth-child(2) h3 {
  color: var(--accent);
}

.offer-card:nth-child(3) h3 {
  color: var(--green-accent);
}

.cta-section {
  padding-bottom: 64px;
}

.shipping-section {
  padding-top: 0;
  padding-bottom: 20px;
}

.tracking-section {
  padding-top: 0;
  padding-bottom: 24px;
}

.tracking-card {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
}

.tracking-form {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.tracking-field {
  display: grid;
  gap: 8px;
  min-width: min(100%, 420px);
  flex: 1 1 320px;
}

.tracking-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  background: var(--surface);
  color: var(--text);
}

.tracking-field input:focus {
  outline: none;
  border-color: var(--blue-accent);
}

.tracking-result {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px;
}

.tracking-summary {
  display: grid;
  gap: 18px;
}

.tracking-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.tracking-summary-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

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

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

.tracking-info-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.tracking-info-card h4 {
  margin: 0 0 10px;
}

.tracking-info-card p,
.tracking-empty p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.tracking-items {
  display: grid;
  gap: 10px;
}

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

.tracking-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tracking-item strong,
.tracking-item span {
  display: block;
}

.tracking-item span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.88rem;
}

.tracking-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.tracking-empty strong {
  display: block;
}

.policies-section {
  padding-top: 0;
}

.policies-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.policies-intro-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.policies-card .section-heading {
  max-width: none;
}

.policy-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.policy-item h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.policy-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.shipping-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  background: var(--bg-alt);
}

.shipping-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.shipping-illustration {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent);
}

.shipping-illustration svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shipping-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

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

.shipping-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.shipping-item:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.shipping-item p {
  margin: 0;
  line-height: 1.55;
}

.shipping-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-soft);
}

.shipping-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shipping-item-blue .shipping-icon {
  color: var(--blue-accent);
}

.shipping-item-orange .shipping-icon {
  color: var(--accent);
}

.shipping-item-green .shipping-icon {
  color: var(--green-accent);
}

body.theme-dark .shipping-card {
  background: var(--surface-soft);
}

body.theme-dark .shipping-item {
  background: rgba(15, 23, 42, 0.55);
}

body.theme-dark .shipping-item:hover {
  border-color: rgba(96, 165, 250, 0.28);
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  background: var(--bg-alt);
}

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

.cta-form label {
  display: grid;
  gap: 8px;
}

.cta-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--surface);
  color: var(--text);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--blue-accent);
}

/* Footer redesign */
.site-footer-newsletter {
  margin-top: 28px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

body[data-store-mode="landing"] .site-footer-newsletter {
  margin-top: 20px;
}

body[data-store-mode="landing"] .page-shell {
  width: min(1180px, calc(100% - 24px));
}

body[data-store-mode="landing"] .footer-main {
  grid-template-columns: minmax(0, 1fr);
}

body[data-store-mode="landing"] .footer-column:not(.footer-brand) {
  display: none;
}

.landing-newsletter-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.theme-dark .landing-newsletter-card {
  background: linear-gradient(180deg, rgba(22, 32, 51, 0.96), rgba(15, 27, 49, 0.96));
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 12px max(16px, calc((100vw - 1180px) / 2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #ff7d1f, #ff6a00 60%, #e55f00);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.footer-newsletter-copy h2,
.info-hero-card h1,
.info-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.footer-newsletter-copy .eyebrow,
.footer-newsletter-copy p,
.newsletter-label,
.newsletter-feedback {
  color: rgba(255, 255, 255, 0.84);
}

.footer-newsletter-copy h2 {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.footer-newsletter-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.footer-newsletter-copy p:last-child,
.info-hero-card p:last-child,
.info-card > p:last-of-type {
  margin-bottom: 0;
}

.newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  justify-self: end;
}

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

.newsletter-label {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.newsletter-form input {
  min-height: 46px;
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.newsletter-form input::placeholder {
  color: #6b7280;
}

.newsletter-form input:focus {
  border-color: #ffffff;
}

.newsletter-form .button {
  min-width: 160px;
  min-height: 46px;
  background: #ffffff;
  border-color: #ffffff;
  color: #e55f00;
}

.newsletter-form .button:hover {
  background: #ecf3ff;
  border-color: #ecf3ff;
  color: #e55f00;
}

.newsletter-feedback {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.84rem;
}

.site-footer {
  margin-top: 20px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
  color: var(--footer-text);
  background: var(--footer-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.site-footer-commerce {
  margin-top: 0;
  padding-top: 36px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 28px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column a,
.footer-link-button {
  color: var(--footer-text);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-link-button:hover,
.social-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-title {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-brand-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand-head > div {
  display: none;
}

.footer-brand-mark {
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-brand-logo {
  height: 56px;
}

.footer-brand-copy {
  display: grid;
  gap: 8px;
  width: 100%;
}

.footer-brand-copy p {
  margin: 0;
  color: var(--footer-text);
  line-height: 1.65;
}

.footer-brand-copy strong {
  color: #ffffff;
  font-weight: 800;
}

.footer-brand-acronym {
  white-space: nowrap;
  color: #ffffff;
}

.footer-brand strong,
.footer-content strong {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text);
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-link-muted {
  opacity: 0.72;
  cursor: default;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--footer-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.trust-list,
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill,
.payment-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--footer-border);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.85rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--footer-border);
}

.footer-legal {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.footer-content strong {
  color: #ffffff;
}

.footer-content p,
.footer-copy {
  margin: 8px 0 0;
}

.footer-origin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
  color: var(--footer-text);
  font-size: 0.92rem;
}

.country-flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    to bottom,
    #fcd116 0%,
    #fcd116 50%,
    #003893 50%,
    #003893 75%,
    #ce1126 75%,
    #ce1126 100%
  );
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  margin: 0;
}

.site-footer:not(.site-footer-commerce) .footer-copy {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--footer-border);
}

.survey-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.survey-popup[hidden] {
  display: none;
}

.survey-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.48);
  backdrop-filter: blur(3px);
}

.survey-popup-dialog {
  position: relative;
  width: min(520px, 92vw);
  max-height: min(92vh, 720px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.survey-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #102a43;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.survey-popup-hero {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #f7fbff;
}

.survey-popup-hero[hidden],
.survey-card[hidden] {
  display: none;
}

.survey-popup-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.survey-popup-hotspot {
  position: absolute;
  left: 8%;
  width: 42%;
  height: 10%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0;
}

.survey-popup-hotspot:focus-visible {
  outline: 3px solid rgba(0, 87, 255, 0.75);
  outline-offset: 3px;
  border-radius: 14px;
}

.survey-popup-hotspot-primary {
  top: 58%;
}

.survey-popup-hotspot-secondary {
  top: 71%;
}

.survey-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--surface);
}

.survey-eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.survey-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  line-height: 1.08;
}

.survey-progress,
.survey-card p {
  margin: 0;
  color: var(--muted);
}

.survey-options {
  display: grid;
  gap: 10px;
}

.survey-option {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  padding: 13px 14px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.survey-option:hover,
.survey-option:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 122, 0, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.survey-card-thanks {
  text-align: center;
}

body.theme-dark .survey-popup-dialog,
body.theme-dark .survey-card {
  background: #102a43;
}

body.theme-dark .survey-option {
  background: rgba(255, 255, 255, 0.06);
}

.floating-help {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 34;
  display: grid;
  justify-items: end;
  gap: 0;
  pointer-events: none;
  --floating-help-width: 118px;
}

.floating-help > * {
  pointer-events: auto;
}

.floating-help-character {
  display: block;
  width: var(--floating-help-width);
  height: auto;
  margin-top: -8px;
  filter: drop-shadow(0 12px 18px rgba(16, 42, 67, 0.2));
  pointer-events: none;
  user-select: none;
}

.floating-help-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: var(--floating-help-width);
  min-height: 48px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 14px 32px rgba(16, 42, 67, 0.16);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-help-trigger > span:not(.floating-help-trigger-icon) {
  transition: opacity 0.2s ease, max-width 0.2s ease;
}

.floating-help-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.2);
}

.floating-help-trigger-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.floating-help-panel {
  position: relative;
  width: min(320px, calc(100vw - 36px));
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(16, 42, 67, 0.18);
}

.floating-help-panel[hidden] {
  display: none;
}

.floating-help-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.floating-help-panel h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.08;
}

.floating-help-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.floating-help-panel-character {
  display: none;
  width: 96px;
  height: auto;
  margin: -28px 14px -12px 0;
  pointer-events: none;
  user-select: none;
}

.floating-help-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.floating-help-actions {
  display: grid;
  gap: 8px;
}

.floating-help-actions .button {
  width: 100%;
  justify-content: center;
  min-height: 42px;
}

.button-whatsapp {
  gap: 8px;
  border-color: #25d366;
  background: #25d366;
  color: #ffffff;
}

.button-whatsapp:hover {
  background: #1eb85a;
  border-color: #1eb85a;
  color: #ffffff;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.floating-help-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--muted);
  cursor: pointer;
}

body.theme-dark .floating-help-trigger,
body.theme-dark .floating-help-panel {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(148, 163, 184, 0.18);
  color: #ffffff;
}

body.theme-dark .floating-help-panel p {
  color: rgba(255, 255, 255, 0.76);
}

body.theme-dark .floating-help-close {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

/* Support pages */
.info-page {
  padding-bottom: 24px;
}

.info-hero {
  padding-bottom: 20px;
}

.info-hero-card,
.info-sidebar-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.info-hero-card {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.09), transparent 26%),
    linear-gradient(135deg, var(--surface), var(--surface-soft));
}

.info-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.info-sidebar {
  position: sticky;
  top: 110px;
}

.info-sidebar-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.info-sidebar-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.info-sidebar-toggle .menu-toggle-bars {
  width: 18px;
  height: 14px;
}

.info-sidebar-links {
  display: grid;
  gap: 14px;
}

.policies-header-menu {
  display: none;
}

.policies-header-links {
  display: flex;
}

.info-sidebar-card a,
.info-sidebar-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.info-sidebar-card a:hover,
.info-sidebar-links a:hover {
  color: var(--text);
}

.info-sidebar-separator {
  display: block;
  height: 1px;
  background: var(--line);
}

.info-content {
  display: grid;
  gap: 22px;
}

.info-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-steps,
.faq-list {
  display: grid;
  gap: 14px;
}

.info-steps article,
.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.info-steps strong,
.faq-item strong {
  display: block;
  margin-bottom: 8px;
}

.support-form {
  display: grid;
  gap: 16px;
}

.support-form label {
  display: grid;
  gap: 8px;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--surface);
  color: var(--text);
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
}

.support-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.support-feedback {
  margin: 0;
  color: var(--muted);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 600;
}

.product-viewer {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.product-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.product-viewer-dialog {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 97%, var(--surface-soft) 3%);
  overflow: hidden;
}

.product-viewer-head {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 16px 20px 14px;
  border-bottom: 1px solid #eeeeee;
  background: color-mix(in srgb, var(--surface) 90%, transparent 10%);
  backdrop-filter: blur(10px);
}

.product-viewer-head-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.product-viewer-head h2 {
  margin: 0;
  font-size: clamp(1.34rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-viewer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 96%, transparent 4%);
  color: color-mix(in srgb, var(--muted) 72%, var(--text) 28%);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.product-viewer-close:hover {
  background: color-mix(in srgb, var(--surface-soft) 68%, var(--surface) 32%);
  color: var(--text);
  border-color: #d7d7d7;
}

.product-viewer-body {
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 16px 20px 18px;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--line-strong) 55%, transparent) transparent;
}

.product-viewer-body::-webkit-scrollbar {
  width: 8px;
}

.product-viewer-body::-webkit-scrollbar-track {
  background: transparent;
}

.product-viewer-body::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--line-strong) 58%, transparent);
  border-radius: 999px;
}

.product-viewer-gallery,
.product-viewer-content {
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-viewer-main {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface-soft) 78%, var(--surface) 22%);
  touch-action: pan-y;
}

.product-viewer-main img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-viewer-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.product-viewer-gallery-overlay[hidden],
.product-viewer-dots[hidden] {
  display: none !important;
}

.product-viewer-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82px;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-viewer-thumbs[hidden] {
  display: none !important;
}

.product-viewer-thumbs::-webkit-scrollbar {
  display: none;
}

.product-viewer-gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--text) 86%, transparent);
  cursor: pointer;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.product-viewer-gallery-arrow span {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.product-viewer-thumb {
  padding: 0;
  border: 1px solid #ededed;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  scroll-snap-align: start;
}

.product-viewer-thumb.is-active {
  border-color: color-mix(in srgb, var(--accent) 42%, #ffd9bf 58%);
}

.product-viewer-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-viewer-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 18px;
  margin-top: 8px;
  padding: 0;
}

.product-viewer-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line-strong) 45%, transparent);
  cursor: pointer;
}

.product-viewer-dot.is-active {
  width: 20px;
  background: var(--accent);
}

.product-viewer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.product-viewer-meta .product-badge,
.product-viewer-stock {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #ebebeb;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface-soft) 82%, var(--surface) 18%);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-viewer-meta .product-badge {
  margin: 0;
  color: var(--muted);
}

.product-viewer-stock.is-out {
  border-color: rgba(255, 106, 0, 0.18);
  background: rgba(255, 106, 0, 0.08);
  color: var(--accent);
}

.product-viewer-price-row {
  display: grid;
  gap: 6px;
  align-items: start;
}

.product-viewer-purchase-rail {
  display: block;
}

.product-viewer-price-row strong {
  font-size: clamp(2.25rem, 4.4vw, 3.15rem);
  color: var(--accent);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.product-viewer-price-row .price-stack {
  gap: 8px;
  align-items: flex-end;
}

.product-viewer-price-row .price-stack strong {
  font-size: clamp(2.25rem, 4.4vw, 3.15rem);
}

.product-viewer-price-row .price-original {
  font-size: 1rem;
}

.product-viewer-price-row .discount-chip {
  font-size: 0.72rem;
}

.product-viewer-sku {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.3;
}

.product-viewer-short,
.product-viewer-description p,
.product-viewer-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.product-viewer-section {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.product-viewer-related-section[hidden] {
  display: none !important;
}

.product-viewer-related-section--mobile {
  display: none;
}

.product-viewer-related-section--desktop {
  grid-column: 1 / -1;
  padding-top: 0;
}

.product-viewer-related-section > h3 {
  color: var(--accent);
}

.product-viewer-related-copy h3 {
  color: var(--text);
}

.product-viewer-section h3 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

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

.product-viewer-spec {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 12px 12px 11px;
  border: 1px solid #eeeeee;
  border-radius: 0;
  background: #fbfbfb;
}

.product-viewer-spec span {
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.product-viewer-spec strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-viewer-related-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 152px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.product-viewer-related-card {
  min-width: 0;
  scroll-snap-align: start;
  box-shadow: none;
}

.product-viewer-related-image {
  aspect-ratio: 1 / 1;
}

.product-viewer-related-copy {
  gap: 5px;
  padding: 7px 8px 8px;
}

.product-viewer-related-copy h3 {
  font-size: 0.78rem;
  line-height: 1.18;
  min-height: calc(1.18em * 2);
}

.product-viewer-related-copy strong {
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .product-viewer-related-section--desktop {
    display: none;
  }

  .product-viewer-related-section--mobile {
    display: grid;
  }
}

.product-viewer-add {
  width: 100%;
}

.product-viewer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 4px;
  align-items: stretch;
}

.product-viewer-buy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border-radius: 0;
  overflow: hidden;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.product-viewer-qty {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: rgba(0, 0, 0, 0.08);
}

.product-viewer-qty-button {
  width: 36px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.product-viewer-qty-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.product-viewer-qty-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-viewer-qty-value {
  display: grid;
  place-items: center;
  min-width: 30px;
  padding: 0 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-viewer-buy .product-viewer-add {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  overflow: hidden;
}

.product-viewer-buy.is-out {
  background: var(--surface-soft);
  border-color: var(--line);
}

.product-viewer-buy.is-processing .product-viewer-add::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.15) 100%);
  background-repeat: no-repeat;
  background-size: 180px 100%;
  animation: product-viewer-add-progress 0.9s linear infinite;
}

.product-viewer-buy.is-success {
  background: #16a34a;
  border-color: #16a34a;
}

.product-viewer-buy.is-out .product-viewer-qty {
  background: rgba(148, 163, 184, 0.14);
}

.product-viewer-feedback {
  min-height: 18px;
  margin: 0;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-viewer-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.theme-dark .product-viewer-feedback {
  color: #ffffff;
}

body.theme-dark .product-viewer-dialog {
  background: color-mix(in srgb, #101827 92%, #0b1220 8%);
  border-color: color-mix(in srgb, #263244 78%, transparent);
}

body.theme-dark .product-viewer-head {
  border-bottom-color: color-mix(in srgb, #223045 68%, transparent);
  background: color-mix(in srgb, #101827 88%, transparent 12%);
}

body.theme-dark .product-viewer-close,
body.theme-dark .product-viewer-gallery-arrow,
body.theme-dark .product-viewer-share,
body.theme-dark .product-viewer-whatsapp {
  background: color-mix(in srgb, #162234 78%, #101827 22%);
  color: #c9d2dd;
}

body.theme-dark .product-viewer-whatsapp {
  color: #25d366;
}

body.theme-dark .product-viewer-gallery-arrow {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.theme-dark .product-viewer-main,
body.theme-dark .product-viewer-thumb,
body.theme-dark .product-viewer-spec {
  border-color: color-mix(in srgb, #243244 72%, transparent);
  background: color-mix(in srgb, #131d2b 82%, #0f1725 18%);
}

body.theme-dark .product-viewer-meta .product-badge,
body.theme-dark .product-viewer-stock {
  border-color: color-mix(in srgb, #273547 70%, transparent);
  background: color-mix(in srgb, #162233 70%, #101827 30%);
}

body.theme-dark .product-viewer-purchase-rail {
  border-top-color: color-mix(in srgb, #243244 72%, transparent);
  background:
    linear-gradient(
      to top,
      color-mix(in srgb, #101827 92%, transparent 8%) 78%,
      color-mix(in srgb, #101827 22%, transparent 78%) 100%
    );
}

@keyframes product-viewer-add-progress {
  from {
    background-position: -180px 0;
  }

  to {
    background-position: 180px 0;
  }
}

.product-viewer-share,
.product-viewer-whatsapp {
  min-width: 50px;
  width: 50px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 97%, var(--surface-soft) 3%);
  border-radius: 0;
}

.product-viewer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.product-viewer-whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
}

.cart-panel {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.cart-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  transition: background-color 0.3s ease;
}

.cart-drawer {
  position: relative;
  margin-left: auto;
  width: min(420px, 100%);
  height: 100%;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.25s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.cart-panel.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.cart-items {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cart-item h3,
.cart-item p {
  margin: 0;
}

.cart-item h3 {
  font-size: 1rem;
}

.cart-item p {
  color: var(--muted);
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-button {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.cart-footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
  background: var(--surface);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.cart-tax-note,
.summary-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cart-checkout {
  width: 100%;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logo-shift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

@keyframes mobile-brand-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

@keyframes announcement-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cart-bump {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.payment-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.payment-guide-card {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.payment-guide-card img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

.payment-guide-card figcaption {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    row-gap: 8px;
    gap: 12px;
    min-height: 78px;
  }

  .mobile-brand-strip {
    display: block;
    grid-column: 1 / -1;
    order: 3;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border-top: 0;
  }

  .mobile-brand-strip__viewport {
    overflow: hidden;
    white-space: nowrap;
  }

  .mobile-brand-strip__track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    min-width: 100%;
    color: #777;
    font-size: 0.8rem;
    line-height: 1.25;
    animation: mobile-brand-marquee 20s linear infinite;
    will-change: transform;
  }

  .mobile-brand-strip__text {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0;
  }

  .header-category-bar {
    display: block;
    grid-column: 1 / -1;
    order: 4;
    padding-top: 0;
    border-top: 0;
  }

  .category-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
  }

  .brand {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
    z-index: 1;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-logo {
    height: 36px;
  }

  .brand-tagline {
    display: none;
  }

  .brand-name {
    display: none;
  }

  .header-center {
    grid-column: 1 / -1;
    order: 5;
    width: 100%;
    justify-items: start;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 45;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--header-bg);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
  }

  .site-nav-mobile-theme {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 2;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
    z-index: 2;
  }

  .cta-card,
  .shipping-card,
  .tracking-grid,
  .tracking-summary-head,
  .policies-grid,
  .section-heading-row,
  .product-viewer-body,
  .footer-newsletter,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
    .offers-grid,
    .shipping-points,
    .product-viewer-specs {
      grid-template-columns: 1fr 1fr;
    }

  .featured-section {
    padding-top: 0;
    padding-bottom: 4px;
  }

  .featured-section .section-heading {
    margin-bottom: 3px;
  }

  .featured-section .section-heading h2 {
    color: var(--muted);
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }

  .recent-products-section .section-heading h2 {
    color: var(--muted);
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }

  .featured-rail {
    grid-auto-columns: minmax(182px, 208px);
    gap: 12px;
    padding-bottom: 2px;
    min-height: 260px;
  }

  .featured-card-copy {
    gap: 5px;
    padding: 8px 10px 10px;
  }

  .featured-card-copy h3 {
    font-size: 0.9rem;
    line-height: 1.22;
    min-height: calc(1.22em * 2);
  }

  .product-viewer-dialog {
    width: min(100%, calc(100% - 12px));
    max-height: calc(100vh - 12px);
    margin: 6px auto;
  }

  .product-viewer-head {
    gap: 10px;
    align-items: start;
    padding: 10px 12px 8px;
  }

  .product-viewer-head h2 {
    font-size: clamp(1.15rem, 5.6vw, 1.5rem);
    line-height: 1.1;
  }

  .product-viewer-body {
    gap: 10px;
    padding: 10px 12px 12px;
  }

  .product-viewer-gallery,
  .product-viewer-content {
    gap: 12px;
  }

  .product-viewer-close {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }

  .featured-card-badge {
    padding: 4px 7px;
    font-size: 0.64rem;
  }

  .price-original {
    font-size: 0.74rem;
  }

  .discount-chip {
    padding: 2px 6px;
    font-size: 0.6rem;
  }

  .price-stack strong {
    font-size: 0.92rem;
  }

  .category-grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      overflow-x: auto;
      width: 100%;
      padding: 0 0 6px;
      margin-inline: 0;
      scroll-snap-type: x proximity;
    }

  .category-card {
      flex: 0 0 auto;
      min-width: max-content;
      width: auto;
      padding: 10px 13px;
      border-radius: 14px;
      font-size: 0.79rem;
      white-space: nowrap;
    }

  .subcategory-strip {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
        margin-bottom: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
      }

  .subcategory-strip-head {
      display: none;
    }

  .subcategory-strip::before,
  .subcategory-strip::after {
      content: none;
    }

  .subcategory-chip-list {
      flex-wrap: nowrap;
      gap: 6px;
      overflow-x: auto;
      width: 100%;
      padding: 0 0 2px;
      scrollbar-width: none;
    }

  .subcategory-chip-list::-webkit-scrollbar {
      display: none;
    }

  .subcategory-chip {
      flex: 0 0 auto;
      padding: 6px 8px;
        font-size: 0.7rem;
      }

  .catalog-toolbar {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      margin-bottom: 6px;
    }

  .catalog-toolbar .subcategory-strip {
      flex: 0 0 auto;
      min-width: 0;
      width: 100%;
    }

    .footer-content {
      flex-direction: column;
    }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .info-sidebar {
    position: static;
  }

  .info-sidebar-card {
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .info-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .policies-header-menu {
    display: inline-flex;
  }

  .policies-header-links {
    display: none;
  }

  .info-sidebar {
    display: block;
  }

  .info-sidebar-links {
    display: none;
    position: fixed;
    top: 86px;
    left: 10px;
    right: auto;
    z-index: 80;
    min-width: min(320px, calc(100vw - 32px));
    max-height: min(70vh, 520px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  }

  .info-sidebar-card.is-open .info-sidebar-links {
    display: grid;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    justify-self: stretch;
  }

  .announcement-host.is-visible {
    max-height: 120px;
  }

  .payment-guide-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .product-page {
    padding-top: 14px;
  }

  .product-page-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-page-info,
  .product-page-card {
    padding: 0;
  }

  .product-page-title {
    font-size: 1.55rem;
  }

  .product-page-actions {
    position: sticky;
    bottom: 0;
    z-index: 8;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 3px;
    margin: 0;
    padding: 8px 10px;
    border-top: 1px solid var(--line);
    background: var(--surface);
  }

  .product-page-buy {
    width: 100%;
  }

  .product-page-share,
  .product-page-whatsapp {
    width: 42px;
    min-width: 42px;
  }

  .product-page-trust-desktop {
    display: none;
  }

  .product-page-trust-mobile {
    display: grid;
  }

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

  .offers-grid,
  .shipping-points {
    grid-template-columns: 1fr;
  }

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

  .product-viewer-spec {
    gap: 3px;
    padding: 10px 10px 9px;
  }

  .product-viewer-spec span {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .product-viewer-spec strong {
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .section {
    padding: 30px 0;
  }

  #destacados.section {
    padding-top: 10px;
    padding-bottom: 2px;
  }

  #destacados .section-heading {
    margin-bottom: 2px;
  }

  #destacados .eyebrow {
    margin-bottom: 4px;
  }

  #destacados .featured-rail {
    padding-bottom: 0;
    min-height: 260px;
  }

  .category-mosaic {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    min-height: 292px;
  }

  .category-mosaic-card {
    min-height: 104px;
    grid-column: span 5;
  }

  .category-mosaic-card-1,
  .category-mosaic-card-4,
  .category-mosaic-card-5,
  .category-mosaic-card-8 {
    grid-column: span 6;
  }

  .category-mosaic-card-2,
  .category-mosaic-card-3,
  .category-mosaic-card-6,
  .category-mosaic-card-7 {
    grid-column: span 4;
  }

  .category-mosaic-copy {
    padding: 10px;
  }

  .category-mosaic-copy strong {
    font-size: 0.86rem;
  }

  .category-mosaic-copy small {
    font-size: 0.66rem;
  }

  #catalogo.section-tight {
    padding-top: 8px;
    padding-bottom: 14px;
  }

  #catalogo .catalog-toolbar {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 0 6px;
    min-height: 72px;
  }

  .brand {
    position: static;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-copy {
    display: none;
  }

  .mobile-brand-strip__track {
    font-size: 0.76rem;
    gap: 32px;
  }

  .category-menu-toggle,
  .menu-toggle,
  .icon-link,
  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .category-menu-toggle .icon-button {
    width: 24px;
    height: 24px;
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle-desktop {
    display: none;
  }

  .cart-button {
    gap: 6px;
  }

  .header-category-bar,
  .catalog-toolbar .subcategory-strip {
    display: none !important;
  }

  .subcategory-strip {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        margin-bottom: 8px;
        padding: 0;
        border: 0;
      border-radius: 0;
      background: transparent;
    }

  .subcategory-strip .scroll-filter-arrow {
      display: grid;
    }

  .subcategory-strip-head {
      display: none;
    }

  .subcategory-chip-list {
      flex-wrap: nowrap;
      gap: 6px;
      overflow-x: auto;
      width: 100%;
      padding: 0 0 2px;
      scrollbar-width: none;
    }

  .subcategory-chip-list::-webkit-scrollbar {
      display: none;
    }

  .subcategory-chip {
      flex: 0 0 auto;
      padding: 6px 8px;
      font-size: 0.7rem;
    }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
  }

  .catalog-load-more {
    margin-top: 18px;
  }

  .catalog-load-more-button {
    min-height: 38px;
    padding: 6px 10px;
    gap: 8px;
    font-size: 0.92rem;
  }

  .catalog-load-more-icon {
    width: 25px;
    height: 25px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 12px;
    min-width: 0;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  }

  .product-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    padding: 0;
  }

  .product-discount-badge-floating {
    right: 8px;
    bottom: 8px;
  }

  .product-card-badges {
    gap: 5px;
    padding: 0 10px;
  }

  .product-badge {
    padding: 4px 7px;
    font-size: 0.64rem;
  }

  .product-card h3,
  .product-meta,
  .product-card-buy,
  .product-card-feedback {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-card h3 {
    font-size: 0.86rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.2em * 2);
  }

  .product-card p {
    display: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-meta {
    gap: 4px;
    align-items: center;
    margin-top: auto;
  }

  .product-meta strong {
    font-size: 1.12rem;
  }

  .product-stock {
    font-size: 0.68rem;
    gap: 4px;
    letter-spacing: 0.01em;
  }

  .product-stock::before {
    width: 6px;
    height: 6px;
  }

  .product-card-buy {
    grid-template-columns: auto minmax(0, 1fr);
    margin-top: 4px;
    align-self: stretch;
    gap: 0;
    border-radius: 0;
  }

  .product-card .button {
    min-height: 36px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: normal;
    line-height: 1.2;
  }

  .product-card-qty {
    min-height: 36px;
    min-width: 82px;
    border-radius: 0;
  }

  .product-card-qty-button {
    width: 26px;
    font-size: 0.86rem;
  }

  .product-card-qty-value {
    min-width: 20px;
    font-size: 0.74rem;
  }

  .product-card-feedback {
    display: none;
    min-height: 0;
    padding: 0;
    margin: 0;
  }

  .category-card {
      flex: 0 0 auto;
      min-width: max-content;
      width: auto;
      padding: 10px 13px;
      min-height: 0;
      border-radius: 14px;
      font-size: 0.79rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
  }

  .catalog-toolbar {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      margin-bottom: 14px;
    }

  .catalog-toolbar .subcategory-strip {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
  }

  .header-search {
    width: 100%;
    justify-self: stretch;
    margin-top: 2px;
  }

  .site-nav-mobile-theme {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
  }

  .site-nav-mobile-theme-icons {
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .theme-toggle-switch {
    width: auto;
    min-width: 46px;
    height: 28px;
    padding: 0;
    border-radius: 999px;
    border-color: rgba(22, 163, 74, 0.24);
    background: rgba(22, 163, 74, 0.16);
  }

  .theme-toggle-switch-track {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 46px;
    height: 28px;
    padding: 3px;
    border-radius: 999px;
  }

  .theme-toggle-switch-thumb {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
    transform: translateX(0);
    transition: transform 0.28s ease, background-color 0.28s ease;
  }

  body.theme-dark .theme-toggle-switch-thumb {
    transform: translateX(18px);
    background: #0f172a;
  }

  .theme-toggle-switch .theme-icon {
    display: none;
  }

  .catalog-search,
  .catalog-sort {
    max-width: none;
    width: 100%;
  }

  .tracking-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .tracking-section {
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .tracking-card {
    gap: 14px;
    padding: 18px 16px;
  }

  .tracking-card .section-heading {
    margin-bottom: 0;
  }

  .tracking-card .section-heading h2 {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem);
    line-height: 1.08;
  }

  .tracking-card .section-heading p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .tracking-field {
    gap: 6px;
    min-width: 0;
    flex-basis: auto;
  }

  .tracking-field input {
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .tracking-form .button {
    width: 100%;
    min-height: 42px;
  }

  .tracking-result {
    padding: 14px;
  }

  .tracking-summary {
    gap: 14px;
  }

  .tracking-summary-head h3 {
    font-size: 1.2rem;
  }

  .tracking-badges {
    gap: 8px;
  }

  .tracking-grid {
    gap: 12px;
  }

  .tracking-info-card {
    padding: 14px;
  }

  .tracking-items {
    gap: 8px;
  }

  .tracking-item {
    gap: 8px;
    padding-bottom: 10px;
  }

  .tracking-total {
    padding-top: 8px;
    font-size: 0.96rem;
  }

  .shipping-section {
    padding-bottom: 10px;
  }

  .shipping-card {
    gap: 18px;
    padding: 18px 16px;
  }

  .shipping-intro {
    gap: 12px;
  }

  .shipping-illustration {
    width: 52px;
    height: 52px;
  }

  .shipping-card h2 {
    font-size: clamp(1.4rem, 6vw, 1.82rem);
    line-height: 1.08;
  }

  .shipping-copy {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .shipping-points {
    gap: 10px;
  }

  .shipping-item {
    gap: 10px;
    padding: 12px;
  }

  .shipping-item p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .shipping-icon {
    width: 34px;
    height: 34px;
  }

  .shipping-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 4px;
  }

  .hero-banner,
  .hero-track,
  .hero-fallback {
    min-height: 306px;
  }

  body[data-store-mode="landing"] .hero-banner,
  body[data-store-mode="landing"] .landing-hero-overlay {
    min-height: 480px;
  }

  body[data-store-mode="landing"] .landing-hero-overlay {
    padding: 18px;
    align-items: flex-end;
  }

  body[data-store-mode="landing"] .landing-hero-card {
    padding: 20px;
    border-radius: 20px;
  }

  body[data-store-mode="landing"] .landing-promise-grid {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    inset: auto 12px 8px;
    gap: 8px;
  }

  .hero-control {
    width: 38px;
    height: 38px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .brand-tagline {
    display: none;
  }

  .announcement-bar__inner {
    width: min(100% - 20px, 1180px);
    min-height: 58px;
    gap: 12px;
  }

  .announcement-bar__message {
    font-size: 0.89rem;
  }

  .brand-name {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  .site-footer-newsletter {
    margin-top: 18px;
  }

  .footer-newsletter,
  .info-hero-card,
  .info-sidebar-card,
  .info-card {
    padding: 18px;
  }

  .floating-help {
    right: 12px;
    bottom: 12px;
    gap: 0;
    --floating-help-width: 96px;
  }

  .floating-help-character {
    width: var(--floating-help-width);
    margin-top: -6px;
  }

  .floating-help-trigger {
    min-height: 44px;
    padding: 0 14px 0 10px;
    font-size: 0.88rem;
  }

  .floating-help-trigger-icon {
    width: 24px;
    height: 24px;
  }

  .floating-help.is-compact {
    --floating-help-width: 44px;
  }

  .floating-help.is-compact .floating-help-character,
  .floating-help.is-compact .floating-help-trigger > span:not(.floating-help-trigger-icon) {
    display: none;
  }

  .floating-help.is-compact .floating-help-trigger {
    width: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  .floating-help-panel {
    width: min(300px, calc(100vw - 24px));
    padding: 16px 16px 14px;
  }

  .floating-help-panel h3 {
    font-size: 1.27rem;
  }

  .floating-help-panel-character {
    display: block;
    width: 125px;
  }

  .floating-help-panel p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .footer-newsletter {
    border-radius: 18px 18px 0 0;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-newsletter-copy h2 {
    font-size: 0.96rem;
  }

  .footer-newsletter-copy p {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .footer-main {
    gap: 18px;
  }

  .footer-column {
    gap: 8px;
  }

  .site-footer-commerce .footer-main > .footer-column:not(.footer-brand) {
    display: none;
  }

  .footer-bottom {
    gap: 8px;
    padding-top: 14px;
  }

  .shipping-intro {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
    border-radius: 0;
    margin-top: auto;
    height: min(88vh, 720px);
  }

  .product-viewer-dialog {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    margin: 6px;
    border-radius: 0;
  }

  .product-viewer-head,
  .product-viewer-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-viewer-head {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .product-viewer-head h2 {
    font-size: clamp(1.22rem, 5vw, 1.52rem);
    line-height: 1.08;
    max-width: none;
  }

  .product-viewer-body {
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .product-viewer-main {
    border-radius: 0;
  }

  .product-viewer-main img {
    aspect-ratio: 1 / 1;
  }

  .product-viewer-gallery-overlay {
    padding: 0 8px;
  }

  .product-viewer-thumbs {
    grid-auto-columns: 72px;
    gap: 8px;
  }

  .product-viewer-thumb {
    border-radius: 0;
  }

  .product-viewer-gallery-arrow {
    width: 32px;
    height: 32px;
    border-radius: 0;
  }

  .product-viewer-meta {
    gap: 6px;
  }

  .product-viewer-price-row {
    gap: 6px;
  }

  .product-viewer-price-row strong {
    font-size: clamp(1.8rem, 7.8vw, 2.25rem);
  }

  .product-viewer-price-row .price-stack strong {
    font-size: clamp(1.8rem, 7.8vw, 2.25rem);
  }

  .product-viewer-sku {
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .product-viewer-short,
  .product-viewer-description p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .product-viewer-related-rail {
    grid-auto-columns: minmax(126px, 142px);
    gap: 8px;
    padding-bottom: 4px;
  }

  .product-viewer-related-copy {
    padding: 6px 7px 7px;
  }

  .product-viewer-related-copy h3 {
    font-size: 0.75rem;
  }

  .product-viewer-actions {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 3px;
  }

  .product-viewer-buy {
    width: 100%;
    border-radius: 0;
  }

  .product-viewer-share,
  .product-viewer-whatsapp {
    width: 42px;
    min-width: 42px;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    white-space: nowrap;
  }

  .product-viewer-whatsapp .whatsapp-icon {
    width: 27px;
    height: 27px;
  }

  .product-viewer-purchase-rail {
    position: sticky;
    bottom: 0;
    z-index: 6;
    display: block;
    margin-top: 2px;
    border-top: 1px solid #eeeeee;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
    background:
      linear-gradient(
        to top,
        color-mix(in srgb, var(--surface) 98%, transparent 2%) 78%,
        color-mix(in srgb, var(--surface) 22%, transparent 78%) 100%
      );
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.04);
  }

  .product-viewer-content {
    padding-bottom: 14px;
  }

  .product-viewer-buy .product-viewer-add {
    min-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .support-form-actions {
    align-items: stretch;
  }

  .support-form-actions .button {
    width: 100%;
  }

  .payment-guide-card img {
    height: 420px;
  }
}
