/* =========================================================
   MedicoEase Clone — Design System
   Theme: Clinical Trust — Teal / Amber / Ivory
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600;700&display=swap");

:root {
  /* Palette */
  --ink: #132523;
  --ink-soft: #3e5754;
  --teal: #0f5d5d;
  --teal-dark: #0a413f;
  --teal-tint: #e8f3ee;
  --ivory: #ffffff;
  --paper: #ffffff;
  --amber: #d98e04;
  --amber-dark: #a8690a;
  --amber-tint: #fbebcb;
  --coral: #e85c4a;
  --coral-tint: #fce7e3;
  --line: #dee6e1;
  --line-soft: #edf2ee;

  /* Type */
  --font-display: "Fraunces", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card:
    0 2px 10px rgba(19, 37, 35, 0.06), 0 1px 2px rgba(19, 37, 35, 0.05);
  --shadow-lift: 0 12px 30px rgba(19, 37, 35, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--teal-dark);
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 64px 0;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 14.5px;
  transition: 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
}
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-ghost {
  background: var(--teal-tint);
  color: var(--teal-dark);
}
.btn-ghost:hover {
  background: var(--line);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal-dark);
  color: #eaf3f0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px 16px;
}
.topbar strong {
  color: var(--amber);
  font-weight: 800;
}

/* ---------- Header ---------- */
.site-sticky-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.site-sticky-shell .site-header,
.site-sticky-shell .topbar {
  position: relative;
  z-index: 1;
}
.site-header {
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 24px;
  max-width: 1220px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
/* BlueVitalis brand logo image */
.site-sticky-shell .logo.site-logo,
.site-sticky-shell .logo { 
  min-width: 0;
}
.site-logo-image {
  display: block;
  width: 168px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  max-width: 100%;
}
.site-sticky-shell .logo {
  gap: 0;
  line-height: 0;
}
.footer-logo {
  display: inline-flex !important;
  width: fit-content;
  max-width: 100%;
}
.footer-logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  line-height: 0;
}
.footer-logo .site-logo-image {
  width: 176px;
  height: 58px;
}

.logo .rx {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}
.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
}
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: 0.15s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
  border-color: var(--amber);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------- Header polish ---------- */
.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.topbar-sep {
  opacity: 0.65;
  margin: 0 3px;
}
.main-nav {
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.main-nav a {
  white-space: nowrap;
  line-height: 1.2;
  font-size: 15px;
  padding: 8px 2px;
}
.header-actions {
  gap: 9px;
}
.desktop-language-slot {
  flex: 0 0 auto;
}
.language-switcher {
  min-width: 250px;
  justify-content: space-between;
  padding: 9px 13px;
}
.language-switcher-select {
  max-width: 160px;
}
.header-search-btn {
  flex: 0 0 40px;
}
.header-search-panel {
  border-top: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.98);
  box-shadow: 0 8px 18px rgba(9, 75, 72, 0.08);
  padding: 10px 24px 12px;
}
.header-search-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 5px 7px 5px 16px;
}
.header-search-form svg {
  flex: 0 0 auto;
  color: var(--teal);
}
.header-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  padding: 8px 4px;
}
.header-search-form input::placeholder {
  color: #8a9995;
}
.header-search-form .btn {
  border-radius: 999px;
  padding: 9px 17px;
}
.header-search-panel[hidden] {
  display: none !important;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px 13px 15px;
}
.whatsapp-float svg {
  width: 27px;
  height: 27px;
  display: block;
  flex: 0 0 27px;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.language-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.language-switcher select {
  border: none;
  background: transparent;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  outline: none;
}
.desktop-language-slot {
  display: block;
}
.mobile-language-slot {
  display: none;
  margin-top: 12px;
}
.google-translate-host,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
iframe.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0 !important;
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.icon-btn:hover {
  border-color: var(--teal);
}
.badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--coral);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-family: var(--font-mono);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--teal-dark);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--teal-tint) 0%, var(--ivory) 100%);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 60px;
}
.hero-title {
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--amber-dark);
  position: relative;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.hero-art {
  position: relative;
}
.hero-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  padding: 22px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.hero-card img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.sticker {
  position: absolute;
  top: -18px;
  right: -14px;
  background: var(--amber);
  color: #fff;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(9deg);
  font-family: var(--font-mono);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(217, 142, 4, 0.4);
  border: 3px dashed rgba(255, 255, 255, 0.55);
}
.sticker span {
  font-size: 20px;
}
.sticker small {
  font-size: 8.5px;
  letter-spacing: 0.04em;
}

/* ---------- Category pills ---------- */
.cat-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 18px;
}
.cat-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  transition: 0.15s;
}
.cat-pill:hover {
  border-color: var(--teal);
  background: var(--teal-tint);
}
.cat-pill .ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

/* ---------- Section header ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 6px 0 0;
}

/* ---------- Product card (blister strip signature) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
  border-color: var(--line);
}
/* Compact product media: remove decorative strip and excess whitespace so the actual product is larger. */
.blister-edge {
  display: none;
}
.pc-media {
  position: relative;
  background: var(--ivory);
  padding: 8px 10px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-media img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: contain;
  margin: 0 auto;
}
.pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.pc-body {
  padding: 10px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-cat {
  font-size: 10.5px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.pc-title a {
  color: inherit;
}
.pc-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  flex: 1;
}
.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.pc-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
}
.pc-mrp {
  font-size: 12.5px;
  color: #9daaa6;
  text-decoration: line-through;
}

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

/* ---------- Trust / feature strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-cell {
  background: #fff;
  padding: 26px 22px;
}
.feature-cell .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-tint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feature-cell h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
  color: var(--ink);
}
.feature-cell p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Testimonial ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.testi-stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testi-name {
  font-weight: 700;
  font-size: 13.5px;
}
.testi-meta {
  font-size: 11.5px;
  color: var(--ink-soft);
}

/* ---------- Newsletter / CTA band ---------- */
.cta-band {
  background: var(--teal-dark);
  border-radius: 22px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-band h3 {
  color: #fff;
  font-size: 26px;
}
.cta-band p {
  color: #b9d3cc;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: #cfe3dd;
  margin-top: 80px;
}
.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-top h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.footer-top a {
  display: block;
  font-size: 13.5px;
  color: #b9d3cc;
  padding: 5px 0;
}
.footer-top a:hover {
  color: #fff;
}
.footer-brand p {
  font-size: 13.5px;
  color: #9dbdb4;
}
.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  border: 1px solid #2c6a66;
  padding: 6px 10px;
  border-radius: 6px;
  color: #b9d3cc;
}
.footer-bottom {
  border-top: 1px solid #1e5652;
  padding: 20px 0;
  font-size: 12.5px;
  color: #8fb3aa;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Disclaimer bar ---------- */
.disclaimer-bar {
  background: var(--amber-tint);
  border-top: 1px solid #ebd495;
  border-bottom: 1px solid #ebd495;
  padding: 12px 0;
  font-size: 12.5px;
  color: var(--amber-dark);
  text-align: center;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 18px 0;
}
.breadcrumb a:hover {
  color: var(--teal);
}
.breadcrumb .sep {
  margin: 0 6px;
  color: #b7c4bf;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--teal-tint);
  padding: 46px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Forms ---------- */
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  transition: 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
}
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-hint {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.form-error {
  font-size: 12px;
  color: var(--coral);
  margin-top: 4px;
  display: none;
}

/* ---------- Cart Drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 37, 35, 0.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: #fff;
  z-index: 95;
  transform: translateX(100%);
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}
.drawer.show {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 {
  margin: 0;
  font-size: 19px;
}
.drawer-close {
  background: var(--teal-tint);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--teal-dark);
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.drawer-foot {
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}
.cart-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-row img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--ivory);
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}
.cart-row-info {
  flex: 1;
}
.cart-row-title {
  font-size: 13.5px;
  font-weight: 700;
}
.cart-row-var {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.cart-row-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--teal-dark);
  white-space: nowrap;
}
.cart-row-remove {
  color: var(--coral);
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}
.cart-empty {
  text-align: center;
  padding: 50px 10px;
  color: var(--ink-soft);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.cart-total-row strong {
  color: var(--teal-dark);
  font-size: 18px;
}

/* ---------- Modal (auth + checkout) ---------- */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 440px;
  max-width: 92vw;
  background: #fff;
  border-radius: 18px;
  z-index: 100;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  max-height: 88vh;
  overflow-y: auto;
}
.modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.modal-wide {
  width: 560px;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 0;
}
.modal-head h3 {
  margin: 0;
  font-size: 21px;
}
.modal-close {
  background: var(--teal-tint);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--teal-dark);
}
.modal-body {
  padding: 18px 26px 26px;
}
.modal-tabs {
  display: flex;
  gap: 8px;
  background: var(--teal-tint);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.modal-tab {
  flex: 1;
  text-align: center;
  padding: 9px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.modal-tab.active {
  background: var(--teal);
  color: #fff;
}
.auth-switch {
  font-size: 13px;
  text-align: center;
  margin-top: 6px;
  color: var(--ink-soft);
}
.auth-switch a {
  color: var(--teal);
  font-weight: 700;
}
.form-msg {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  display: none;
}
.form-msg.error {
  background: var(--coral-tint);
  color: #b7392c;
  display: block;
}
.form-msg.success {
  background: #e1f3e7;
  color: #1e7b45;
  display: block;
}
.coupon-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}
.coupon-inline input {
  flex: 1;
}
.coupon-msg {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}
.coupon-msg.success {
  color: #1e7b45;
}
.coupon-msg.error {
  color: #b7392c;
}
.checkout-total-lines {
  margin-top: 14px;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}
.checkout-total-lines div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}
.checkout-grand-total {
  font-weight: 800;
  font-size: 15px;
}
.checkout-item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.checkout-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.checkout-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.checkout-remove {
  border: none;
  background: none;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Shop page ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-box {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 100px;
}
.filter-box h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--ink);
}
.filter-group {
  margin-bottom: 22px;
}
.filter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  padding: 6px 0;
  color: var(--ink-soft);
}
.filter-opt input {
  accent-color: var(--teal);
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.shop-toolbar select {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-size: 13px;
}
.search-box {
  position: relative;
  max-width: 340px;
  width: 100%;
}
.search-box input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 13.5px;
}
.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
}

/* ---------- Product detail ---------- */
.pdp {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 108px;
}

.pdp-main-img {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  overflow: hidden;
}

.pdp-main-img img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: scale(1.08);
}

.pdp-info {
  min-width: 0;
  padding-top: 2px;
}

.pdp-cat {
  color: var(--teal);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.pdp-title {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  margin: 3px 0 4px;
}

.pdp-generic {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.pdp-rating .stars {
  color: var(--amber);
  letter-spacing: 1px;
}

.pdp-price-block {
  background: var(--teal-tint);
  border-radius: var(--radius);
  padding: 15px 18px;
  margin: 14px 0;
}

.pdp-price-now {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal-dark);
}

.pdp-price-mrp {
  font-family: var(--font-mono);
  font-size: 15px;
  color: #8fa39d;
  text-decoration: line-through;
  margin-left: 10px;
}

.pdp-save-badge {
  background: var(--coral);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  margin-left: 10px;
  font-family: var(--font-mono);
}

.variant-label {
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0 7px;
  color: var(--ink);
}

.variant-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-chip {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 9px 15px;
  border-radius: 9px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink);
  position: relative;
}

.variant-chip:hover {
  border-color: var(--teal);
}

.variant-chip.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.variant-chip .vc-save {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--coral);
  margin-top: 2px;
}

.variant-chip.active .vc-save {
  color: #dff3ec;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.qty-box button {
  width: 38px;
  height: 38px;
  background: var(--teal-tint);
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-dark);
}

.qty-box span {
  width: 44px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-mono);
}

.pdp-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pdp-actions .btn {
  flex: 1;
}

.pdp-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

.pdp-trust li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
}

.pdp-trust li b {
  color: var(--ink);
}

/* Compare table (signature: dosage/prescription label) */
.compare-wrap {
  margin-top: 56px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table thead th {
  background: var(--teal-dark);
  color: #dff0ec;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}
.compare-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}
.compare-table tr.is-selected td {
  background: var(--teal-tint);
}
.compare-table .cmp-strength {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--teal-dark);
}
.compare-table .cmp-price {
  font-family: var(--font-mono);
  font-weight: 700;
}
.compare-table .cmp-per {
  font-family: var(--font-mono);
  color: var(--ink-soft);
  font-size: 12.5px;
}
.compare-table .cmp-save {
  color: var(--coral);
  font-weight: 700;
  font-size: 12.5px;
}

.tab-strip {
  display: flex;
  gap: 6px;
  border-bottom: 1.5px solid var(--line);
  margin: 56px 0 0;
}
.tab-btn {
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
}
.tab-btn.active {
  color: var(--teal-dark);
  border-color: var(--amber);
}
.tab-panel {
  display: none;
  padding: 26px 2px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.tab-panel.active {
  display: block;
}
.tab-panel ul {
  padding-left: 18px;
  list-style: disc;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lift);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast.error {
  background: var(--coral);
}
.toast.success {
  background: var(--teal);
}

/* ---------- Reviews page ---------- */
.review-stat {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 36px;
}
.review-big {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--teal-dark);
  font-weight: 700;
}
.review-bars {
  flex: 1;
  min-width: 220px;
}
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.review-bar-track {
  flex: 1;
  height: 8px;
  background: var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--amber);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-info-card {
  background: var(--teal-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 {
  color: #fff;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #1e5652;
}
.contact-info-item:first-of-type {
  border-top: none;
}
.contact-info-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1e5652;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.contact-info-item b {
  display: block;
  font-size: 13.5px;
}
.contact-info-item span {
  font-size: 12.5px;
  color: #b9d3cc;
}


/* Contact page + footer reference polish */
.contact-details-reference {
  background: var(--teal-dark);
  border: 1px solid #0b4e4a;
  box-shadow: 0 10px 28px rgba(5, 63, 59, 0.12);
}
.contact-details-reference h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-details-reference .contact-info-item {
  align-items: center;
  min-height: 62px;
}
.contact-details-reference .contact-info-item b {
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px;
}
.contact-details-reference .contact-info-item span {
  display: block;
  line-height: 1.45;
}
.footer-quick-links h5 {
  color: #fff;
}
.footer-quick-links a {
  color: #b9d3cc;
}
.footer-quick-links a:hover {
  color: #fff;
}

/* ---------- About ---------- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.about-stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 10px;
}
.about-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--teal-dark);
}
.about-stat span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- Policy / Tracking ---------- */
.policy-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.policy-card,
.tracking-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.tracking-results {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.tracking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.tracking-id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.tracking-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--amber-tint);
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 700;
}
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tracking-grid b {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}
.tracking-grid span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- Floating CTA ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 120;
  background: #19a15f;
  color: #fff;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-lift);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
}

/* ---------- Utilities ---------- */
.mt-0 {
  margin-top: 0;
}
.center {
  text-align: center;
}
.muted {
  color: var(--ink-soft);
}
.pill-count {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- Compare table wrapper (added for horizontal scroll on mobile) ---------- */
.compare-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.compare-scroll .compare-table {
  min-width: 640px;
  border-radius: 0;
}

/* ==========================================================
   RESPONSIVE — mobile-first overrides, three breakpoints
   ========================================================== */

/* ----- Tablet & below (≤980px) ----- */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    padding: 14px 20px;
    gap: 14px;
  }
  .header-search-panel {
    padding: 10px 20px 12px;
  }
  .language-switcher {
    min-width: 0;
  }

  .container {
    padding: 0 20px;
  }
  .section {
    padding: 48px 0;
  }

  .hero-grid,
  .pdp,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 36px;
    padding: 44px 0 40px;
  }
  .hero-art {
    order: -1;
  }
  .pdp-gallery {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .feature-strip,
  .testi-grid,
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filter-box {
    position: static;
  }

  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    padding: 14px 20px;
    gap: 14px;
  }
  .header-phone {
    display: none;
  }
  .language-label {
    display: none;
  }
  .desktop-language-slot {
    display: none;
  }
  .mobile-language-slot {
    display: block;
  }

  .review-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ----- Mobile phones (≤700px) ----- */
@media (max-width: 700px) {
  .topbar {
    font-size: 10.5px;
    padding: 7px 8px;
    white-space: nowrap;
    overflow: hidden;
  }

  .header-inner {
    gap: 10px;
  }
  .logo {
    min-width: 0;
    gap: 0;
  }
  .logo .site-logo-image {
    width: 145px;
    height: 48px;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  .header-actions {
    gap: 5px;
  }
  .language-switcher {
    padding: 6px 8px;
  }
  .header-search-panel {
    padding: 8px 12px 10px;
  }
  .header-search-form {
    padding-left: 12px;
  }
  .header-search-form .btn {
    padding: 8px 13px;
  }
  .header-search-form input {
    font-size: 13px;
  }
  .whatsapp-float {
    padding: 12px 14px 12px 12px;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 38px);
  }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .trust-row {
    gap: 14px 22px;
  }
  .hero-card {
    padding: 14px;
  }
  .sticker {
    width: 74px;
    height: 74px;
    top: -12px;
    right: -8px;
  }
  .sticker span {
    font-size: 16px;
  }

  .section {
    padding: 38px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-head h2 {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .pc-body {
    padding: 8px 10px 12px;
  }
  .pc-title {
    font-size: 15px;
  }
  .pc-media img {
    height: 175px;
  }
  .pc-desc {
    display: none;
  }
  .pc-actions .btn {
    font-size: 12.5px;
    padding: 9px 10px;
  }

  .feature-strip,
  .testi-grid,
  .about-stats,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .feature-strip {
    border-radius: var(--radius);
  }
  .footer-top {
    padding: 44px 0 30px;
    gap: 26px;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .cta-band .btn {
    width: 100%;
  }

  .cat-strip {
    gap: 10px;
  }
  .cat-pill {
    padding: 8px 14px 8px 8px;
    font-size: 12.5px;
  }

  .page-hero {
    padding: 36px 0;
  }
  .page-hero h1 {
    font-size: 26px;
  }

  /* Product detail page */
  .pdp-main-img {
    padding: 18px;
  }
  .pdp-title {
    font-size: 24px;
  }
  .pdp-price-now {
    font-size: 25px;
  }
  .pdp-actions {
    flex-direction: column;
  }
  .variant-row {
    gap: 8px;
  }
  .variant-chip {
    padding: 9px 13px;
    font-size: 12.5px;
  }
  .qty-selector {
    flex-wrap: wrap;
  }
  .compare-wrap {
    margin-top: 36px;
  }
  .tab-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .tab-btn {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
  }

  /* Shop toolbar / filters */
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-box {
    max-width: 100%;
  }
  .shop-toolbar select {
    width: 100%;
  }

  /* Forms & modals */
  .form-row2 {
    grid-template-columns: 1fr;
  }
  .modal {
    width: 94vw;
    max-height: 92vh;
  }
  .modal-wide {
    width: 94vw;
  }
  .modal-head,
  .modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .coupon-inline {
    flex-direction: column;
    align-items: stretch;
  }
  .tracking-grid {
    grid-template-columns: 1fr;
  }

  /* Cart drawer */
  .drawer {
    width: 100%;
  }

  /* About / Contact */
  .about-split img {
    aspect-ratio: 16/10;
  }
  .contact-info-card {
    padding: 24px;
  }
  .review-big {
    font-size: 44px;
  }

  .toast {
    width: 92%;
    left: 4%;
    transform: translateY(20px);
    text-align: center;
    justify-content: center;
  }
  .toast.show {
    transform: translateY(0);
  }
}

/* ----- Small phones (≤420px) ----- */
@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .pc-media {
    padding: 6px 7px 3px;
  }
  .pc-media img {
    height: 150px;
  }
  .btn {
    padding: 12px 18px;
    font-size: 13.5px;
  }
  .hero-title {
    font-size: 26px;
  }
  .variant-chip {
    padding: 8px 11px;
    font-size: 12px;
  }
  .pdp-price-block {
    padding: 14px 16px;
  }
  .about-stats,
  .testi-grid,
  .feature-strip {
    gap: 14px;
  }
}

/* Compact pack-size selector */
.pack-size-card {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(9, 75, 72, 0.05);
}

.pack-size-card h2 {
  margin: 5px 0 4px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--teal-dark);
}

.pack-size-card .variant-label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 700;
}

.pack-select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--teal);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: 600 14px/1.2 var(--font-body);
  cursor: pointer;
  outline: none;
}

.pack-select:focus {
  box-shadow: 0 0 0 4px rgba(12, 105, 102, 0.12);
}

@media (max-width: 900px) {
  .pdp {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-main-img {
    min-height: 330px;
  }

  .pdp-main-img img {
    height: 330px;
  }
}

@media (max-width: 640px) {
  .pdp-main-img {
    min-height: 300px;
    padding: 10px;
  }

  .pdp-main-img img {
    height: 300px;
  }

  .pdp-title {
    font-size: 27px;
  }

  .pdp-price-now {
    font-size: 25px;
  }

  .pack-size-card {
    padding: 13px;
  }

  .pack-size-card h2 {
    font-size: 21px;
  }

  .pack-select {
    min-height: 46px;
    font-size: 13.5px;
  }

  .pdp-actions {
    gap: 8px;
  }
}

/* =========================================================
   BlueVitalis Home Page
   ========================================================= */

.bv-home-hero {
  padding: 34px 0 42px;
  background: #fff;
}

.bv-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: center;
}

.bv-home-copy h1 {
  margin: 8px 0 10px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
}

.bv-home-copy h1 em {
  color: var(--teal);
  font-style: normal;
}

.bv-home-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
}

.bv-home-copy p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.bv-home-hero-image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.bv-home-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bv-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 20px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
}

.bv-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.bv-check-grid div {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.bv-copy-block {
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bv-copy-block p {
  margin: 7px 0;
}

.bv-home-visual-section {
  padding-top: 0;
}

.bv-home-visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.bv-home-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bv-home-content-section {
  background: #fff;
}

.bv-home-content-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.bv-home-content-grid h2 {
  margin: 7px 0 0;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
}

.bv-home-content-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.bv-home-support-section {
  padding-top: 0;
}

.bv-home-support-section .cta-band h3 {
  margin-bottom: 8px;
}

.bv-home-support-section .cta-band p {
  max-width: 680px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .bv-home-hero-grid,
  .bv-home-content-grid {
    grid-template-columns: 1fr;
  }

  .bv-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bv-home-copy {
    text-align: center;
  }

  .bv-home-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .bv-hero-points,
  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .bv-check-grid {
    grid-template-columns: 1fr;
  }

  .bv-home-hero {
    padding-top: 24px;
  }

  .bv-home-copy h1 {
    font-size: 38px;
  }
}

/* =========================================================
   BLUEVITALIS HOME - IMAGE SECTION POLISH
   ========================================================= */

/* =========================================================
   Homepage visual banners
   Clean, flat presentation — no card shadow/border
   ========================================================= */
.bv-home-visual-section {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.bv-home-visual-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bv-home-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

/* Safety & Security: larger and balanced inside the site container */
.bv-home-safety-card img {
  width: min(100%, 1000px);
  max-height: none;
}

/* Worldwide Delivery / Benefits: wider because the source artwork is panoramic */
.bv-home-benefits-card img {
  width: min(100%, 1120px);
  max-height: none;
}

/* Don't create huge gaps around image sections */
.bv-home-visual-section + .section {
  padding-top: 35px;
}

/* Hero image */
.bv-home-hero-image {
  max-height: 360px;
}

.bv-home-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

/* Keep homepage overall spacing tighter */
.bv-home-intro {
  padding-top: 35px !important;
  padding-bottom: 30px !important;
}

/* Copy below Why Choose */
.bv-copy-block {
  margin-top: 18px;
  max-width: 850px;
}

/* Mobile */
@media (max-width: 768px) {
  .bv-home-visual-section {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .bv-home-visual-card {
    border-radius: 12px;
  }

  .bv-home-visual-card img {
    max-height: 220px;
  }

  .bv-home-hero-image {
    max-height: 280px;
  }

  .bv-home-hero-image img {
    max-height: 280px;
  }
}


/* =========================================================
   SHOP CARDS — COMPACT UI
   Presentation-only changes; product loading/data untouched.
   ========================================================= */

.product-grid .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.product-grid .product-card .pc-media {
  position: relative;
  height: 205px;
  min-height: 205px;
  padding: 8px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-grid .product-card .pc-image-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-grid .product-card .pc-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.product-grid .product-card .pc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 12px 16px 15px;
}

.product-grid .product-card .pc-cat {
  margin: 0 0 5px;
  line-height: 1.15;
}

.product-grid .product-card .pc-title {
  margin: 0 0 4px;
  line-height: 1.15;
}

.product-grid .product-card .pc-desc {
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-grid .product-card .pc-price-area {
  margin-top: auto;
  padding-top: 11px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-grid .product-card .pc-price {
  display: block;
  line-height: 1.15;
}

.product-grid .product-card .pc-discount-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  min-height: 26px;
  border-radius: 999px;
  background: #fff2f0;
  border: 1px solid #ffd3cc;
  color: #e85c4a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.product-grid .product-card .pc-actions {
  margin-top: 9px;
}

.product-grid .product-card .pc-actions .btn {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .product-grid .product-card .pc-media {
    height: 190px;
    min-height: 190px;
  }

  .product-grid .product-card .pc-media img {
    max-height: 176px;
  }
}

@media (max-width: 560px) {
  .product-grid .product-card .pc-media {
    height: 180px;
    min-height: 180px;
  }

  .product-grid .product-card .pc-media img {
    max-height: 166px;
  }

  .product-grid .product-card .pc-price-area {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Side cart interaction */
body.cart-drawer-open{overflow:hidden}
.drawer-head{background:var(--paper)}
.drawer-head h3{font-family:var(--font-display);color:var(--teal-dark)}
.drawer-foot{background:var(--paper)}
.drawer-foot .btn{border-radius:999px}
.drawer .cart-row{align-items:flex-start}
.drawer .cart-row img{background:#fff;border:1px solid var(--line)}
.drawer .cart-row-title{color:var(--ink)}
@media(max-width:560px){.drawer{width:100%;max-width:100%}.drawer-head{padding:17px 16px}.drawer-body{padding:14px 16px}.drawer-foot{padding:16px}}


/* FINAL CART DRAWER — compact reference-style side cart */
.overlay#cart-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1240 !important;
  background: rgba(19, 37, 35, 0.48) !important;
}
.drawer#cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100vh !important;
  width: 340px !important;
  max-width: 88vw !important;
  z-index: 1250 !important;
  border-left: 1px solid var(--line) !important;
  box-shadow: -12px 0 34px rgba(20,45,45,.18) !important;
  background: #fff !important;
}
.drawer#cart-drawer .drawer-head {
  min-height: 62px;
  padding: 15px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.drawer#cart-drawer .drawer-head h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--teal-dark);
  font-size: 18px;
}
.drawer#cart-drawer .drawer-close {
  width: 30px;
  height: 30px;
  font-size: 15px;
  cursor: pointer;
}
.drawer#cart-drawer .drawer-body {
  padding: 4px 16px 10px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.drawer#cart-drawer .cart-row {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  gap: 9px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer#cart-drawer .cart-row img {
  width: 48px;
  height: 48px;
  flex: none;
  padding: 3px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.drawer#cart-drawer .cart-row-info {
  min-width: 0;
}
.drawer#cart-drawer .cart-row-title {
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
}
.drawer#cart-drawer .cart-row-var {
  margin-top: 2px;
  font-size: 9.5px;
  line-height: 1.25;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.drawer#cart-drawer .cart-row-qty {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
}
.drawer#cart-drawer .cart-row-qty .qty-btn {
  width: 20px;
  height: 20px;
  font-size: 11px;
}
.drawer#cart-drawer .cart-row-qty span {
  min-width: 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}
.drawer#cart-drawer .cart-row-remove {
  margin-top: 5px;
  font-size: 9px;
  color: var(--coral);
  cursor: pointer;
}
.drawer#cart-drawer .cart-row-price {
  margin-left: 0;
  padding-top: 1px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--teal-dark);
  white-space: nowrap;
}
.drawer#cart-drawer .drawer-foot {
  padding: 13px 16px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -5px 18px rgba(20,45,45,.05);
}
.drawer#cart-drawer .cart-total-row {
  margin-bottom: 11px;
  font-size: 11px;
}
.drawer#cart-drawer .cart-total-row strong {
  font-size: 14px;
}
.drawer#cart-drawer .drawer-foot .btn {
  width: 100%;
  min-height: 39px;
  border-radius: 6px;
  font-size: 11px;
}
.drawer#cart-drawer .drawer-foot .cart-view-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 7px;
}
.drawer#cart-drawer .drawer-foot .cart-view-actions .btn {
  min-height: 35px;
}

/* WhatsApp stays behind the cart drawer when the cart is open. */
.whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  gap: 0;
  right: 22px;
  bottom: 22px;
  z-index: 1230 !important;
}
.whatsapp-float svg { width: 30px; height: 30px; flex: 0 0 30px; }
.whatsapp-float span { display:none !important; }

@media(max-width:560px){
  .drawer#cart-drawer { width: 100% !important; max-width: 100% !important; }
  .drawer#cart-drawer .drawer-head { padding: 14px 16px; }
  .drawer#cart-drawer .drawer-body { padding-left: 16px; padding-right: 16px; }
  .drawer#cart-drawer .drawer-foot { padding-left: 16px; padding-right: 16px; }
  .whatsapp-float { width:52px;height:52px;right:16px;bottom:16px; }
  .whatsapp-float svg { width:27px;height:27px; }
}

/* =========================================================
   PRODUCT GRID — 3 CARDS PER ROW
   BlueVitalis compact catalogue layout
   ========================================================= */
@media (min-width: 901px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .product-grid .product-card .pc-media {
    height: 190px;
    min-height: 190px;
    padding: 6px 10px 2px;
  }

  .product-grid .product-card .pc-media img {
    max-height: 178px;
  }

  .product-grid .product-card .pc-body {
    padding: 10px 16px 14px;
  }

  .product-grid .product-card .pc-price-area {
    margin-top: 10px;
    padding-top: 0;
    min-height: 0;
  }

  .product-grid .product-card .pc-actions {
    margin-top: 8px;
  }

  /* Home cards use pc-price-row instead of pc-price-area. */
  .product-grid .product-card .pc-price-row {
    margin-top: 10px;
    margin-bottom: 8px;
    align-items: center;
  }
}

/* Keep tablet layouts comfortable while preserving the 3-column desktop design. */
@media (min-width: 701px) and (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Prevent long medicine names from creating uneven-looking cards. */
.product-grid .product-card .pc-title {
  line-height: 1.18;
}

.product-grid .product-card .pc-desc {
  min-height: 0;
}

/* Compact home-card spacing so the first row matches the catalogue density. */
@media (min-width: 901px) {
  #home-product-grid .product-card .pc-media {
    height: 190px;
    min-height: 190px;
  }

  #home-product-grid .product-card .pc-media img {
    max-height: 178px;
  }

  #home-product-grid .product-card .pc-body {
    padding: 10px 16px 14px;
  }

  #home-product-grid .product-card .pc-price-row {
    margin-top: 9px;
    margin-bottom: 8px;
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* ==========================================================
   LANGUAGE SWITCHER — integrated in site navigation
   ========================================================== */
.desktop-language-slot {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.desktop-language-slot .language-switcher {
  min-width: 250px;
  height: 42px;
  padding: 0 12px 0 13px;
  justify-content: space-between;
}

.desktop-language-slot .language-switcher select {
  max-width: 120px;
  padding-right: 16px;
  cursor: pointer;
}

.mobile-language-slot {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.mobile-language-slot .language-switcher {
  width: min(100%, 310px);
  justify-content: space-between;
}

/* Google Translate's own injected banner should never move the page.
   Chrome's native translation bar is controlled by the browser, not CSS. */
body {
  top: 0 !important;
}
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
body > .skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
}

@media (max-width: 1100px) {
  .desktop-language-slot .language-switcher {
    min-width: 215px;
  }

  .desktop-language-slot .language-switcher .language-label {
    font-size: 10px;
  }

  .desktop-language-slot .language-switcher select {
    max-width: 105px;
  }
}

@media (max-width: 760px) {
  .desktop-language-slot {
    display: none !important;
  }

  .mobile-language-slot {
    display: block;
  }
}

/* ---------- Product assurance / checkout confidence ---------- */
.pdp-product-assurance {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-secure-checkout,
.pdp-no-prescription,
.pdp-assurance-accordion {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.pdp-secure-checkout {
  padding: 10px 12px;
}

.pdp-assurance-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pdp-secure-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.pdp-secure-badge {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 4px;
  border: 1px solid #dfe5e3;
  border-radius: 5px;
  background: #f8faf9;
  color: #273a37;
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.pdp-badge-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #e9f5ef;
  color: #198754;
  font-size: 12px;
  flex-shrink: 0;
}

.pdp-no-prescription {
  padding: 9px 12px 10px;
  background: #fbfcfb;
}

.pdp-assurance-heading,
.pdp-assurance-toggle {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.pdp-assurance-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdp-no-prescription p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 11.5px;
  line-height: 1.45;
}

.pdp-chevron {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1;
}

.pdp-assurance-toggle {
  width: 100%;
  min-height: 38px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.pdp-assurance-toggle:hover {
  background: #fafcfb;
}

.pdp-assurance-content {
  display: none;
  padding: 0 12px 11px;
  color: var(--ink-soft);
  font-size: 11.5px;
  line-height: 1.5;
  border-top: 1px solid var(--line-soft);
}

.pdp-assurance-accordion.is-open .pdp-assurance-content {
  display: block;
}

@media (max-width: 640px) {
  .pdp-product-assurance {
    margin-top: 12px;
  }
  .pdp-secure-badges {
    gap: 5px;
  }
  .pdp-secure-badge {
    min-height: 48px;
    font-size: 7.5px;
  }
  .pdp-badge-icon {
    width: 17px;
    height: 17px;
    font-size: 10px;
  }
}


/* =========================================================
   FINAL LAYERING FIX — overlays, cart drawer & account modals
   Keep every interactive panel above the fixed navigation.
   ========================================================= */
:root { --site-chrome-height: 140px; }
.site-sticky-shell { z-index: 1000; }

/* Global authentication / checkout overlays and modals. */
#auth-overlay,
#checkout-overlay {
  z-index: 1300 !important;
}
#auth-modal,
#checkout-modal {
  z-index: 1310 !important;
}

/* Keep centered modals comfortably below the fixed header instead of appearing behind it. */
#auth-modal,
#checkout-modal {
  top: calc(50% + (var(--site-chrome-height) / 2));
  max-height: calc(100vh - var(--site-chrome-height) - 28px);
}

/* Header account dropdown: never render it underneath the nav. */
#user-menu {
  position: fixed !important;
  top: calc(var(--site-chrome-height) + 8px) !important;
  right: 24px !important;
  z-index: 1320 !important;
}

/* Checkout-page account modal is a separate component from the global auth modal. */
#checkout-account-overlay {
  z-index: 1300 !important;
}
#checkout-account-overlay .account-modal {
  z-index: 1310 !important;
  max-height: calc(100vh - var(--site-chrome-height) - 28px);
  overflow-y: auto;
}

@media (max-width: 900px) {
  :root { --site-chrome-height: 104px; }
}
@media (max-width: 560px) {
  :root { --site-chrome-height: 98px; }
  #user-menu { right: 16px !important; }
}


/* Homepage visual banners — responsive sizing */
@media (max-width: 900px) {
  .bv-home-safety-card img,
  .bv-home-benefits-card img {
    width: 100%;
  }

  .bv-home-visual-section {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}

/* =========================================================
   FINAL TYPOGRAPHY POLISH — readable text across the website
   Presentation-only: no layout/data/functionality changes.
   ========================================================= */
body {
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 1.65;
}

/* Navigation / common controls */
.site-nav a,
.nav-links a {
  font-size: 16px;
}

.btn,
button {
  font-size: 15px;
}

/* Homepage / section copy */
.hero-sub,
.page-hero p,
.cta-band p,
.footer-brand p {
  font-size: 16px;
  line-height: 1.65;
}

.trust-item {
  font-size: 14px;
}

.cat-pill {
  font-size: 15px;
}

/* Product cards — make all important product information easier to read */
.product-grid .product-card .pc-cat {
  font-size: 12px;
  line-height: 1.25;
}

.product-grid .product-card .pc-title {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 6px;
}

.product-grid .product-card .pc-desc {
  font-size: 14.5px;
  line-height: 1.45;
}

.product-grid .product-card .pc-price {
  font-size: 20px;
}

.product-grid .product-card .pc-mrp {
  font-size: 14px;
}

.product-grid .product-card .pc-discount-badge {
  font-size: 11.5px;
}

.product-grid .product-card .pc-actions .btn {
  font-size: 15px;
}

/* Feature / trust content */
.feature-cell h4 {
  font-size: 17px;
}

.feature-cell p {
  font-size: 14.5px;
  line-height: 1.5;
}

.testi-quote {
  font-size: 16px;
  line-height: 1.6;
}

.testi-name {
  font-size: 14.5px;
}

.testi-meta {
  font-size: 13px;
}

/* Forms and small explanatory text */
.form-field label {
  font-size: 14.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-size: 15px;
}

.form-hint {
  font-size: 13px;
}

.form-error {
  font-size: 13px;
}

/* Product detail page copy */
.pdp-assurance-heading,
.pdp-assurance-toggle {
  font-size: 14px;
}

.pdp-no-prescription p,
.pdp-assurance-content {
  font-size: 13.5px;
  line-height: 1.55;
}

/* Footer */
.footer-top h5 {
  font-size: 15px;
}

.footer-top a {
  font-size: 14.5px;
}

.footer-bottom {
  font-size: 13.5px;
}

/* Keep compact labels genuinely secondary rather than tiny */
.eyebrow {
  font-size: 13px;
}


/* =========================================================
   17 AUG CLIENT POLISH — TYPOGRAPHY / SPACING / COUPON / WHATSAPP
   ========================================================= */
body { font-size: 16px; }
p { font-size: 16px; line-height: 1.62; }
.section { padding-top: 46px; padding-bottom: 46px; }
.container { max-width: 1240px; }
.bv-home-hero { padding-top: 52px; padding-bottom: 42px; }
.bv-home-copy h1 { margin-bottom: 14px; }
.bv-home-copy h2 { margin-bottom: 10px; font-size: 25px; }
.bv-home-copy p { font-size: 17px; line-height: 1.62; max-width: 680px; }
.hero-cta { margin-top: 18px; }
.bv-hero-points { margin-top: 15px; font-size: 13px; }
.bv-home-intro { padding-top: 40px !important; padding-bottom: 34px !important; }
.bv-check-grid { margin-top: 18px; gap: 10px; }
.bv-check-grid div { min-height: 50px; padding: 12px 14px; font-size: 14px; }
.bv-copy-block { margin-top: 15px; font-size: 16px; }
.bv-home-visual-section { padding-top: 14px !important; padding-bottom: 14px !important; }
.bv-home-visual-section + .section { padding-top: 28px; }
.bv-home-content-grid { gap: 30px; }
.bv-home-content-grid p { font-size: 17px; line-height: 1.65; }
.bv-home-support-section { padding-top: 0 !important; }
.product-grid { gap: 18px; }
.product-grid .product-card .pc-body { padding: 10px 16px 13px; }
.product-grid .product-card .pc-cat { font-size: 12px; }
.product-grid .product-card .pc-title { font-size: 20px; line-height: 1.2; }
.product-grid .product-card .pc-desc { font-size: 15px; line-height: 1.35; }
.product-grid .product-card .pc-price { font-size: 22px; }
.product-grid .product-card .pc-discount-badge { font-size: 11.5px; }
.product-grid .product-card .pc-actions .btn { font-size: 15px; }
.coupon-offer,
.checkout-coupon-offer {
  display:flex; align-items:center; gap:10px; margin-bottom:9px; padding:10px 12px;
  border:1px solid #f1d28a; border-radius:10px; background:#fff8e7; color:var(--ink);
}
.coupon-offer strong,
.checkout-coupon-offer strong {
  display:inline-flex; align-items:center; padding:5px 8px; border-radius:999px;
  background:var(--amber); color:#fff; font-size:12px; white-space:nowrap;
}
.coupon-offer span,
.checkout-coupon-offer span { font-size:13px; color:var(--ink-soft); }
.coupon-offer b,
.checkout-coupon-offer b { color:var(--teal-dark); }
.checkout-coupon-offer { margin:12px 0 0; }
.whatsapp-float {
  width:auto; min-width:58px; height:58px; padding:0 18px 0 14px;
  border-radius:999px; gap:9px; z-index:1200;
}
.whatsapp-float svg { width:28px; height:28px; flex:0 0 28px; }
.whatsapp-float span { display:inline !important; color:#fff; font-size:13px; font-weight:800; white-space:nowrap; }
@media (max-width: 900px) {
  .section { padding-top: 38px; padding-bottom: 38px; }
  .bv-home-hero { padding-top: 38px; padding-bottom: 34px; }
  .product-grid .product-card .pc-title { font-size: 18px; }
  .product-grid .product-card .pc-desc { font-size: 14px; }
}
@media (max-width: 560px) {
  p { font-size: 15px; }
  .section { padding-top: 32px; padding-bottom: 32px; }
  .bv-home-hero { padding-top: 28px; padding-bottom: 28px; }
  .bv-home-copy p { font-size: 15px; }
  .product-grid { gap: 12px; }
  .product-grid .product-card .pc-title { font-size: 17px; }
  .product-grid .product-card .pc-desc { font-size: 13.5px; }
  .product-grid .product-card .pc-price { font-size: 20px; }
  .whatsapp-float { min-width:52px; width:52px; height:52px; padding:0; gap:0; right:16px; bottom:16px; }
  .whatsapp-float svg { width:27px; height:27px; flex-basis:27px; }
  .whatsapp-float span { display:none !important; }
}


/* =========================================================
   CLIENT PRODUCT CARD MATCH — 3 COLUMNS / TIGHT SPACING
   Matches the supplied reference: compact image area, no
   empty gap under product image, aligned price + discount,
   and consistent card heights.
   ========================================================= */
@media (min-width: 901px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.product-grid .product-card {
  min-height: 0;
}

.product-grid .product-card .pc-media,
#home-product-grid .product-card .pc-media {
  height: 165px;
  min-height: 165px;
  padding: 5px 10px 0;
  background: #fff;
}

.product-grid .product-card .pc-media img,
#home-product-grid .product-card .pc-media img {
  width: 100%;
  height: 155px;
  max-height: 155px;
  object-fit: contain;
}

.product-grid .product-card .pc-body,
#home-product-grid .product-card .pc-body {
  padding: 8px 12px 12px;
}

.product-grid .product-card .pc-cat,
#home-product-grid .product-card .pc-cat {
  margin: 0 0 3px;
  font-size: 11px;
  line-height: 1.15;
}

.product-grid .product-card .pc-title,
#home-product-grid .product-card .pc-title {
  margin: 0 0 3px;
  font-size: 18px;
  line-height: 1.12;
}

.product-grid .product-card .pc-desc,
#home-product-grid .product-card .pc-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  min-height: 0;
  -webkit-line-clamp: 2;
}

/* Price row stays immediately below description — no auto spacer. */
.product-grid .product-card .pc-price-area,
#home-product-grid .product-card .pc-price-row {
  margin-top: 8px;
  padding-top: 0;
  margin-bottom: 7px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.product-grid .product-card .pc-price,
#home-product-grid .product-card .pc-price {
  display: block;
  font-size: 18px;
  line-height: 1.02;
  font-weight: 800;
  color: var(--teal-dark);
  font-family: var(--font-mono);
  white-space: normal;
}

.product-grid .product-card .pc-price strong,
#home-product-grid .product-card .pc-price strong {
  font-size: 21px;
  font-weight: 900;
}

.product-grid .product-card .pc-price-label,
.product-grid .product-card .pc-price-currency,
#home-product-grid .product-card .pc-price-label,
#home-product-grid .product-card .pc-price-currency {
  font-size: 12px;
  font-weight: 800;
}

.product-grid .product-card .pc-discount-badge,
#home-product-grid .product-card .pc-save {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 5px 8px;
  min-height: 25px;
  border-radius: 999px;
  background: #fff2f0;
  border: 1px solid #ffd3cc;
  color: #e85c4a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

#home-product-grid .product-card .pc-actions,
.product-grid .product-card .pc-actions {
  margin-top: 0;
}

#home-product-grid .product-card .pc-actions .btn,
.product-grid .product-card .pc-actions .btn {
  width: 100%;
  min-height: 39px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 900px) and (min-width: 701px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .product-grid .product-card .pc-media,
  #home-product-grid .product-card .pc-media {
    height: 145px;
    min-height: 145px;
  }
  .product-grid .product-card .pc-media img,
  #home-product-grid .product-card .pc-media img {
    height: 135px;
    max-height: 135px;
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-grid .product-card .pc-media,
  #home-product-grid .product-card .pc-media {
    height: 135px;
    min-height: 135px;
    padding: 4px 6px 0;
  }
  .product-grid .product-card .pc-media img,
  #home-product-grid .product-card .pc-media img {
    height: 126px;
    max-height: 126px;
  }
  .product-grid .product-card .pc-body,
  #home-product-grid .product-card .pc-body {
    padding: 7px 9px 10px;
  }
  .product-grid .product-card .pc-title,
  #home-product-grid .product-card .pc-title {
    font-size: 16px;
  }
  .product-grid .product-card .pc-desc,
  #home-product-grid .product-card .pc-desc {
    font-size: 12px;
  }
  .product-grid .product-card .pc-price,
  #home-product-grid .product-card .pc-price {
    font-size: 15px;
  }
  .product-grid .product-card .pc-price strong,
  #home-product-grid .product-card .pc-price strong {
    font-size: 18px;
  }
  .product-grid .product-card .pc-discount-badge,
  #home-product-grid .product-card .pc-save {
    font-size: 9px;
    padding: 4px 6px;
  }
}


/* =========================================================
   20 AUG HOMEPAGE REDESIGN
   Banner + Why Choose + Reviews + Security
   ========================================================= */

.bv-banner-hero {
  padding: 28px 0 0;
  background: #fff;
}
.bv-banner-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f7faf8;
  box-shadow: 0 10px 30px rgba(19,37,35,.08);
}
.bv-banner-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 1680 / 810;
  object-fit: cover;
  object-position: center;
}
.bv-banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.02), transparent 60%);
}
.bv-banner-shop {
  position: absolute;
  left: 4.5%;
  bottom: 14%;
  padding: 13px 24px;
  box-shadow: 0 8px 20px rgba(15,93,93,.18);
}
.bv-banner-shop span {
  transition: transform .2s ease;
}
.bv-banner-shop:hover span {
  transform: translateX(4px);
}

.bv-home-cta-strip {
  background: #fff;
  padding: 28px 0 34px;
}
.bv-home-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.bv-home-cta-buttons .btn {
  min-width: 188px;
  font-size: 18px;
  padding: 16px 28px;
}
.bv-home-points-reference {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}
.bv-home-points-reference span {
  white-space: nowrap;
}

.bv-why-section {
  background: #f5f9fc;
}
.bv-why-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.bv-why-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin: 8px 0 4px;
}
.bv-why-copy h3 {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.bv-why-copy p {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.bv-why-copy .btn {
  margin-top: 5px;
}
.bv-why-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.bv-why-checks > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid #d9e5ed;
  border-radius: 9px;
  background: #fff;
  color: #0795c8;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(19,37,35,.03);
}
.bv-why-checks span {
  color: var(--teal-dark);
  font-weight: 700;
}
.bv-newsletter {
  margin-top: 30px;
  padding: 22px 28px;
  border-radius: 14px;
  background: linear-gradient(100deg,#1659c7,#16a5aa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bv-newsletter strong {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}
.bv-newsletter span {
  display: block;
  font-size: 12px;
  opacity: .9;
}
.bv-newsletter-form {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.bv-newsletter-form input {
  width: 180px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 7px;
  padding: 10px 12px;
  outline: none;
}
.bv-newsletter-form input::placeholder {
  color: rgba(255,255,255,.8);
}
.bv-newsletter-form .btn {
  background: #fff;
  color: var(--teal-dark);
}

.bv-products-home {
  background: #fff;
}

.bv-reviews-home {
  background: #fff;
  padding-top: 28px;
  padding-bottom: 54px;
}
.bv-reviews-heading {
  text-align: center;
  margin-bottom: 24px;
}
.bv-reviews-heading .eyebrow {
  justify-content: center;
}
.bv-reviews-heading .eyebrow::before {
  display: none;
}
.bv-reviews-heading h2 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 2px;
  color: var(--teal-dark);
}
.bv-reviews-heading p {
  font-size: 12px;
  color: #7a8987;
  margin: 0;
}
.bv-reviews-home .testi-grid {
  gap: 12px;
}
.bv-reviews-home .testi-card {
  padding: 18px;
  border-color: #dce5ed;
  border-radius: 10px;
  box-shadow: none;
}
.bv-reviews-home .testi-stars {
  font-size: 12px;
  margin-bottom: 10px;
}
.bv-reviews-home .testi-quote {
  font-size: 11px;
  line-height: 1.55;
  min-height: 75px;
  margin-bottom: 12px;
}
.bv-reviews-home .testi-avatar {
  width: 28px;
  height: 28px;
  font-size: 10px;
}
.bv-reviews-home .testi-person {
  gap: 8px;
}
.bv-reviews-home .testi-name {
  font-size: 11px;
}
.bv-reviews-home .testi-meta {
  font-size: 9px;
}

.bv-security-section {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 18px;
  border-top: 1px solid #e7ecea;
}
.bv-security-heading {
  text-align: center;
  margin-bottom: 26px;
}
.bv-security-heading h2 {
  display: inline-block;
  font-family: var(--font-body);
  color: #101e2d;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  margin: 0;
  padding: 0 18px 14px;
  border-bottom: 3px solid #e1e4e5;
}
.bv-security-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  align-items: center;
  gap: 16px;
  padding: 18px 0 30px;
  border-bottom: 1px solid #e5e8e7;
}
.bv-security-logo {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bv-security-logo img {
  width: 100%;
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
}
.bv-security-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 20px;
  padding: 28px 0 8px;
}
.bv-security-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.bv-security-benefit img {
  width: 68px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 68px;
}
.bv-security-benefit strong {
  display: block;
  color: #17222e;
  font-size: 14px;
  line-height: 1.2;
}
.bv-security-benefit span {
  display: block;
  color: #77847f;
  font-size: 12px;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .bv-why-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .bv-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .bv-security-logos {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .bv-security-benefits {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 600px) {
  .bv-banner-hero {
    padding-top: 12px;
  }
  .bv-banner-frame {
    border-radius: 12px;
  }
  .bv-banner-frame img {
    aspect-ratio: 1.75 / 1;
  }
  .bv-banner-shop {
    left: 5%;
    bottom: 10%;
    padding: 9px 15px;
    font-size: 12px;
  }
  .bv-home-cta-buttons {
    gap: 10px;
  }
  .bv-home-cta-buttons .btn {
    min-width: 0;
    flex: 1;
    font-size: 14px;
    padding: 12px 14px;
  }
  .bv-home-points-reference {
    gap: 10px 18px;
    font-size: 12px;
  }
  .bv-home-points-reference span {
    white-space: normal;
  }
  .bv-why-checks {
    grid-template-columns: 1fr;
  }
  .bv-newsletter {
    padding: 18px;
  }
  .bv-newsletter-form {
    width: 100%;
  }
  .bv-newsletter-form input {
    flex: 1;
    width: auto;
    min-width: 0;
  }
  .bv-security-logos {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
  }
  .bv-security-logo {
    height: 72px;
  }
  .bv-security-logo img {
    max-width: 140px;
    max-height: 55px;
  }
  .bv-security-benefits {
    grid-template-columns: 1fr;
  }
  .bv-security-benefit img {
    width: 60px;
    height: 56px;
    flex-basis: 60px;
  }
}

/* Gentle entrance / hover motion — intentionally subtle for a healthcare storefront */
@media (prefers-reduced-motion: no-preference) {
  .bv-banner-frame {
    animation: bvBannerIn .65s ease both;
  }
  .bv-why-copy,
  .bv-why-checks > div,
  .bv-reviews-home .testi-card,
  .bv-security-logo,
  .bv-security-benefit {
    animation: bvFadeUp .55s ease both;
  }
  .bv-why-checks > div:nth-child(2),
  .bv-security-logo:nth-child(2) { animation-delay: .05s; }
  .bv-why-checks > div:nth-child(3),
  .bv-security-logo:nth-child(3) { animation-delay: .10s; }
  .bv-why-checks > div:nth-child(4),
  .bv-security-logo:nth-child(4) { animation-delay: .15s; }
  .bv-why-checks > div:nth-child(5),
  .bv-security-logo:nth-child(5) { animation-delay: .20s; }
  .bv-why-checks > div:nth-child(6),
  .bv-security-logo:nth-child(6) { animation-delay: .25s; }
  .bv-why-checks > div:nth-child(7) { animation-delay: .30s; }
  .bv-why-checks > div:nth-child(8) { animation-delay: .35s; }
  .bv-reviews-home .testi-card:hover,
  .bv-why-checks > div:hover,
  .bv-security-logo:hover {
    transform: translateY(-3px);
    transition: transform .2s ease, box-shadow .2s ease;
  }
}
@keyframes bvBannerIn {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bvFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   HOMEPAGE POLISH — theme-matched layout + professional motion
   ========================================================= */
.bv-banner-frame {
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(9, 71, 68, .10);
}
.bv-banner-frame img {
  aspect-ratio: 1680 / 740;
  object-fit: cover;
  object-position: center top;
}
/* The CTA is already part of the supplied banner artwork. */
.bv-banner-overlay,
.bv-banner-shop { display: none !important; }

.bv-home-cta-strip {
  padding: 28px 0 34px;
}
.bv-home-cta-buttons .btn-amber {
  box-shadow: 0 8px 20px rgba(225, 151, 0, .18);
}

.bv-why-section {
  background: linear-gradient(180deg, #f3f8f7 0%, #f8fbfa 100%);
  border-top: 1px solid #e4eeeb;
  border-bottom: 1px solid #e4eeeb;
}
.bv-why-layout {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}
.bv-why-copy .eyebrow { color: #b06b00; }
.bv-why-copy h2 {
  color: #075e59;
  letter-spacing: -.025em;
}
.bv-why-copy h3 { color: #173d3b; }
.bv-why-copy p { color: #536866; }
.bv-why-copy .btn-primary {
  background: #075e59;
  border-color: #075e59;
}
.bv-why-checks { gap: 12px; }
.bv-why-checks > div {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid #d7e5e1;
  border-radius: 11px;
  background: rgba(255,255,255,.94);
  color: #075e59;
  box-shadow: 0 4px 14px rgba(9,71,68,.045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.bv-why-checks > div:hover {
  transform: translateY(-4px);
  border-color: #b9d7d1;
  box-shadow: 0 10px 24px rgba(9,71,68,.10);
}
.bv-why-checks span { color: #174744; }
.bv-newsletter {
  background: linear-gradient(105deg, #075e59, #0d8d85);
  box-shadow: 0 12px 26px rgba(7,94,89,.14);
}

.bv-reviews-home {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #fff;
}
.bv-reviews-heading h2 { color: #075e59; font-size: clamp(30px,3vw,40px); }
.bv-reviews-heading p { font-size: 13px; color: #71827f; }
.bv-reviews-home .testi-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.bv-reviews-home .testi-card {
  padding: 24px;
  border: 1px solid #dce8e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20,52,49,.055);
  transition: transform .22s ease, box-shadow .22s ease;
}
.bv-reviews-home .testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(20,52,49,.10);
}
.bv-reviews-home .testi-stars { color: #e29a00; font-size: 14px; }
.bv-reviews-home .testi-quote { font-size: 12.5px; line-height: 1.7; color: #536866; min-height: 96px; }
.bv-reviews-home .testi-avatar { background: #0b9e9a; }

.bv-security-section {
  background: #fff;
  padding-top: 54px;
  padding-bottom: 28px;
  border-top: 1px solid #e4ebe9;
  border-bottom: 0;
}
.bv-security-heading { margin-bottom: 34px; }
.bv-security-heading h2 {
  color: #102a2a;
  font-size: clamp(32px,3.4vw,46px);
  letter-spacing: -.02em;
  border-bottom: 3px solid #dfe6e4;
}
.bv-security-logos {
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 22px;
  padding: 20px 0 38px;
  border-bottom: 1px solid #e5e9e8;
}
.bv-security-logo {
  height: 92px;
  padding: 6px;
  border-radius: 10px;
  transition: transform .22s ease, background .22s ease;
}
.bv-security-logo:hover {
  transform: translateY(-4px);
  background: #f7faf9;
}
.bv-security-logo img {
  width: auto;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}
.bv-security-benefits {
  gap: 28px;
  padding: 30px 0 10px;
}
.bv-security-benefit {
  padding: 4px 0;
}
.bv-security-benefit img { width: 66px; height: 64px; flex-basis: 66px; }
.bv-security-benefit strong { color: #17222e; }
.bv-security-benefit span { color: #75847f; }

/* Scroll-reveal animation inspired by the supplied reference design. */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  .bv-security-logo,
  .bv-why-checks > div,
  .bv-reviews-home .testi-card { transition: none; }
}

@media (max-width: 900px) {
  .bv-security-logos { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .bv-reviews-home .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bv-banner-frame { border-radius: 12px; }
  .bv-banner-frame img { aspect-ratio: 1680 / 740; }
  .bv-security-logos { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .bv-security-logo { height: 76px; }
  .bv-security-logo img { max-height: 58px; }
}

/* =========================================================
   20 AUG FINAL HOMEPAGE SPACING FIX
   ========================================================= */
/* Full-bleed hero: remove the white gap on every side and above/below. */
body:has(.bv-banner-hero) .bv-banner-hero {
  padding: 0 !important;
  margin: 0 !important;
}
body:has(.bv-banner-hero) .bv-banner-hero > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
body:has(.bv-banner-hero) .bv-banner-frame {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body:has(.bv-banner-hero) .bv-banner-frame img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1680 / 740;
  object-fit: cover;
  object-position: center top;
}

/* Security block should sit immediately against the footer on homepage. */
body:has(.bv-banner-hero) .bv-security-section {
  margin-bottom: 0 !important;
  padding-bottom: 18px !important;
}
body:has(.bv-banner-hero) #site-footer-root {
  margin: 0 !important;
  padding: 0 !important;
}
body:has(.bv-banner-hero) #site-footer-root .site-footer {
  margin-top: 0 !important;
}

@media (max-width: 600px) {
  body:has(.bv-banner-hero) .bv-banner-frame img {
    aspect-ratio: 1680 / 740;
  }
}

/* Homepage final polish: full-bleed clickable hero and compact transitions */
body:has(.bv-banner-hero) .bv-banner-hero + .bv-home-cta-strip{padding-top:24px;padding-bottom:30px}
body:has(.bv-banner-hero) .bv-banner-frame{display:block;cursor:pointer}
body:has(.bv-banner-hero) .bv-banner-frame img{transition:transform .55s ease}
body:has(.bv-banner-hero) .bv-banner-frame:hover img{transform:scale(1.012)}
body:has(.bv-banner-hero) .bv-security-section{padding-bottom:0!important}
body:has(.bv-banner-hero) #site-footer-root .site-footer{margin-top:0!important}

/* =========================================================
   HOMEPAGE FEATURED PRODUCTS + REVIEWS POLISH
   ========================================================= */
.bv-home-products-head {
  align-items: end;
  margin-bottom: 22px;
}
.bv-home-products-head h2 {
  color: var(--teal-dark);
}
.bv-home-products-head p {
  margin: 5px 0 0;
  font-size: 13px;
}
.bv-featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.bv-featured-card {
  border-radius: 14px;
  box-shadow: 0 7px 24px rgba(19,37,35,.06);
}
.bv-featured-card .pc-media {
  height: 210px;
  min-height: 210px;
  background: #fbfcfa;
}
.bv-featured-card .pc-media img {
  max-height: 190px;
  transition: transform .45s cubic-bezier(.2,.75,.25,1);
}
.bv-featured-card:hover .pc-media img {
  transform: scale(1.045);
}
.bv-home-loading {
  grid-column: 1 / -1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-soft);
  text-align: center;
}
.bv-reviews-home {
  padding-top: 42px;
  padding-bottom: 48px;
}
.bv-reviews-home .testi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bv-reviews-home .testi-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.bv-reviews-home .testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(19,37,35,.08);
  border-color: #c8ddd9;
}
.bv-reviews-home .testi-person {
  margin-top: auto;
}

@media (max-width: 980px) {
  .bv-featured-grid,
  .bv-reviews-home .testi-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 700px) {
  .bv-featured-grid,
  .bv-reviews-home .testi-grid {
    grid-template-columns: 1fr;
  }
  .bv-home-products-head {
    align-items: flex-start;
  }
  .bv-featured-card .pc-media {
    height: 220px;
    min-height: 220px;
  }
}


/* =========================================================
   FINAL USER REQUEST — responsive homepage + product assurance
   ========================================================= */

/* Product-page "Secure Checkout With" cards: larger, clearer and interactive. */
.pdp-secure-checkout {
  padding: 14px 15px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}
.pdp-assurance-label {
  font-size: 14px;
  margin-bottom: 12px;
}
.pdp-secure-badges {
  gap: 10px;
}
.pdp-secure-badge {
  min-height: 72px;
  padding: 10px 8px;
  gap: 8px;
  border-radius: 9px;
  font-size: 10.5px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: default;
}
.pdp-secure-badge:hover {
  transform: translateY(-5px);
  border-color: #b8d8d1;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(9,71,68,.12);
}
.pdp-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 3px 9px rgba(25,135,84,.10);
}
.pdp-secure-checkout:hover {
  border-color: #c5ded8;
  box-shadow: 0 8px 22px rgba(9,71,68,.08);
}
@media (max-width: 900px) {
  .pdp-secure-badges { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pdp-secure-badge { min-height: 68px; }
}
@media (max-width: 560px) {
  .pdp-secure-checkout { padding: 12px; }
  .pdp-assurance-label { font-size: 13px; }
  .pdp-secure-badges { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pdp-secure-badge { min-height: 64px; font-size: 9.5px; padding: 8px 6px; }
  .pdp-badge-icon { width: 26px; height: 26px; font-size: 13px; }
}
@media (max-width: 380px) {
  .pdp-secure-badges { grid-template-columns: 1fr; }
}

/* Homepage: prevent the fixed header/topbar from creating horizontal overflow. */
body:has(.bv-banner-hero) {
  overflow-x: hidden;
}
body:has(.bv-banner-hero) .topbar {
  padding-inline: 12px;
  white-space: normal;
  line-height: 1.35;
}
body:has(.bv-banner-hero) .container {
  width: 100%;
  box-sizing: border-box;
}
body:has(.bv-banner-hero) .bv-why-section,
body:has(.bv-banner-hero) .bv-security-section {
  overflow: hidden;
}
body:has(.bv-banner-hero) .bv-why-layout {
  min-width: 0;
}
body:has(.bv-banner-hero) .bv-why-copy,
body:has(.bv-banner-hero) .bv-why-checks,
body:has(.bv-banner-hero) .bv-newsletter,
body:has(.bv-banner-hero) .bv-security-logos,
body:has(.bv-banner-hero) .bv-security-benefits {
  min-width: 0;
}
body:has(.bv-banner-hero) .bv-why-copy p,
body:has(.bv-banner-hero) .bv-why-checks span,
body:has(.bv-banner-hero) .bv-security-benefit span,
body:has(.bv-banner-hero) .bv-security-benefit strong {
  overflow-wrap: anywhere;
}
@media (max-width: 980px) {
  body:has(.bv-banner-hero) .topbar {
    font-size: 11px;
  }
  body:has(.bv-banner-hero) .bv-why-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  body:has(.bv-banner-hero) .bv-why-copy {
    width: 100%;
  }
  body:has(.bv-banner-hero) .bv-why-checks {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 700px) {
  body:has(.bv-banner-hero) .topbar {
    min-height: 0;
    padding: 7px 10px;
    font-size: 10px;
    gap: 4px;
  }
  body:has(.bv-banner-hero) .topbar-sep {
    margin: 0 1px;
  }
  body:has(.bv-banner-hero) .header-inner {
    padding: 10px 12px;
    gap: 7px;
  }
  body:has(.bv-banner-hero) .header-actions {
    gap: 4px;
  }
  body:has(.bv-banner-hero) .bv-why-section {
    padding: 42px 0;
  }
  body:has(.bv-banner-hero) .bv-why-layout {
    gap: 22px;
  }
  body:has(.bv-banner-hero) .bv-why-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }
  body:has(.bv-banner-hero) .bv-why-copy h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  body:has(.bv-banner-hero) .bv-why-checks {
    grid-template-columns: 1fr;
  }
  body:has(.bv-banner-hero) .bv-why-checks > div {
    min-height: 0;
    padding: 13px 14px;
  }
  body:has(.bv-banner-hero) .bv-newsletter {
    margin-top: 20px;
  }
  body:has(.bv-banner-hero) .bv-security-section {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
  }
  body:has(.bv-banner-hero) .bv-security-heading {
    margin-bottom: 20px;
  }
  body:has(.bv-banner-hero) .bv-security-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
    padding-left: 0;
    padding-right: 0;
  }
  body:has(.bv-banner-hero) .bv-security-logos {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    padding: 12px 0 22px;
  }
  body:has(.bv-banner-hero) .bv-security-logo {
    min-width: 0;
    height: 82px;
    padding: 7px;
    background: #fbfcfc;
    border: 1px solid #e5ecea;
  }
  body:has(.bv-banner-hero) .bv-security-logo img {
    max-width: 100%;
    max-height: 62px;
  }
  body:has(.bv-banner-hero) .bv-security-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 22px;
  }
  body:has(.bv-banner-hero) .bv-security-benefit {
    padding: 10px 0;
    border-bottom: 1px solid #edf1f0;
  }
  body:has(.bv-banner-hero) .bv-security-benefit:last-child {
    border-bottom: 0;
  }
}


/* ==========================================================
   FINAL SITE-WIDE RESPONSIVE HEADER + CONTACT PAGE POLISH
   ========================================================== */
/* The homepage previously had extra topbar overrides. These rules intentionally
   apply to every page using the shared layout header. */
@media (max-width: 980px) {
  .site-sticky-shell .topbar {
    min-height: 0;
    height: auto;
    padding: 7px 14px;
    white-space: normal;
    overflow: visible;
    line-height: 1.4;
    text-align: center;
    flex-wrap: wrap;
  }
  .site-sticky-shell .header-inner {
    width: 100%;
    min-width: 0;
  }
  .site-sticky-shell .header-actions {
    min-width: 0;
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .site-sticky-shell .topbar {
    font-size: 10px;
    padding: 7px 10px;
    gap: 3px 5px;
  }
  .site-sticky-shell .topbar-sep { margin: 0 1px; }
  .site-sticky-shell .header-inner {
    padding: 10px 12px;
    gap: 7px;
  }
  .site-sticky-shell .header-actions { gap: 4px; }
  .site-sticky-shell .logo {
    min-width: 0;
    font-size: 0;
    gap: 0;
  }
  .site-sticky-shell .logo .site-logo-image {
    width: 138px;
    height: 46px;
  }
  .site-sticky-shell .icon-btn { width: 36px; height: 36px; }
  .site-sticky-shell .burger { width: 36px; height: 36px; align-items: center; justify-content: center; }
}

@media (max-width: 380px) {
  .site-sticky-shell .header-inner { padding-left: 9px; padding-right: 9px; }
  .site-sticky-shell .logo { font-size: 0; gap: 0; }
  .site-sticky-shell .logo .site-logo-image { width: 124px; height: 42px; }
  .site-sticky-shell .icon-btn, .site-sticky-shell .burger { width: 34px; height: 34px; }
}

/* ---------- Contact page ---------- */
.bv-contact-page { background: var(--ivory); overflow: hidden; }
.bv-contact-hero {
  position: relative;
  background: radial-gradient(circle at 85% 10%, rgba(23,148,142,.16), transparent 35%),
              linear-gradient(180deg, var(--teal-tint) 0%, var(--ivory) 100%);
  border-bottom: 1px solid rgba(9,75,72,.07);
}
.bv-contact-hero-inner {
  min-height: 360px; display: flex; align-items: center; justify-content: space-between; gap: 50px;
  padding-top: 54px; padding-bottom: 54px;
}
.bv-contact-hero-copy { max-width: 650px; }
.bv-contact-hero-copy h1 { font-size: clamp(40px, 5vw, 64px); margin: 16px 0 14px; color: var(--teal-dark); }
.bv-contact-hero-copy h1 em { font-style: normal; color: var(--amber-dark); }
.bv-contact-hero-copy p { max-width: 590px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.bv-contact-hero-actions { display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }
.bv-contact-hero-art { width: 250px; height: 250px; position:relative; flex:0 0 auto; }
.bv-contact-orb { position:absolute; inset:0; border-radius:44% 56% 58% 42% / 48% 42% 58% 52%; background:linear-gradient(135deg,var(--teal-dark),var(--teal)); box-shadow:0 26px 55px rgba(9,75,72,.24); animation:bvContactMorph 8s ease-in-out infinite; }
.bv-contact-icon-main { position:absolute; inset:0; margin:auto; width:94px; height:94px; border-radius:28px; background:rgba(255,255,255,.16); color:#fff; display:flex; align-items:center; justify-content:center; font-size:45px; box-shadow:0 15px 35px rgba(0,0,0,.12); }
.bv-contact-float { position:absolute; width:52px; height:52px; border-radius:50%; background:#fff; color:var(--teal-dark); display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px rgba(9,75,72,.15); font-weight:800; font-size:20px; animation:bvContactFloat 4s ease-in-out infinite; }
.bv-contact-float-one { right:-3px; top:-7px; }
.bv-contact-float-two { left:-12px; bottom:3px; animation-delay:1s; }
@keyframes bvContactMorph { 0%,100%{border-radius:44% 56% 58% 42% / 48% 42% 58% 52%;} 50%{border-radius:58% 42% 42% 58% / 55% 60% 40% 45%;} }
@keyframes bvContactFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.bv-contact-support-strip { background:var(--teal-dark); color:#fff; }
.bv-contact-support-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; padding-top:18px; padding-bottom:18px; }
.bv-contact-support-item { display:flex; align-items:center; gap:11px; min-width:0; color:#fff; padding:10px 8px; border-radius:12px; }
a.bv-contact-support-item:hover { background:rgba(255,255,255,.07); }
.bv-support-icon { width:40px; height:40px; border-radius:11px; background:rgba(255,255,255,.10); display:flex; align-items:center; justify-content:center; flex:0 0 auto; font-size:18px; }
.bv-contact-support-item strong { display:block; font-size:13.5px; }
.bv-contact-support-item small { display:block; color:rgba(255,255,255,.64); font-size:11px; margin-top:2px; }
.bv-contact-breadcrumb { padding-top:22px; }
.bv-contact-main { padding-top:24px; padding-bottom:64px; }
.bv-contact-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr); gap:30px; align-items:start; }
.bv-contact-form-card, .bv-contact-info-card, .bv-contact-team-badge { background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:0 8px 28px rgba(9,75,72,.06); }
.bv-contact-form-card { padding:34px; }
.bv-contact-card-heading h2 { color:var(--teal-dark); font-size:clamp(26px,3vw,34px); margin:12px 0 7px; }
.bv-contact-card-heading p { color:var(--ink-soft); font-size:14px; margin-bottom:26px; }
.bv-contact-form-card .form-field input, .bv-contact-form-card .form-field textarea { border-radius:11px; border-color:var(--line); background:#fcfdfc; }
.bv-contact-form-card .form-field input:focus, .bv-contact-form-card .form-field textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(23,148,142,.12); }
.bv-contact-form-foot { display:flex; align-items:center; justify-content:space-between; gap:15px; flex-wrap:wrap; margin-top:6px; }
.bv-contact-private { color:var(--ink-soft); font-size:12px; }
.bv-contact-form-foot .btn { min-width:160px; }
.bv-contact-info-col { display:flex; flex-direction:column; gap:14px; }
.bv-contact-team-badge { padding:17px 18px; display:flex; align-items:center; gap:13px; background:linear-gradient(135deg,rgba(23,148,142,.06),rgba(239,177,72,.07)); border-color:rgba(23,148,142,.20); }
.bv-team-avatars { display:flex; padding-left:5px; }
.bv-team-avatars span { width:34px; height:34px; margin-left:-7px; border:2px solid #fff; border-radius:50%; background:var(--teal); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:11px; }
.bv-team-avatars span:first-child { margin-left:0; background:var(--teal-dark); }
.bv-contact-team-badge strong { display:block; font-size:14px; color:var(--teal-dark); }
.bv-contact-team-badge small { display:block; color:var(--ink-soft); font-size:11.5px; margin-top:2px; }
.bv-contact-info-card { padding:19px 20px; display:flex; gap:14px; transition:transform .2s ease, box-shadow .2s ease; }
.bv-contact-info-card:hover { transform:translateY(-3px); box-shadow:0 14px 32px rgba(9,75,72,.10); }
.bv-info-icon { width:45px; height:45px; flex:0 0 auto; border-radius:13px; background:linear-gradient(135deg,var(--teal-dark),var(--teal)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:19px; box-shadow:0 8px 18px rgba(23,148,142,.20); }
.bv-contact-info-card h3 { font-size:15px; color:var(--teal-dark); margin:1px 0 8px; }
.bv-contact-info-card p { color:var(--ink); font-size:13.5px; margin:4px 0; line-height:1.55; }
.bv-contact-info-card p b { color:var(--ink-soft); font-size:12px; margin-right:6px; }
.bv-contact-info-card a { color:var(--teal-dark); font-weight:700; }
.bv-contact-info-card a:hover { color:var(--amber-dark); }
.bv-contact-info-card .bv-address b { display:block; color:var(--teal-dark); margin-bottom:2px; }
.bv-whatsapp-pill { display:inline-flex; margin-top:7px; padding:7px 12px; border-radius:999px; background:rgba(23,148,142,.09); font-size:12px; }
.bv-contact-bottom-card { margin-bottom:72px; padding:28px 30px; border-radius:18px; border:1px solid rgba(23,148,142,.18); background:linear-gradient(135deg,rgba(23,148,142,.07),rgba(239,177,72,.08)); display:flex; align-items:center; justify-content:space-between; gap:25px; }
.bv-contact-bottom-card h2 { color:var(--teal-dark); margin:10px 0 6px; font-size:24px; }
.bv-contact-bottom-card p { color:var(--ink-soft); font-size:13.5px; max-width:650px; }

@media (max-width: 980px) {
  .bv-contact-support-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bv-contact-grid { grid-template-columns:1fr; }
  .bv-contact-info-col { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bv-contact-team-badge { grid-column:1 / -1; }
}
@media (max-width: 700px) {
  .bv-contact-hero-inner { min-height:0; flex-direction:column; align-items:flex-start; padding-top:38px; padding-bottom:42px; gap:28px; }
  .bv-contact-hero-copy h1 { font-size:40px; }
  .bv-contact-hero-copy p { font-size:14.5px; }
  .bv-contact-hero-art { align-self:center; width:190px; height:190px; }
  .bv-contact-icon-main { width:72px; height:72px; font-size:34px; border-radius:22px; }
  .bv-contact-float { width:44px; height:44px; font-size:17px; }
  .bv-contact-support-grid { grid-template-columns:1fr; padding-top:12px; padding-bottom:12px; gap:2px; }
  .bv-contact-support-item { padding:8px 4px; }
  .bv-contact-breadcrumb { padding-top:17px; }
  .bv-contact-main { padding-top:15px; padding-bottom:42px; }
  .bv-contact-form-card { padding:24px 20px; }
  .bv-contact-info-col { display:flex; }
  .bv-contact-bottom-card { margin-bottom:48px; padding:24px 20px; flex-direction:column; align-items:flex-start; }
  .bv-contact-bottom-card .btn { width:100%; }
}
@media (max-width: 430px) {
  .bv-contact-hero-copy h1 { font-size:35px; }
  .bv-contact-hero-actions { flex-direction:column; align-items:stretch; }
  .bv-contact-hero-actions .btn { width:100%; }
  .bv-contact-form-foot { align-items:stretch; }
  .bv-contact-form-foot .btn { width:100%; }
}


/* Logo responsiveness */
@media (max-width: 900px) {
  .footer-logo .site-logo-image { width: 155px; height: 52px; }
}
@media (max-width: 560px) {
  .site-logo-image { width: 128px; height: 43px; }
  .site-sticky-shell .logo .site-logo-image { width: 128px; height: 43px; }
  .footer-logo .site-logo-image { width: 145px; height: 49px; }
  .footer-logo-panel { padding: 3px 6px; }
}
@media (max-width: 380px) {
  .site-sticky-shell .logo .site-logo-image { width: 116px; height: 39px; }
}

/* Live header product search */
.header-search-panel {
  position: relative;
  z-index: 1340;
}
.header-search-form {
  position: relative;
  z-index: 2;
}
.header-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: min(440px, 60vh);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(10, 55, 52, .14);
  padding: 6px;
  z-index: 1350;
}
.header-search-result {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease, transform .15s ease;
}
.header-search-result:hover,
.header-search-result:focus-visible {
  background: #f0f8f6;
  transform: translateY(-1px);
  outline: none;
}
.header-search-result-image {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.header-search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-search-result-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.header-search-result-copy strong {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-search-result-copy small {
  color: var(--ink-soft);
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-search-result-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}
.header-search-loading,
.header-search-empty {
  padding: 16px 14px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}
.header-search-empty strong { color: var(--ink); }

@media (max-width: 720px) {
  .header-search-results {
    top: calc(100% + 6px);
    max-height: 52vh;
    border-radius: 12px;
  }
  .header-search-result {
    grid-template-columns: 44px minmax(0,1fr) auto;
    gap: 9px;
    padding: 8px;
  }
  .header-search-result-image {
    width: 44px;
    height: 44px;
  }
  .header-search-result-copy strong { font-size: 12.5px; }
  .header-search-result-copy small { font-size: 10.5px; }
  .header-search-result-price { font-size: 11.5px; }
}
