/* =========================================================
   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);
}

/* ---------- 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;
}
.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 {
    font-size: 19px;
    gap: 7px;
  }
  .logo .rx {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .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;
  }
}
