:root {
  --blue: #0b3a75;
  --blue-2: #0f5ca8;
  --green: #1bbf83;
  --orange: #ff8b32;
  --ink: #102033;
  --muted: #66758a;
  --line: #dce5ef;
  --bg: #f6f9fc;
  --card: #ffffff;
  --shadow: 0 18px 55px rgba(16, 32, 51, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(27, 191, 131, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,252,0.98));
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

body.page-ready .announcement-bar,
body.page-ready .site-header,
body.page-ready .checkout-header,
body.page-ready main,
body.page-ready .site-footer,
body.page-ready .checkout-shell,
body.page-ready .admin-shell {
  animation: pageEnter 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-leaving::before {
  opacity: 1;
  transform: scale(1);
}

body.page-leaving .announcement-bar,
body.page-leaving .site-header,
body.page-leaving .checkout-header,
body.page-leaving main,
body.page-leaving .site-footer,
body.page-leaving .checkout-shell,
body.page-leaving .admin-shell {
  opacity: 0;
  transform: translateY(14px) scale(0.992);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body.page-leaving .announcement-bar,
  body.page-leaving .site-header,
  body.page-leaving .checkout-header,
  body.page-leaving main,
  body.page-leaving .site-footer,
  body.page-leaving .checkout-shell,
  body.page-leaving .admin-shell {
    transition: none;
  }

  body.page-ready .announcement-bar,
  body.page-ready .site-header,
  body.page-ready .checkout-header,
  body.page-ready main,
  body.page-ready .site-footer,
  body.page-ready .checkout-shell,
  body.page-ready .admin-shell {
    animation: none;
  }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 239, 0.9);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background-color: white;
  background-image:
    linear-gradient(var(--blue), var(--blue)),
    linear-gradient(var(--blue), var(--blue)),
    linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 22px 2px, 22px 2px, 22px 2px;
  background-position:
    center calc(50% - 7px),
    center center,
    center calc(50% + 7px);
  cursor: pointer;
  appearance: none;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(16, 73, 134, 0.28);
  box-shadow: 0 10px 22px rgba(16, 73, 134, 0.12);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: none;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}
.brand-logo {
  width: 240px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}
.brand-context {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.header-search input,
.filters select,
.quote-form input,
.quote-form select,
.quote-form textarea,
.checkout input,
.checkout textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header-search input:focus,
.filters select:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.checkout input:focus,
.checkout textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(15, 92, 168, 0.12);
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.header-actions { display: flex; gap: 8px; }
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.store-link { min-width: auto; padding-inline: 16px; }
.icon-button b {
  margin-inline-start: 3px;
  color: var(--green);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 69;
  pointer-events: none;
  background: rgba(16, 32, 51, 0.28);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.site-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  width: min(86vw, 360px);
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(-104%);
  transition: transform 0.24s ease;
}

.site-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 1.15rem;
}

.site-menu nav {
  display: grid;
  gap: 10px;
}

.site-menu nav a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfe;
  color: var(--blue);
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-menu nav a:hover {
  transform: translateX(4px);
  border-color: var(--green);
  background: #eefaf5;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  pointer-events: auto;
  opacity: 1;
}

body.menu-open .site-menu {
  transform: translateX(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(36px, 7vw, 90px) clamp(16px, 5vw, 72px) 48px;
  background:
    radial-gradient(circle at 70% 20%, rgba(27, 191, 131, 0.16), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}
h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero p,
.section-heading p,
.wholesale p,
.why-grid p,
.site-footer p,
.medical-disclaimer {
  color: var(--muted);
  line-height: 1.7;
}
.hero p { max-width: 600px; font-size: 1.12rem; }
.hero-actions, .trust-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: white; box-shadow: 0 12px 30px rgba(11, 58, 117, 0.22); }
.button.ghost { background: white; color: var(--blue); border: 1px solid var(--line); }
.button.soft { background: #eaf3fb; color: var(--blue); }
.button.whatsapp { background: #25d366; color: white; }
.button.full { width: 100%; }
.button:disabled,
.button[aria-disabled="true"] {
  background: #edf2f7;
  color: #97a6b8;
  box-shadow: none;
  cursor: not-allowed;
}
.button:disabled:hover,
.button[aria-disabled="true"]:hover {
  transform: none;
}
.trust-row { margin-top: 24px; color: var(--muted); font-weight: 700; }
.trust-row span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-visual.logo-hero {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 86% 8%, rgba(27, 191, 131, 0.18), transparent 24%),
    radial-gradient(circle at 6% 88%, rgba(15, 92, 168, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fbfe 0%, #ffffff 52%, #eafbf4 100%);
  border: 1px solid rgba(220, 229, 239, 0.9);
}

.hero-visual.logo-hero::before {
  content: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.store-hero-carousel {
  min-height: clamp(420px, 54vw, 620px);
  background: linear-gradient(135deg, #eef6fb, #ffffff 48%, #eafbf4);
  border: 1px solid rgba(220, 229, 239, 0.9);
  isolation: isolate;
}

.store-hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.store-hero-track.is-resetting {
  transition: none;
}

.store-hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: auto;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.store-hero-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.store-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 47, 73, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.store-hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(15, 47, 73, 0.28);
  transition: width 0.25s ease, background 0.25s ease;
}

.store-hero-dots span.active {
  width: 24px;
  background: var(--blue);
}

.store-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(220, 229, 239, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(15, 47, 73, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(12px);
}

.store-hero-arrow:hover,
.store-hero-arrow:focus-visible {
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 47, 73, 0.22);
  transform: translateY(-50%) scale(1.06);
}

.store-hero-prev {
  left: 18px;
}

.store-hero-next {
  right: 18px;
}

.hero-visual.logo-hero img {
  position: relative;
  z-index: 1;
  width: min(78%, 470px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
}
.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 42px rgba(16, 32, 51, 0.16);
}
.hero-card span { display: block; margin-top: 4px; color: var(--muted); }

.section { padding: 42px clamp(16px, 5vw, 72px); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.section-heading h2 { margin-bottom: 0; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 14px;
  overflow: visible;
  padding-bottom: 8px;
}
.category-card,
.product-card,
.filter-card,
.size-guide,
.why-grid article,
.quote-form,
.review-grid blockquote,
.medical-disclaimer {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 14px 35px rgba(16, 32, 51, 0.06);
}
.category-card {
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: var(--green); }
.category-card .cat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #eaf3fb;
  color: var(--blue);
  font-weight: 900;
  overflow: hidden;
}
.category-card .cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category-card span { color: var(--muted); font-size: 0.9rem; }

.categories-page,
.products-page,
.about-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.home-categories {
  padding-top: 12px;
  padding-bottom: 18px;
}

.categories-hero,
.products-hero {
  padding: clamp(40px, 7vw, 86px) clamp(16px, 5vw, 72px) 28px;
}

.categories-hero h1,
.products-hero h1 {
  margin-bottom: 16px;
}

.categories-hero p,
.products-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.products-catalog {
  padding-top: 18px;
}

.categories-catalog {
  padding-top: 18px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(16px, 5vw, 72px) 34px;
}
.about-hero h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  color: var(--blue);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
}
.about-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
}
.about-hero-logo {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(27, 191, 131, 0.16), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(15, 92, 168, 0.12), transparent 32%),
    linear-gradient(135deg, #f8fbfe 0%, #ffffff 58%, #eafbf4 100%);
  box-shadow: 0 26px 70px rgba(16, 32, 51, 0.08);
}
.about-hero-logo img {
  width: min(76%, 340px);
  height: auto;
  object-fit: contain;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-values article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.05);
}
.about-values strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.08rem;
}
.about-values p,
.about-story p {
  color: var(--muted);
  line-height: 1.75;
}
.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.about-story h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}
.about-story p {
  font-size: 1.12rem;
}

.category-page-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  overflow: visible;
}

.category-page-card {
  min-height: 288px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 12px;
}

.category-page-card .cat-icon {
  width: 116px;
  height: 116px;
  margin-bottom: 8px;
  border-radius: 24px;
}

.category-page-card em {
  margin-top: 8px;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.filters {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
}
.filter-card, .size-guide {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
}
.filter-card label, .checkout label { color: var(--muted); font-size: 0.85rem; font-weight: 800; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image {
  position: relative;
  height: 215px;
  padding: 14px;
  background: #eaf3fb;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stock-pill {
  position: absolute;
  top: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
}
.stock-pill { left: 12px; background: var(--green); }
.stock-pill.low { background: var(--orange); }
.stock-pill.out { background: #7b8794; }
.product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}
.product-body h3 { margin-bottom: 0; font-size: 1.02rem; }
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.price { color: var(--blue); font-size: 1.2rem; font-weight: 900; }
.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 6px;
}

.product-body > .button.full {
  margin-top: 0;
}

.why-showcase {
  display: grid;
  gap: 28px;
  padding-top: 32px;
}

.why-showcase > h2 {
  margin: 0;
  color: #2548a6;
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 900;
}

.why-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 20px;
}

.why-showcase-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  color: white;
  isolation: isolate;
  box-shadow: 0 18px 42px rgba(18, 59, 93, 0.16);
}

.why-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(37, 72, 166, 0.22), rgba(12, 45, 71, 0.28)),
    var(--card-image) center / cover no-repeat,
    linear-gradient(135deg, #eaf3fb, #ffffff);
  transform: scale(1.02);
}

.why-showcase-card-contain::before {
  background:
    linear-gradient(135deg, rgba(37, 72, 166, 0.18), rgba(12, 45, 71, 0.22)),
    var(--card-image) center / contain no-repeat,
    linear-gradient(135deg, #eaf3fb, #ffffff);
  transform: none;
}

.why-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 24, 48, 0.08) 0%, rgba(9, 24, 48, 0.78) 100%);
}

.why-showcase-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 430px;
}

.why-showcase-large.why-showcase-card-contain {
  aspect-ratio: 964 / 896;
  min-height: auto;
}

.why-showcase-card strong {
  color: white;
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  line-height: 1.08;
}

.why-showcase-card p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;
  row-gap: 24px;
}
.why-grid .section-heading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
  text-align: center;
}
.why-grid .section-heading h2 {
  margin: 0;
}
.why-grid article {
  padding: 22px;
  border-radius: var(--radius);
}
.why-grid article strong { color: var(--blue); font-size: 1.15rem; }

.about-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.about-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-band h2 {
  margin-bottom: 18px;
}

.wholesale {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
}
.quote-form { display: grid; gap: 12px; padding: 22px; border-radius: 24px; }
textarea { min-height: 98px; resize: vertical; }
.form-status { min-height: 24px; margin: 0; color: var(--green); font-weight: 800; }

.order-success-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 120;
  display: grid;
  gap: 8px;
  width: min(430px, calc(100vw - 32px));
  padding: 26px 28px;
  border: 1px solid rgba(27, 191, 131, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 56px rgba(16, 32, 51, 0.18);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, calc(-50% + 18px)) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.order-success-toast::before {
  content: "";
  width: 46px;
  height: 46px;
  justify-self: center;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.24);
}

.order-success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.order-success-toast strong {
  color: var(--blue);
  font-size: 1rem;
}

.order-success-toast span {
  color: var(--muted);
  line-height: 1.45;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  color: white;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(8, 111, 75, 0.28);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(8, 111, 75, 0.34);
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reviews .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.reviews .section-heading h2 {
  margin: 0;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid blockquote {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.7;
}
.medical-disclaimer {
  margin: 28px clamp(16px, 5vw, 72px);
  padding: 18px 22px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding: 34px clamp(16px, 5vw, 72px);
  color: white;
  background: #071f3f;
}
.site-footer p {
  line-height: 1.9;
}
.site-footer p, .site-footer a { color: #c8d6e6; }
.site-footer a {
  display: inline-block;
  margin: 3px 0;
}

.product-dialog {
  width: min(1040px, calc(100% - 24px));
  border: 0;
  border-radius: 24px;
  padding: 0;
  box-shadow: var(--shadow);
}
.product-dialog::backdrop { background: rgba(7, 31, 63, 0.55); }
.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-size: 1.5rem;
  cursor: pointer;
}
.detail {
  display: grid;
  gap: 0;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
#productDetail.is-switching .detail {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}
#productDetail.is-entering .detail {
  opacity: 0;
  transform: translateY(-8px) scale(0.99);
}
.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: start;
}
.detail-left {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  min-height: 100%;
  background: linear-gradient(135deg, #f8fbfe, #eafbf4);
}
.detail-media {
  display: grid;
  place-items: start center;
  min-height: 560px;
}
.detail-media img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center top;
}
.detail-qr-slot {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(15, 64, 124, 0.1);
  text-align: center;
}
.qr-code-box {
  display: grid;
  place-items: center;
  width: min(150px, 42vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(15, 64, 124, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(15, 64, 124, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(15, 64, 124, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 14px 14px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.qr-code-box img {
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 16px;
  object-fit: contain;
  background: white;
}
.detail-qr-slot p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}
.detail-info { padding: 34px; }
.detail-info h2 { margin-bottom: 10px; }
.detail-subtitle {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.description-language {
  display: inline-flex;
  gap: 6px;
  margin: 8px 0 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfe;
}
.description-language button {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}
.description-language button.selected {
  color: white;
  background: var(--blue);
}
#productDescription[dir="rtl"] {
  text-align: right;
  line-height: 1.9;
}
.option-group { margin: 18px 0; }
.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 72px 42px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.quantity-control button,
.quantity-control input {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue);
  font: inherit;
  font-weight: 900;
  text-align: center;
}
.quantity-control button {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.quantity-control button:hover {
  border-color: var(--green);
  background: #eafbf4;
}
.quantity-control button:disabled,
.quantity-control input:disabled {
  background: #edf2f7;
  color: #97a6b8;
  cursor: not-allowed;
}
.quantity-control button:disabled:hover {
  border-color: var(--line);
  background: #edf2f7;
}
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}
.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 8px 12px;
  color: var(--blue);
  font-weight: 800;
}
.chip.selected,
.chip[aria-pressed="true"] {
  border-color: var(--green);
  background: #eafbf4;
  color: #086f4b;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.spec-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfe;
}
.detail-related-panel {
  padding: 2px 34px 34px;
}
.detail-related-panel h3 {
  margin-bottom: 14px;
}
.related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.related-row button {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 10px;
  color: var(--blue);
  font-weight: 800;
  text-align: start;
  cursor: pointer;
}
.related-row img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: #eaf3fb;
  object-fit: contain;
}
.related-row button span {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.related-row button strong {
  color: var(--text);
  max-width: 100%;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
}
.related-row button small {
  font-size: 0.95rem;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  height: 100vh;
  padding: 20px;
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { position: relative; display: flex; justify-content: space-between; align-items: center; }
.drawer-header .dialog-close { position: static; background: #eef5fb; }
.cart-items { overflow-y: auto; display: grid; gap: 10px; align-content: start; padding: 12px 0; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.cart-line img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.cart-line button { border: 0; background: #fff2f2; color: #b42318; border-radius: 10px; padding: 8px; cursor: pointer; }
.checkout { display: grid; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.15rem; }
.checkbox-row { display: flex; gap: 8px; align-items: center; }
.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(7, 31, 63, 0.35);
}
.overlay.show { display: block; }

.admin-page {
  background: #f6f9fc;
}

.admin-header {
  grid-template-columns: auto 1fr auto;
}

.admin-role {
  align-self: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-shell {
  display: grid;
  gap: 24px;
  padding: 34px clamp(16px, 5vw, 72px) 56px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: start;
}

.admin-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.admin-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 35px rgba(16, 32, 51, 0.07);
}

.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}

.admin-card label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.admin-section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.admin-section-title h2 {
  margin-bottom: 0;
}

.approval-list {
  display: grid;
  gap: 12px;
}

.approval-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfe;
}

.approval-item p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.approval-actions {
  display: flex;
  gap: 8px;
}

.order-list {
  gap: 14px;
}

.order-item {
  align-items: start;
}

.order-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.order-status-control {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.order-status-control span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-products {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.order-product-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.order-product-line img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: #eef5fb;
}

.order-product-line span,
.order-product-line small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.order-product-line b {
  white-space: nowrap;
}

.status-chip {
  display: inline-flex;
  width: max-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf3fb;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.checkout-page {
  background: #ffffff;
}

.checkout-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid #ebedf0;
  background: #fff;
}

.checkout-header .brand {
  margin-right: auto;
}

.checkout-return {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 72px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

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

.checkout-panel {
  display: grid;
  gap: 18px;
}

.checkout-panel h1,
.checkout-panel h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  line-height: 1.15;
}

.checkout-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.checkout-title-row a,
.checkout-muted-link {
  color: #c75300;
  text-decoration: underline;
  font-weight: 600;
}

.field-wrap {
  position: relative;
  display: block;
}

.field-wrap span {
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 1;
  color: #68707a;
  font-size: 0.78rem;
}

.field-wrap input,
.field-wrap select {
  width: 100%;
  min-height: 60px;
  padding: 22px 14px 8px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  color: #151515;
  outline: none;
}

.field-wrap input:focus,
.field-wrap select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(15, 92, 168, 0.12);
}

.checkout-check {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #111;
  font-weight: 500;
}

.checkout-check input {
  width: 23px;
  height: 23px;
  accent-color: var(--blue);
}

.checkout-check.strong {
  padding: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  font-weight: 800;
}

.checkout-protection {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfe;
}

.checkout-protection.not-configured {
  border-color: #ffd9a8;
  background: #fff8ee;
}

.checkout-protection.not-configured #turnstileWidget {
  color: #8a4b00;
  font-weight: 800;
}

.delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px;
  border-radius: 14px;
  background: #f1f1f1;
}

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

.delivery-option {
  min-height: 64px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

.delivery-option.active {
  background: #fff;
  box-shadow: 0 0 0 2px #dedede, 0 2px 9px rgba(0, 0, 0, 0.12);
}

.checkout-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.order-summary {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e2e5e9;
  border-radius: 18px;
  background: #f7f8fa;
}

.order-summary h2 {
  margin: 0;
  color: #111;
  font-size: 1.3rem;
}

.checkout-items {
  display: grid;
  gap: 12px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.checkout-item img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.checkout-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e0e3e7;
  font-size: 1.12rem;
}

.empty-checkout {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
}

.variant-builder {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfe;
}

.variant-list {
  display: grid;
  gap: 10px;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(160px, 1fr) 64px auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.variant-preview {
  display: grid;
  place-items: center;
  width: 64px;
  height: 56px;
  overflow: hidden;
  border-radius: 12px;
  background: #eaf3fb;
}

.variant-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.request-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.request-thumb {
  display: grid;
  gap: 5px;
  width: 76px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.request-thumb img {
  width: 76px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cod-admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(15, 92, 168, 0.12), transparent 34vw),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.cod-admin-shell { min-height: 100vh; }

.cod-login-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding: clamp(24px, 6vw, 76px);
}

.cod-login-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.cod-login-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #0d1b2a;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.92;
}

.cod-login-copy p {
  max-width: 560px;
  margin: 0;
  color: #5f6c7b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.cod-store-link {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(15, 92, 168, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.07);
}

.cod-auth-card,
.cod-panel,
.cod-stat-card,
.cod-topbar {
  border: 1px solid rgba(216, 226, 237, 0.82);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.cod-auth-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
}

.cod-auth-card h2,
.cod-panel h2,
.cod-topbar h1 { margin: 0; }

.cod-card-label {
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cod-auth-card label,
.cod-settings-form label {
  color: #69778a;
  font-size: 0.82rem;
  font-weight: 900;
}

.cod-auth-card input,
.cod-settings-form input,
.cod-search-field input,
.cod-filter-field select,
.cod-order-side select {
  width: 100%;
  border: 1px solid rgba(213, 224, 236, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #152236;
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cod-auth-card input:focus,
.cod-settings-form input:focus,
.cod-search-field input:focus,
.cod-filter-field select:focus,
.cod-order-side select:focus {
  border-color: rgba(15, 92, 168, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 92, 168, 0.1);
  background: #fff;
}

.cod-dashboard {
  display: grid;
  gap: 22px;
  padding: 22px clamp(14px, 4vw, 42px) 46px;
}

.cod-topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
}

.cod-top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cod-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 14px;
}

.cod-stat-card {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
}

.cod-stat-card span {
  color: #69778a;
  font-size: 0.83rem;
  font-weight: 800;
}

.cod-stat-card strong {
  color: #101b2d;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.cod-stat-card.accent {
  background: linear-gradient(135deg, #0b3a75, #0f5ca8);
  color: #fff;
}

.cod-stat-card.accent span,
.cod-stat-card.accent strong { color: #fff; }

.cod-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 18px;
  align-items: start;
}

.cod-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
}

.cod-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.cod-panel-head.compact { display: block; }

.cod-result-count {
  white-space: nowrap;
  border-radius: 999px;
  background: #eef5fb;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 11px;
}

.cod-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 12px;
}

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

.cod-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 210px);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.cod-order-main { min-width: 0; }

.cod-order-head,
.cod-order-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cod-order-head { justify-content: space-between; }

.cod-order-head h3 {
  margin: 4px 0 0;
  color: #102033;
  font-size: 1.12rem;
}

.cod-order-number {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.cod-order-meta {
  margin-top: 10px;
  color: #69778a;
  font-size: 0.9rem;
  font-weight: 700;
}

.cod-address {
  margin: 10px 0 0;
  color: #3f5066;
  line-height: 1.55;
}

.cod-status-pill {
  border-radius: 999px;
  padding: 7px 10px;
  background: #eef5fb;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.cod-status-pill.new { background: #fff4df; color: #935500; }
.cod-status-pill.confirmed { background: #e8f2ff; color: #0b4f96; }
.cod-status-pill.preparing { background: #ede9fe; color: #5b21b6; }
.cod-status-pill.delivered { background: #e8f8ef; color: #08734f; }
.cod-status-pill.cancelled { background: #ffecec; color: #b42318; }

.cod-order-side {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: stretch;
  padding-left: 12px;
  border-left: 1px solid rgba(219, 228, 238, 0.86);
}

.cod-order-side > strong {
  color: #102033;
  font-size: 1.35rem;
}

.cod-order-side label {
  display: grid;
  gap: 7px;
}

.cod-order-side label span {
  color: #69778a;
  font-size: 0.78rem;
  font-weight: 900;
}

.cod-items {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.cod-item-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  background: #f7fafc;
}

.cod-item-line img,
.cod-item-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 13px;
}

.cod-item-line img { object-fit: cover; }

.cod-item-placeholder {
  display: grid;
  place-items: center;
  background: #e8f1f8;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.cod-item-line strong,
.cod-item-line small { display: block; }

.cod-item-line small {
  margin-top: 4px;
  color: #69778a;
  line-height: 1.4;
}

.cod-item-line b { white-space: nowrap; }

.cod-side-stack {
  display: grid;
  gap: 18px;
}

.cod-settings-form {
  display: grid;
  gap: 12px;
}

.cod-session-text {
  margin: 0;
  color: #102033;
  font-weight: 900;
}

.cod-empty-state {
  display: grid;
  gap: 6px;
  min-height: 140px;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(15, 92, 168, 0.24);
  border-radius: 20px;
  background: rgba(248, 251, 254, 0.78);
  text-align: center;
}

.cod-empty-state p {
  margin: 0;
  color: #69778a;
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .header-search { grid-column: 1 / -1; order: 2; }
  .nav-links { display: none; }
  .hero,
  .shop-layout,
  .about-band,
  .about-hero,
  .about-story,
  .wholesale,
  .checkout-shell,
  .detail-main,
  .admin-hero,
  .admin-grid { grid-template-columns: 1fr; }
  .filters { position: static; }
  .why-grid, .review-grid, .about-values { grid-template-columns: 1fr; }
  .cod-login-screen,
  .cod-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .cod-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header { padding: 12px; gap: 10px; }
  .brand { min-width: 0; }
  .brand-logo { width: 170px; height: 68px; }
  .brand-context { display: none; }
  .header-actions { gap: 6px; }
  .icon-button { min-width: 38px; height: 38px; border-radius: 12px; padding-inline: 10px; }
  .store-link { padding-inline: 12px; }
  .hero { padding-top: 28px; }
  .about-hero { padding-top: 28px; }
  .about-hero-logo { min-height: 280px; border-radius: 22px; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .hero-visual, .hero-visual img { min-height: 380px; border-radius: 24px; }
  .section { padding: 34px 14px; }
  .section-heading { display: block; }
  .category-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .product-pagination {
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-pagination button {
    min-width: 42px;
    min-height: 42px;
    padding-inline: 12px;
  }
  .why-showcase-grid { grid-template-columns: 1fr; }
  .why-showcase-large { grid-column: auto; grid-row: auto; min-height: 300px; }
  .why-showcase-large.why-showcase-card-contain { min-height: auto; }
  .wholesale { padding-top: 20px; }
  .site-footer { grid-template-columns: 1fr; }
  .detail-media { min-height: 320px; }
  .detail-media img { max-height: 320px; }
  .detail-qr-slot { padding: 20px 18px 22px; }
  .qr-code-box {
    width: 120px;
    border-radius: 16px;
  }
  .detail-info { padding: 24px 18px; }
  .detail-related-panel { padding: 0 18px 24px; }
  .detail-actions,
  .spec-grid, .related-row { grid-template-columns: 1fr; }
  .medical-disclaimer { margin: 18px 14px; }
  .variant-row { grid-template-columns: 1fr; }
  .variant-preview { width: 100%; height: 160px; }
  .checkout-header { align-items: center; flex-wrap: wrap; }
  .checkout-header .brand { margin-right: 0; }
  .checkout-return { margin-left: 64px; }
  .checkout-shell { width: min(100% - 24px, 1180px); padding-top: 22px; }
  .checkout-grid.two { grid-template-columns: 1fr; gap: 14px; }
  .order-item { grid-template-columns: 1fr; }
  .order-status-control { min-width: 100%; }
  .order-product-line { grid-template-columns: 52px 1fr; }
  .order-product-line b { justify-self: start; }
  .order-summary { position: static; order: -1; }
  .cod-login-screen {
    padding: 22px 14px;
  }
  .cod-login-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }
  .cod-dashboard {
    padding: 14px 10px 32px;
  }
  .cod-topbar,
  .cod-panel-head,
  .cod-toolbar,
  .cod-order-card {
    grid-template-columns: 1fr;
  }
  .cod-topbar,
  .cod-panel-head {
    display: grid;
  }
  .cod-top-actions {
    justify-content: stretch;
  }
  .cod-top-actions .button {
    flex: 1;
  }
  .cod-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cod-order-side {
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid rgba(219, 228, 238, 0.86);
  }
  .cod-item-line {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .cod-item-line b {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ASK MED storefront refresh */
:root {
  --blue: #123B5D;
  --blue-2: #1B9AAA;
  --green: #2F8F6B;
  --orange: #C94F45;
  --ink: #17212B;
  --muted: #66727D;
  --line: #DCE5E9;
  --bg: #F4F8FA;
  --card: #FFFFFF;
  --shadow: 0 18px 42px rgba(18, 59, 93, 0.12);
  --radius: 14px;
}

body {
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(27, 154, 170, 0.35);
  outline-offset: 3px;
}

.announcement-bar {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 14px;
  background: #234491;
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.announcement-bar span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--green);
  vertical-align: 1px;
}

.site-header {
  grid-template-columns: auto auto minmax(280px, 1fr) auto auto;
  max-width: none;
  padding: 10px clamp(14px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.96);
}

.brand-logo {
  width: 160px;
  height: 64px;
}

.nav-links {
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  color: #344250;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 8px;
  width: min(760px, 82vw);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mega-menu a {
  padding: 12px;
  border-radius: 12px;
  background: #f8fbfc;
  color: var(--blue);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-search {
  position: relative;
  min-width: 0;
}

.header-search input {
  border-radius: 999px;
  background: #f8fbfc;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.search-panel.open { display: grid; }
.search-panel button {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  text-align: left;
  cursor: pointer;
}
.search-panel img { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; background: #eef5f7; }
.search-panel small,
.search-empty { color: var(--muted); }
.search-empty { padding: 16px; }

.menu-toggle {
  display: none;
}

.icon-button {
  min-height: 44px;
  border-radius: 999px;
}

.whatsapp-head {
  background: #e9f8f0;
  color: #0f7b55;
}

.whatsapp-head svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.hero {
  min-height: clamp(610px, 76vh, 720px);
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(54px, 7vw, 86px) clamp(18px, 7vw, 96px);
  background:
    radial-gradient(circle at 84% 28%, rgba(55, 112, 235, 0.12), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef4fb 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(55, 112, 235, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #2d6ff0;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(35, 68, 145, 0.08);
}

.hero-badge::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #eaf2ff;
}

h1 {
  max-width: 680px;
  color: #2548a6;
  font-size: clamp(3.25rem, 6.5vw, 6.25rem);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.hero p {
  max-width: 590px;
  color: #66778c;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}
.hero-note {
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.button {
  min-height: 46px;
  border-radius: 16px;
}

.button.primary {
  background: #2d6ff0;
  box-shadow: 0 18px 30px rgba(45, 111, 240, 0.22);
}
.button.light { background: white; color: var(--blue); }

.hero .button {
  min-height: 52px;
  padding-inline: 28px;
}

.hero .button.primary::after {
  content: "→";
  margin-left: 8px;
}

.hero .button.ghost {
  border-color: transparent;
  background: white;
  color: #243349;
  box-shadow: 0 14px 28px rgba(35, 68, 145, 0.08);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars span {
  width: 29px;
  height: 29px;
  margin-left: -7px;
  border: 3px solid #f3f7fc;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 38%, #ffffff 0 18%, transparent 19%),
    linear-gradient(135deg, #7358ff, #e6dfff);
}

.hero-avatars span:first-child {
  margin-left: 0;
}

.hero-trust-row strong {
  display: block;
  color: #ffbf2e;
  letter-spacing: 0;
  line-height: 1;
}

.hero-trust-row small {
  display: block;
  margin-top: 2px;
  color: #68788d;
  font-weight: 800;
}

.product-composition {
  position: relative;
  min-height: 500px;
  overflow: visible;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.product-composition img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 36px);
  filter: drop-shadow(0 28px 38px rgba(35, 68, 145, 0.14));
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(35, 68, 145, 0.15);
}

.hero-float-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef5ff;
  color: #2d6ff0;
  font-weight: 900;
}

.hero-float-card strong,
.hero-float-card small {
  line-height: 1.1;
}

.hero-float-card strong {
  color: #243349;
  font-size: 0.88rem;
}

.hero-float-card small {
  color: #8793a5;
  font-weight: 800;
}

.hero-float-grade {
  top: 56px;
  left: -42px;
}

.hero-float-support {
  top: 44%;
  right: -34px;
}

.hero-float-stock {
  left: -28px;
  bottom: 68px;
  background: #2449a9;
}

.hero-float-stock span {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.hero-float-stock strong,
.hero-float-stock small {
  color: white;
}

.service-strip {
  width: min(1280px, calc(100% - 32px));
  margin: -34px auto 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.service-strip-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: serviceStripSlide 24s linear infinite;
  will-change: transform;
}

@keyframes serviceStripSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.service-strip article,
.body-area-grid a,
.order-steps article,
.confirmation-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(18, 59, 93, 0.07);
}

.service-strip article {
  display: grid;
  gap: 6px;
  flex: 0 0 clamp(280px, 30vw, 386px);
  padding: 18px;
}

@media (max-width: 760px) {
  .service-strip {
    width: min(100% - 24px, 1280px);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .service-strip-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .service-strip article {
    flex-basis: min(82vw, 320px);
  }

  .service-strip .service-icon {
    width: 72px;
    height: 72px;
  }

  .service-strip .service-icon img {
    width: 66px;
    height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-strip {
    overflow: visible;
    mask-image: none;
  }

  .service-strip-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
    animation: none;
  }

  .service-strip article[aria-hidden="true"] {
    display: none;
  }
}

.service-strip span,
.order-steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e7f6f8;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-strip .service-icon {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 20px;
  background: #f8fbfe;
}

.service-strip .service-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.service-strip p,
.order-steps p,
.body-support p,
.faq-list p,
.checkout-copy { color: var(--muted); line-height: 1.65; }

.section { max-width: 1400px; margin-inline: auto; }
.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}
.section-heading.centered p { max-width: 620px; margin-bottom: 0; }

.home-categories > .section-heading,
.why-grid > .section-heading,
.faq-section > .section-heading {
  display: grid;
  justify-items: start;
  align-items: start;
  gap: 8px;
  text-align: left;
}

.home-categories > .section-heading p,
.faq-section > .section-heading p {
  max-width: 620px;
  margin-bottom: 0;
}

.why-grid > .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.why-grid > .section-heading h2 {
  margin: 0;
}

.text-link { color: var(--blue-2); font-weight: 900; }

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

.category-card {
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(27, 154, 170, 0.07), transparent 44%),
    #ffffff;
}

.category-page-card {
  min-height: 245px;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.category-page-card .cat-icon {
  width: 92px;
  height: 92px;
  background: #eef7f8;
}

.category-page-card em {
  color: var(--blue-2);
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-control {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.sort-control select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: white;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.active-filters span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f6f8;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-toggle,
.mobile-only { display: none; }

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  border-radius: 14px;
}

.product-image {
  height: 245px;
  background: #f0f6f8;
}

.product-image img {
  transition: transform 0.22s ease;
}

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

.product-body .button {
  min-height: 44px;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.product-pagination button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--blue);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-pagination button:hover:not(:disabled) {
  border-color: rgba(15, 64, 124, 0.28);
  background: #eef6fb;
  transform: translateY(-1px);
}

.product-pagination button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.product-pagination button:disabled {
  color: #9aa8b8;
  background: #eef3f7;
  cursor: not-allowed;
}

.body-support {
  display: grid;
  gap: 22px;
}

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

.body-area-grid a {
  min-height: 64px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 900;
}

.assist-note { text-align: center; font-weight: 800; }

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.spotlight-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.spotlight-media img {
  max-height: 390px;
  object-fit: contain;
}

.spotlight-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.order-steps .section-heading {
  grid-column: 1 / -1;
}

.order-steps article {
  padding: 22px;
}

.support-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.support-panel p { color: var(--muted); }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

.faq-list p { margin: 12px 0 0; }

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: white;
}

.product-accordions {
  display: grid;
  gap: 8px;
}

.product-accordions details {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfc;
}

.product-accordions summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

.detail-actions {
  grid-template-columns: 1fr 1fr;
}

.detail-actions .whatsapp {
  grid-column: 1 / -1;
}

.cod-message {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: clamp(30px, 6vw, 78px);
  padding: 52px clamp(16px, 5vw, 72px) 28px;
  background: #0f2f49;
  color: white;
  align-items: start;
}

.site-footer p,
.site-footer a { color: rgba(255, 255, 255, 0.78); line-height: 1.8; }

.site-footer > div > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.site-footer > div:first-child p {
  max-width: 360px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  width: 226px;
  padding: 24px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.confirmation-panel {
  align-content: start;
}

.confirmation-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
}

.confirmation-card span {
  color: var(--blue);
  font-weight: 900;
}

.checkout-panel textarea {
  width: 100%;
  min-height: 96px;
  padding: 22px 14px 8px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  outline: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-search {
    grid-column: 1 / -1;
    order: 2;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spotlight,
  .support-panel {
    grid-template-columns: 1fr;
    display: grid;
  }
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .announcement-bar { font-size: 0.78rem; }
  .site-header {
    padding: 10px 12px;
    gap: 8px;
  }
  .brand-logo {
    width: 128px;
    height: 52px;
  }
  .whatsapp-head { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; min-width: 140px; }
  .product-composition,
  .product-composition img {
    min-height: 300px;
  }
  .service-strip {
    margin-top: 0;
  }
  .category-grid,
  .body-area-grid,
  .order-steps,
  .why-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .home-categories .category-grid,
  .body-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-page-card {
    min-height: 210px;
    padding: 14px;
  }
  .category-page-card .cat-icon {
    width: 72px;
    height: 72px;
  }
  .collection-toolbar {
    display: grid;
  }
  .toolbar-actions {
    justify-content: space-between;
  }
  .filter-toggle,
  .mobile-only { display: inline-flex; }
  .desktop-only { display: none; }
  .filters {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 82;
    max-height: 78vh;
    overflow: auto;
    padding: 14px;
    background: white;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -18px 40px rgba(18, 59, 93, 0.16);
    transform: translateY(105%);
    transition: transform 0.22s ease;
  }
  .filters.open {
    transform: translateY(0);
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-image {
    height: 150px;
  }
  .product-body {
    padding: 13px;
  }
  .product-body h3 {
    font-size: 0.9rem;
  }
  .product-meta {
    display: grid;
    gap: 4px;
  }
  .button {
    padding: 0 12px;
    font-size: 0.9rem;
  }
  .why-showcase {
    margin: 14px;
  }
  .spotlight-media {
    min-height: 300px;
  }
  .cart-drawer {
    width: min(100vw, 420px);
  }
  .detail-actions {
    grid-template-columns: 1fr;
  }
  .detail-actions .whatsapp {
    grid-column: auto;
  }
  .site-menu nav details {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fbfc;
  }
  .site-menu nav summary {
    color: var(--blue);
    font-weight: 900;
    cursor: pointer;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-composition {
    min-height: 420px;
  }

  .hero-float-grade {
    left: 16px;
  }

  .hero-float-support {
    right: 16px;
  }

  .hero-float-stock {
    left: 18px;
    bottom: 34px;
  }
}

@media (max-width: 620px) {
  .announcement-bar {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-badge {
    font-size: 0.82rem;
  }

  .hero .button {
    width: 100%;
  }

  .hero-trust-row {
    align-items: flex-start;
  }

  .product-composition {
    min-height: 360px;
  }

  .hero-float-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .product-composition {
    display: grid;
    gap: 0;
  }
}

@media (max-width: 380px) {
  .product-grid,
  .home-categories .category-grid,
  .body-area-grid {
    grid-template-columns: 1fr;
  }
}

/* Final mobile hardening pass */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.checkout-header,
.hero,
.section,
.service-strip,
.why-showcase,
.medical-disclaimer,
.site-footer,
.checkout-shell {
  max-width: 100%;
}

.site-header,
.checkout-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 28px rgba(15, 47, 73, 0.08);
}

.site-header[data-elevated-header] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 5000 !important;
}

body.page-ready .site-header[data-elevated-header] {
  animation: none !important;
}

body:has(.site-header[data-elevated-header]) {
  padding-top: 116px;
}

body:has(.site-header[data-elevated-header]) .announcement-bar {
  margin-top: -116px;
}

@media (max-width: 760px) {
  body:has(.site-header[data-elevated-header]) {
    padding-top: 164px;
  }

  body:has(.site-header[data-elevated-header]) .announcement-bar {
    margin-top: -164px;
  }

  body.menu-open,
  body.filters-open,
  body.cart-open {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: minmax(94px, auto) minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 118px;
    height: 48px;
  }

  .header-actions {
    justify-content: end;
    min-width: 0;
  }

  .header-actions .icon-button {
    min-width: 42px;
    height: 42px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  #cartButton span {
    display: none;
  }

  #cartButton b {
    margin: 0;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .header-search {
    width: 100%;
  }

  .header-search input {
    min-height: 46px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .search-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 112px;
    max-height: min(58vh, 420px);
    overflow: auto;
  }

  .hero {
    padding: 28px 14px 24px;
    gap: 22px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .product-composition,
  .product-composition img {
    min-height: 240px;
  }

  .product-composition img {
    padding: 16px;
  }

  .section {
    padding: 30px 14px;
  }

  .section-heading {
    display: grid;
    gap: 8px;
  }

  .service-strip {
    width: calc(100% - 28px);
  }

  .service-strip article,
  .why-grid article,
  .order-steps article,
  .faq-list details,
  .support-panel,
  .quote-form {
    padding: 16px;
  }

  .home-categories .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-page-card {
    min-height: 188px;
    gap: 8px;
  }

  .category-page-card strong {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .category-page-card span:not(.cat-icon) {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .category-page-card em {
    font-size: 0.82rem;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  body:not(.products-page) .filters {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .products-page .filters {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 82;
    max-height: 82dvh;
    overflow: auto;
    padding: 14px;
    background: white;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -18px 40px rgba(18, 59, 93, 0.16);
    transform: translateY(105%);
    transition: transform 0.22s ease;
  }

  .products-page .filters.open {
    transform: translateY(0);
  }

  .filter-card {
    padding: 16px;
  }

  .collection-toolbar {
    gap: 12px;
  }

  .toolbar-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
  }

  .sort-control select {
    width: 100%;
  }

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

  .product-card {
    min-width: 0;
  }

  .product-image {
    height: 132px;
    padding: 10px;
  }

  .stock-pill {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .product-body {
    gap: 9px;
    padding: 11px;
  }

  .product-body h3 {
    font-size: 0.84rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .product-meta {
    font-size: 0.76rem;
  }

  .price {
    font-size: 1rem;
  }

  .product-body .button {
    min-height: 40px;
    padding-inline: 8px;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1.15;
    white-space: normal;
  }

  .body-area-grid {
    gap: 9px;
  }

  .body-area-grid a {
    min-height: 54px;
    font-size: 0.88rem;
  }

  .why-showcase {
    width: auto;
    margin: 14px;
    padding: 24px 16px;
  }

  .spotlight {
    gap: 18px;
  }

  .spotlight-media {
    min-height: 240px;
    border-radius: 16px;
  }

  .spotlight-media img {
    max-height: 220px;
  }

  .support-panel {
    align-items: stretch;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .medical-disclaimer {
    display: grid;
    gap: 4px;
    margin: 14px;
    padding: 14px;
  }

  .site-footer {
    padding: 30px 16px 22px;
    gap: 20px;
  }

  .footer-logo {
    width: 150px;
  }

  .site-menu {
    width: min(92vw, 360px);
    padding: 18px;
    overflow-y: auto;
  }

  .site-menu nav {
    gap: 8px;
  }

  .site-menu nav a {
    min-height: 46px;
    padding: 12px 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .product-dialog {
    width: min(100vw - 16px, 640px);
    max-height: calc(100dvh - 18px);
    margin: auto;
    border-radius: 18px;
    overflow: auto;
  }

  .dialog-close {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .detail-main {
    grid-template-columns: 1fr;
  }

  .detail-left {
    min-height: 0;
  }

  .detail-media {
    min-height: 230px;
    padding: 12px;
  }

  .detail-media img {
    max-height: 240px;
    object-position: center;
  }

  .detail-info {
    padding: 20px 16px;
  }

  .detail-info h2 {
    padding-right: 38px;
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .spec-grid,
  .related-row {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    grid-template-columns: 44px minmax(70px, 1fr) 44px;
    width: 100%;
  }

  .detail-related-panel {
    padding: 0 16px 20px;
  }

  .related-row button {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .related-row img {
    width: 58px;
    height: 58px;
  }

  .cart-drawer {
    width: 100vw;
    height: 100dvh;
    padding: 16px;
  }

  .cart-line {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: start;
  }

  .cart-line img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #f3f7f8;
  }

  .cart-line strong,
  .cart-line small {
    overflow-wrap: anywhere;
  }

  .checkout-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .checkout-header .brand {
    margin: 0;
  }

  .checkout-return {
    margin: 0;
    justify-self: end;
    font-size: 0.82rem;
    line-height: 1.2;
    text-align: right;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 18px 0 42px;
  }

  .checkout-form {
    gap: 18px;
  }

  .checkout-panel {
    gap: 14px;
  }

  .checkout-grid.two {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    order: -1;
    padding: 16px;
    border-radius: 14px;
  }

  .checkout-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .checkout-item b {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
  }

  .field-wrap input,
  .field-wrap select,
  .checkout-panel textarea {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .home-categories .category-grid,
  .body-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-page-card {
    min-height: 176px;
  }

  .category-page-card .cat-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: stretch;
  }

  .product-image {
    height: auto;
    min-height: 100%;
  }

  .product-body {
    align-content: start;
  }

  .product-body .button {
    min-height: 38px;
  }
}

@media (max-width: 340px) {
  .home-categories .category-grid,
  .body-area-grid {
    grid-template-columns: 1fr;
  }

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

  .product-image {
    height: 150px;
  }
}
