/* UK BAC WATER — first working build */

:root {
  --teal: #0a7c86;
  --teal-dark: #075e66;
  --ink: #17212b;
  --muted: #67727e;
  --soft: #f4f7f8;
  --line: #dfe7e9;
  --white: #ffffff;
  --shadow: 0 24px 65px rgba(23, 33, 43, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.no-scroll { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow { width: min(960px, calc(100% - 40px)); }

.announcement {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 40;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  animation: stock-ticker 30s linear infinite;
  will-change: transform;
}
.announcement__track { display: flex; align-items: center; flex: none; }
.announcement__message { display: inline-flex; align-items: center; gap: 13px; padding-right: 54px; font-weight: 800; }
.announcement__message::before { content: "◆"; color: #6fd5db; font-size: 8px; }
@keyframes stock-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .announcement__inner { width: 100%; justify-content: center; animation: none; }
  .announcement__track + .announcement__track { display: none; }
  .announcement__message { padding-right: 0; }
}
.dot { width: 3px; height: 3px; border-radius: 50%; background: #6fd5db; }

.site-header {
  position: sticky;
  top: 38px;
  z-index: 30;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,231,233,.8);
}
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 36px; height: 43px; color: var(--teal); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: .95; font-family: "Manrope", sans-serif; }
.brand__text strong { color: var(--teal); font-size: 18px; }
.brand__text b { font-size: 18px; letter-spacing: -.03em; }
.desktop-nav { display: flex; gap: 32px; font-size: 14px; font-weight: 600; }
.desktop-nav a { color: #46515c; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--teal); }

.basket-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px 10px 17px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.basket-button span {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  margin-left: 7px;
  padding-inline: 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
}

.intro {
  min-height: 510px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 50% 20%, rgba(10,124,134,.08), transparent 38%),
    linear-gradient(#fff, #fbfdfd);
}
.intro__inner { max-width: 790px; }
.eyebrow, .section-label, .section-heading span, .product-kicker {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.08; margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -.055em;
}
.intro p {
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 18px;
}
.button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--teal); color: #fff; box-shadow: 0 12px 28px rgba(10,124,134,.2); }
.button--primary:hover { background: var(--teal-dark); }
.button--light { background: #fff; color: var(--ink); }
.button--wide { flex: 1; }
.button--full { width: 100%; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid article {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-size: 14px; }
.trust-grid small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.trust-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #b9d9dc;
  border-radius: 50%;
  color: var(--teal);
  font-weight: 800;
}

.product-section { padding: 110px 0; }
.product-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr);
  gap: 72px;
  align-items: center;
}
.product-image-wrap {
  min-height: 620px;
  display: grid;
  place-items: center;
  background: #fafcfc;
  border: 1px solid #edf1f2;
  border-radius: 28px;
  overflow: hidden;
}
.product-image { width: 100%; height: 100%; object-fit: cover; }
.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ecf8f2;
  color: #18784e;
  font-size: 12px;
  font-weight: 800;
}
.stock-pill i { width: 7px; height: 7px; border-radius: 50%; background: #29a36a; }
.product-kicker { margin: 27px 0 8px; }
.product-info h2 { margin-bottom: 7px; font-size: clamp(39px, 5vw, 58px); letter-spacing: -.045em; }
.product-size { color: var(--muted); margin: 0; font-size: 17px; }
.price { margin-top: 24px; font-size: 30px; font-weight: 800; }
.tax-note { color: var(--muted); font-size: 12px; margin: 2px 0 24px; }
.notice {
  padding: 18px 19px;
  border-left: 3px solid var(--teal);
  background: var(--soft);
  border-radius: 0 9px 9px 0;
}
.notice strong { font-size: 13px; }
.notice p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.purchase-row { display: flex; gap: 12px; margin-top: 25px; }
.quantity-control {
  height: 52px;
  display: grid;
  grid-template-columns: 42px 46px 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.quantity-control button {
  border: 0;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}
.quantity-control input {
  width: 100%;
  border: 0;
  text-align: center;
  background: var(--soft);
  font-weight: 800;
  -moz-appearance: textfield;
}
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.micro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  padding: 0;
  margin: 19px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}
.micro-points li::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 7px; }

.content-section { padding: 105px 0; background: var(--soft); }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { margin: 9px 0 0; font-size: clamp(34px,4vw,52px); letter-spacing: -.045em; }
.detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.detail-grid article {
  min-height: 220px;
  padding: 31px;
  background: #fff;
  border: 1px solid #e7edef;
  border-radius: 18px;
}
.detail-grid h3 { font-size: 20px; }
.detail-grid p { color: var(--muted); font-size: 14px; }

.delivery-section { padding: 105px 0; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.delivery-grid h2 { font-size: clamp(38px, 5vw, 61px); letter-spacing: -.05em; margin: 10px 0 0; }
.delivery-card { border-top: 1px solid var(--line); }
.delivery-card > div { display: grid; gap: 4px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.delivery-card span { color: var(--muted); font-size: 13px; }

.faq-section { padding: 105px 0; background: #fbfcfc; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  padding: 23px 4px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 5px; font-size: 23px; color: var(--teal); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: -4px 0 22px; max-width: 720px; color: var(--muted); }

.closing-cta { padding: 32px 0; background: var(--teal); color: #fff; }
.closing-cta__inner {
  min-height: 210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.closing-cta span { text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: 12px; opacity: .8; }
.closing-cta h2 { margin: 9px 0 0; font-size: clamp(35px,4vw,54px); letter-spacing: -.045em; }

footer { padding: 70px 0 24px; background: #14202a; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.brand--footer .brand__mark { color: #62cbd1; }
.brand--footer .brand__text strong { color: #62cbd1; }
.footer-copy { color: #9ca8b1; max-width: 320px; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 12px; }
.footer-links a { color: #b5bec5; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #84919a;
  font-size: 11px;
}

.basket-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10,18,25,.5);
  backdrop-filter: blur(3px);
}
.basket-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(440px, 100%);
  height: 100dvh;
  padding: 25px;
  background: #fff;
  transform: translateX(105%);
  transition: transform .28s ease;
  box-shadow: -20px 0 50px rgba(0,0,0,.12);
}
.basket-drawer.open { transform: translateX(0); }
.basket-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.basket-header h2 { margin: 0; font-size: 25px; }
.basket-header button {
  width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--soft); font-size: 26px; cursor: pointer;
}
.basket-empty { padding-top: 60px; text-align: center; }
.basket-empty p { color: var(--muted); }


.basket-added {
  margin: 18px 0 4px;
  padding: 13px 14px;
  border: 1px solid rgba(35, 122, 83, .22);
  border-radius: 12px;
  background: rgba(35, 122, 83, .08);
  display: flex;
  align-items: center;
  gap: 11px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}
.basket-added.is-hiding { opacity: 0; transform: translateY(-6px); }
.basket-added__tick {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #237a53;
  color: #fff;
  font-weight: 900;
}
.basket-added strong, .basket-added span { display: block; }
.basket-added strong { font-size: 13px; }
.basket-added span { margin-top: 2px; color: var(--muted); font-size: 11px; }

.basket-items { max-height: min(48vh, 520px); overflow-y: auto; padding-right: 4px; }
.basket-line-price { margin-top: 4px; color: var(--ink) !important; font-weight: 800; }
.basket-item:last-child { border-bottom: 0; }

.basket-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 15px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.basket-item img { width: 86px; height: 86px; object-fit: cover; border-radius: 10px; background: var(--soft); }
.basket-item strong, .basket-item span { display: block; }
.basket-item span { color: var(--muted); font-size: 12px; }
.remove-button { align-self: start; border: 0; background: none; color: var(--muted); font-size: 11px; text-decoration: underline; cursor: pointer; }
.basket-qty { display: inline-flex; margin-top: 9px; align-items: center; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.basket-qty button { width: 29px; height: 29px; border: 0; background: #fff; cursor: pointer; }
.basket-qty span { min-width: 26px; text-align: center; color: var(--ink); font-weight: 800; }
.basket-total { display: flex; justify-content: space-between; padding: 21px 0; font-size: 17px; }
.checkout-note { text-align: center; color: var(--muted); font-size: 11px; }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid, .delivery-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-image-wrap { min-height: auto; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .announcement__inner { gap: 0; letter-spacing: .06em; font-size: 10px; }
  .header__inner { min-height: 72px; }
  .brand__mark { width: 31px; height: 38px; }
  .brand__text strong, .brand__text b { font-size: 15px; }
  .basket-button { padding: 8px 10px 8px 12px; font-size: 12px; }
  .intro { min-height: 465px; padding: 65px 0; }
  .intro p { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 5px; }
  .trust-grid article:last-child { border-bottom: 0; }
  .product-section, .content-section, .delivery-section, .faq-section { padding: 72px 0; }
  .product-grid { gap: 32px; }
  .product-image-wrap { border-radius: 18px; }
  .purchase-row { flex-direction: column; }
  .quantity-control { width: 100%; grid-template-columns: 1fr 60px 1fr; }
  .button--wide { width: 100%; }
  .delivery-grid { gap: 30px; }
  .closing-cta__inner { min-height: 250px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}


/* Product variant selector */
.variant-picker {
  border: 0;
  padding: 0;
  margin: 27px 0 4px;
}
.variant-picker legend {
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.variant-option {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.variant-option:hover {
  border-color: #9bc8cc;
  transform: translateY(-1px);
}
.variant-option.active {
  border-color: var(--variant-accent, var(--teal));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--variant-accent, var(--teal)) 13%, transparent);
}
.variant-option span:nth-child(2) {
  display: grid;
  line-height: 1.2;
}
.variant-option strong {
  font-size: 13px;
}
.variant-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.variant-option i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--variant-accent, var(--teal));
  color: white;
  font-size: 11px;
  font-style: normal;
  opacity: 0;
}
.variant-option.active i { opacity: 1; }

.variant-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #cfd8dc;
}
.variant-swatch--original { background: #d40069; }
.variant-swatch--blue { background: #1166bd; }
.variant-swatch--pink { background: #c50062; }

.product-image {
  transition: opacity .18s ease, transform .28s ease;
}
.product-image.is-changing {
  opacity: .2;
  transform: scale(.985);
}

@media (max-width: 600px) {
  .variant-option { min-height: 64px; }
}


/* Four-product catalogue */
.intro__inner{max-width:780px}
.catalogue-section{padding:110px 0;background:#f7fbfb}
.catalogue-heading{display:flex;justify-content:space-between;align-items:end;gap:40px;margin-bottom:38px}
.catalogue-heading h2{font-family:Manrope,sans-serif;font-size:clamp(38px,5vw,58px);letter-spacing:-.045em;margin:8px 0 0}
.catalogue-heading p{max-width:520px;color:var(--muted);line-height:1.7;margin:0}
.catalogue-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}
.product-card{background:#fff;border:1px solid var(--line);border-radius:24px;overflow:hidden;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);min-height:440px;box-shadow:0 14px 40px rgba(7,56,61,.055);transition:transform .25s ease,box-shadow .25s ease}
.product-card:hover{transform:translateY(-4px);box-shadow:0 22px 50px rgba(7,56,61,.09)}
.product-card__image{background:linear-gradient(145deg,#edf6f6,#fff);min-height:420px;display:flex;align-items:center;justify-content:center;padding:18px;overflow:hidden}
.product-card__image img{width:100%;height:100%;object-fit:contain;transition:transform .35s ease}
.product-card:hover .product-card__image img{transform:scale(1.025)}
.product-card__body{padding:32px 28px;display:flex;flex-direction:column;align-items:flex-start}
.product-card__brand{margin:24px 0 6px;color:var(--muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.11em}
.product-card h3{font-family:Manrope,sans-serif;font-size:30px;line-height:1.02;letter-spacing:-.035em;margin:0 0 8px}
.product-card__format{font-weight:700;color:var(--accent);margin:0 0 18px}
.product-card__copy{color:var(--muted);line-height:1.6;font-size:14px;margin:0 0 26px}
.product-card__footer{width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:auto;padding-top:18px;border-top:1px solid var(--line)}
.product-card__footer>strong{font-family:Manrope,sans-serif;font-size:24px}
.product-card__footer .button{padding:13px 16px;font-size:13px}
.catalogue-note{text-align:center;color:var(--muted);font-size:12px;margin:24px 0 0}
@media(max-width:1050px){.product-card{grid-template-columns:1fr}.product-card__image{min-height:330px}.product-card__body{min-height:310px}}
@media(max-width:760px){.catalogue-section{padding:72px 0}.catalogue-heading{display:block}.catalogue-heading p{margin-top:16px}.catalogue-grid{grid-template-columns:1fr}.product-card{min-height:0}.product-card__image{min-height:360px}.product-card__body{min-height:300px}.product-card__footer{align-items:center}}

/* Shipping and address checkout */
.basket-summary { padding: 18px 0 21px; display: grid; gap: 10px; }
.basket-summary > div:not(.free-delivery-progress) { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.free-delivery-progress { padding: 11px 12px; border-radius: 9px; background: #f1f7f5; color: #266953; font-size: 11px; font-weight: 800; line-height: 1.4; }
.free-delivery-progress.qualified { background: #e9f7ee; color: #16723c; }
.discount-code-box{margin:0 0 20px;padding:14px;border:1px solid var(--line);border-radius:12px;background:#f8fbfb}
.discount-code-box>label{display:block;margin-bottom:8px;font-size:12px;font-weight:900}
.discount-code-box__controls{display:grid;grid-template-columns:1fr auto auto;gap:8px}
.discount-code-box__controls input{min-width:0;height:42px;padding:0 12px;border:1px solid var(--line);border-radius:9px;background:#fff;font:800 13px Manrope,sans-serif;text-transform:uppercase;outline:none}
.discount-code-box__controls input:focus{border-color:#348168;box-shadow:0 0 0 3px rgba(52,129,104,.12)}
.discount-code-box__controls button{height:42px;padding:0 14px;border:0;border-radius:9px;background:#0d3238;color:#fff;font:800 12px Manrope,sans-serif;cursor:pointer}
.discount-code-box__controls button#removeDiscountCode{background:#edf3f3;color:#38545a}
.discount-code-message{min-height:17px;margin:8px 0 0;color:#617579;font-size:11px;font-weight:700}
.discount-code-message.is-success{color:#08734f}.discount-code-message.is-error{color:#9c2727}
#basketDiscountRow strong,#checkoutDiscountRow strong{color:#08734f}
#basketDiscountRow small,#checkoutDiscountRow small{font-size:10px;color:#617579;font-weight:800}
.checkout-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(10,18,25,.62); backdrop-filter: blur(5px); }
.checkout-modal { position: fixed; z-index: 90; top: 50%; left: 50%; width: min(720px, calc(100% - 28px)); max-height: min(90dvh, 900px); overflow: auto; padding: 28px; border-radius: 20px; background: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translate(-50%, -46%) scale(.98); transition: .24s ease; }
.checkout-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.checkout-modal__header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.checkout-modal__header h2 { margin: 5px 0 0; font-size: 31px; }
.checkout-modal__header button { width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--soft); font-size: 26px; cursor: pointer; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 22px 0; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: 12px; font-weight: 800; }
.field em { color: var(--muted); font-size: 10px; font-style: normal; font-weight: 500; }
.field input { width: 100%; height: 47px; padding: 0 13px; border: 1px solid var(--line); border-radius: 9px; font: inherit; outline: none; }
.field input:focus { border-color: #348168; box-shadow: 0 0 0 3px rgba(52,129,104,.12); }
.shipping-options { border: 0; padding: 0; margin: 0 0 21px; }
.shipping-options legend { margin-bottom: 10px; font-size: 13px; font-weight: 900; }
.shipping-option { display: grid; grid-template-columns: 20px 1fr auto; gap: 12px; align-items: center; padding: 15px; margin-top: 9px; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
.shipping-option:has(input:checked) { border-color: #348168; background: #f6fbf9; box-shadow: 0 0 0 2px rgba(52,129,104,.08); }
.shipping-option input { accent-color: #216f57; }
.shipping-option strong, .shipping-option small { display: block; }
.shipping-option small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.shipping-option b { font-size: 14px; }
.checkout-summary { display: grid; gap: 9px; padding: 16px 0 20px; border-top: 1px solid var(--line); }
.checkout-summary > div { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }
.checkout-summary__total { padding-top: 11px; border-top: 1px solid var(--line); font-size: 19px !important; }
.checkout-error { margin: 0 0 12px; padding: 10px; border-radius: 8px; color: #9c2727; background: #fff0f0; font-size: 12px; font-weight: 700; }

@media (max-width: 600px) {
  .checkout-modal { max-height: 94dvh; padding: 20px; border-radius: 16px; }
  .checkout-modal__header h2 { font-size: 25px; }
  .checkout-fields { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .shipping-option { grid-template-columns: 20px 1fr auto; padding: 13px 11px; }
  .discount-code-box__controls{grid-template-columns:1fr auto}
  .discount-code-box__controls button#removeDiscountCode{grid-column:1 / -1}
}


/* Product-card quantity selector */
.product-card__footer{align-items:flex-end}
.product-buy-row{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.card-qty{height:44px;display:grid;grid-template-columns:36px 42px 36px;align-items:stretch;border:1px solid var(--line);border-radius:10px;overflow:hidden;background:#fff}
.card-qty__button{border:0;background:#f7fbfb;color:var(--ink);font-size:20px;line-height:1;cursor:pointer;transition:background .2s ease,color .2s ease}
.card-qty__button:hover{background:var(--accent);color:#fff}
.card-qty__input{width:42px;border:0;border-left:1px solid var(--line);border-right:1px solid var(--line);text-align:center;font:800 14px Manrope,sans-serif;color:var(--ink);outline:none;background:#fff;-moz-appearance:textfield}
.card-qty__input::-webkit-outer-spin-button,.card-qty__input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.product-buy-row .button{height:44px;white-space:nowrap}
@media(max-width:520px){
  .product-card__footer{display:grid;grid-template-columns:1fr;align-items:stretch}
  .product-card__footer>strong{margin-bottom:4px}
  .product-buy-row{display:grid;grid-template-columns:114px 1fr;justify-content:stretch}
  .card-qty{grid-template-columns:36px 42px 36px}
  .product-buy-row .button{width:100%}
}

/* Ensure quantity controls remain tappable above card imagery/effects */
.product-buy-row,.card-qty,.card-qty__button,.card-qty__input,.add-product{position:relative;z-index:5}
.card-qty__button{touch-action:manipulation;-webkit-tap-highlight-color:transparent;pointer-events:auto;user-select:none}
.card-qty__button:active{background:var(--accent);color:#fff;transform:scale(.96)}


/* Pre-launch stock status */
.basket-button { display: none !important; }

.stock-update {
  margin: 28px 0 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(10,124,134,.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 5% 15%, rgba(10,124,134,.10), transparent 35%),
    linear-gradient(135deg, #f8fcfc, #ffffff);
  box-shadow: 0 18px 48px rgba(8,53,58,.08);
}
.stock-update h3 {
  margin: 7px 0 10px;
  font-family: Manrope, sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  color: var(--ink);
}
.stock-update__copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.stock-alert-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.stock-alert-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.stock-alert-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(13,45,49,.18);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.stock-alert-form input[type="email"]:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10,124,134,.10);
}
.stock-alert-form__note,
.stock-alert-form__success {
  margin: 9px 0 0;
  font-size: 12px;
}
.stock-alert-form__note { color: var(--muted); }
.stock-alert-form__success {
  color: #16764a;
  font-weight: 800;
}
.honeypot {
  display: none !important;
}

.stock-pill--out {
  color: #a63b32;
  background: rgba(190,64,52,.09);
  border-color: rgba(190,64,52,.15);
}
.stock-pill--out i { background: #c34639; }

.product-card__footer--out {
  align-items: flex-end;
  gap: 18px;
}
.out-of-stock-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}
.out-of-stock-actions > span {
  font-size: 12px;
  font-weight: 700;
  color: #a63b32;
}
.notify-product {
  white-space: nowrap;
  text-decoration: none;
}
.button--secondary {
  border: 1px solid rgba(10,124,134,.28);
  background: rgba(10,124,134,.06);
  color: var(--teal-dark);
  box-shadow: none;
}
.button--secondary:hover {
  background: var(--teal);
  color: #fff;
}

@media (max-width: 760px) {
  .stock-update {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 22px;
  }
  .stock-alert-form__row {
    grid-template-columns: 1fr;
  }
  .stock-alert-form__row .button {
    width: 100%;
  }
  .product-card__footer--out {
    align-items: stretch;
    flex-direction: column;
  }
  .out-of-stock-actions {
    align-items: stretch;
    text-align: left;
  }
  .notify-product {
    width: 100%;
    text-align: center;
  }
}

.stock-alert-form__success.is-error{color:#a63b32;}

.stock-alert-form__error { margin:9px 0 0; color:#a63b32; font-size:12px; font-weight:800; }
#stockAlertButton:disabled { opacity:.65; cursor:wait; }


/* Stock-only pre-launch panel: email signup intentionally removed */
.stock-update--message { grid-template-columns: 1fr; }
.stock-update--message .stock-update__copy { max-width: 820px; }
.out-of-stock-actions--date-only { min-width: 170px; }
@media (max-width: 760px) {
  .out-of-stock-actions--date-only { min-width: 0; }
}


/* Stock alert form */
.stock-update {
  margin: 28px 0 34px; padding: 28px; display:grid; grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr); gap:32px; align-items:center; border:1px solid rgba(10,124,134,.18); border-radius:22px; background:radial-gradient(circle at 5% 15%,rgba(10,124,134,.10),transparent 35%),linear-gradient(135deg,#f8fcfc,#fff); box-shadow:0 18px 48px rgba(8,53,58,.08);
}
.stock-update h3{margin:7px 0 10px;font-family:Manrope,sans-serif;font-size:clamp(25px,3vw,36px);color:var(--ink)}
.stock-update__copy p{margin:0;color:var(--muted);line-height:1.7}
.stock-alert-form label{display:block;margin-bottom:8px;font-size:13px;font-weight:800;color:var(--ink)}
.stock-alert-form__row{display:grid;grid-template-columns:1fr auto;gap:10px}
.stock-alert-form input[type=email]{width:100%;min-height:48px;padding:0 15px;border:1px solid rgba(13,45,49,.18);border-radius:12px;background:#fff;color:var(--ink);font:inherit;outline:none}
.stock-alert-form input[type=email]:focus{border-color:var(--teal);box-shadow:0 0 0 4px rgba(10,124,134,.10)}
.stock-alert-form__note,.stock-alert-form__status{margin:9px 0 0;font-size:12px}
.stock-alert-form__note{color:var(--muted)}
.stock-alert-form__status{font-weight:800;min-height:18px}
.stock-alert-form__status.success{color:#16764a}.stock-alert-form__status.error{color:#a63b32}
.honeypot{display:none!important}
@media(max-width:760px){.stock-update{grid-template-columns:1fr;padding:22px;gap:22px}.stock-alert-form__row{grid-template-columns:1fr}.stock-alert-form__row .button{width:100%}}

/* Clear stock date on desktop */
.out-of-stock-actions--date-only > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(166,59,50,.20);
  border-radius: 10px;
  background: #fff5f3;
  color: #8f2f28;
  line-height: 1.25;
  white-space: normal;
}
@media (min-width: 761px) {
  .product-card__footer--out { align-items: center; }
  .out-of-stock-actions--date-only { width: min(185px, 56%); min-width: 0; }
  .out-of-stock-actions--date-only > span { width: 100%; text-align: center; }
}

/* Footer legal links */
.footer-links button {
  width: max-content;
  padding: 0;
  border: 0;
  background: none;
  color: #b5bec5;
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.footer-links button:hover { color: #fff; }

/* Smooth legal and contact drawer */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(8,18,24,.56);
  backdrop-filter: blur(4px);
}
.legal-drawer {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  width: min(620px, 94vw);
  height: 100dvh;
  padding: 28px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -24px 0 70px rgba(6,28,34,.24);
  transform: translateX(105%);
  transition: transform .3s ease;
}
.legal-drawer.open { transform: translateX(0); }
.legal-drawer__header {
  position: sticky;
  top: -28px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: -28px -28px 24px;
  padding: 25px 28px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.legal-drawer__header h2 { margin: 5px 0 0; font-size: clamp(28px, 4vw, 38px); }
.legal-drawer__header button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 27px;
  cursor: pointer;
}
.legal-panel { color: var(--ink); }
.legal-panel > p:first-child { margin-top: 0; }
.legal-panel h3 { margin: 25px 0 7px; font-size: 17px; }
.legal-panel p { color: var(--muted); line-height: 1.75; }
.legal-updated {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--teal-dark) !important;
  font-size: 12px;
  font-weight: 800;
}
.contact-direct { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.contact-direct a { padding: 10px 12px; border-radius: 10px; background: var(--soft); color: var(--teal-dark); font-size: 13px; font-weight: 800; }
.legal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.field select,.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.field select { min-height: 47px; }
.field textarea { resize: vertical; min-height: 130px; }
.field select:focus,.field textarea:focus { border-color: #348168; box-shadow: 0 0 0 3px rgba(52,129,104,.12); }
.legal-form-status { min-height: 22px; margin: 12px 0 0; font-size: 13px; font-weight: 800; }
.legal-form-status.success { color: #16764a; }
.legal-form-status.error { color: #a63b32; }
@media (max-width: 700px) {
  .legal-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(88dvh, 860px);
    padding: 22px;
    border-radius: 22px 22px 0 0;
    transform: translateY(105%);
  }
  .legal-drawer.open { transform: translateY(0); }
  .legal-drawer__header { top: -22px; margin: -22px -22px 22px; padding: 21px 22px 16px; }
  .legal-form-grid { grid-template-columns: 1fr; }
  .legal-form-grid .field--full { grid-column: auto; }
}


/* Live stock and batch information */
.stock-pill--coming{background:#fff7df;color:#8a6500}
.stock-pill--coming i{background:#d49a00}
.product-specs{margin:16px 0 0;border:1px solid var(--line);border-radius:12px;background:#fbfcfc;overflow:hidden}
.product-specs summary{padding:12px 14px;cursor:pointer;font-size:12px;font-weight:800;color:var(--ink);list-style:none}
.product-specs summary::-webkit-details-marker{display:none}
.product-specs summary::after{content:'+';float:right;color:var(--brand);font-size:16px}
.product-specs[open] summary::after{content:'−'}
.product-specs dl{margin:0;padding:0 14px 12px;display:grid;gap:7px}
.product-specs dl div{display:flex;justify-content:space-between;gap:16px;padding-top:7px;border-top:1px solid var(--line);font-size:11px}
.product-specs dt{color:var(--muted)}
.product-specs dd{margin:0;font-weight:800;text-align:right;color:var(--ink)}
.button--secondary{display:inline-flex;align-items:center;justify-content:center;background:#eef8f8;color:var(--brand);border:1px solid #c8e7e9;text-decoration:none}


.checkout-confirmations{display:grid;gap:12px;margin:18px 0}.checkout-confirmations label{display:flex;gap:10px;align-items:flex-start;padding:14px;border:1px solid #d8e3e5;border-radius:14px;background:#f8fbfb;font-size:.9rem;line-height:1.45}.checkout-confirmations input{margin-top:3px;accent-color:#0a7c86}.paypal-stage,.payment-success{padding:24px}.paypal-stage__status{text-align:center;margin-bottom:18px}.paypal-stage__status h3,.payment-success h3{font-family:Manrope,sans-serif;font-size:1.55rem;margin:5px 0 8px}.paypal-stage__status p,.payment-success p{color:#637078;line-height:1.55}.paypal-stage__summary{margin-bottom:18px}.paypal-stage #paypal-button-container{min-height:45px;margin:10px 0 16px}.button--secondary{background:#fff;color:#16212b;border:1px solid #d5dfe2}.payment-success{text-align:center}.payment-success__tick{width:62px;height:62px;border-radius:50%;display:grid;place-items:center;margin:0 auto 16px;background:#e9f8f2;color:#15815f;font-size:2rem;font-weight:800}@media(max-width:640px){.paypal-stage,.payment-success{padding:20px 16px}}


/* Temporary holiday dispatch notice */
.announcement--holiday {
  background: #a51d24;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}
.announcement__inner--holiday {
  min-height: 46px;
  gap: 7px;
  text-align: center;
  line-height: 1.4;
  flex-wrap: wrap;
  padding: 7px 0;
}
.announcement__inner--holiday strong {
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Genuine low-stock indicator */
.stock-pill--low {
  background: #fff1d6;
  color: #8a5400;
}
.stock-pill--low i {
  background: #e48a00;
}

@media (max-width: 640px) {
  .announcement__inner--holiday {
    padding: 9px 4px;
    font-size: 12px;
  }
}


/* Enquiry page */
.enquiry-hero {
  padding: 56px 0 18px;
}
.enquiry-hero__card {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: linear-gradient(135deg, #0d3238 0%, #0a7c86 55%, #11a3a8 100%);
  color: #ffffff;
  border-radius: 34px;
  padding: clamp(30px, 5vw, 56px);
  box-shadow: 0 24px 52px rgba(10, 46, 51, 0.20);
}
.enquiry-hero__card .section-label { color: rgba(255,255,255,0.78); }
.enquiry-hero__card h1 {
  margin: 8px 0 16px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
}
.enquiry-hero__card p {
  margin: 0;
  max-width: 820px;
  color: rgba(255,255,255,0.92);
}
.enquiry-page .section-card {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 44, 50, 0.06);
  padding: clamp(28px, 4vw, 44px);
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}
.enquiry-list {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}
.enquiry-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f3f8f8;
  border: 1px solid rgba(10, 124, 134, 0.10);
  color: #17343a;
  font-weight: 600;
}
.enquiry-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fbfcfc;
  border: 1px solid rgba(20, 39, 44, 0.10);
  color: #456168;
}
.enquiry-form {
  display: grid;
  gap: 16px;
}
.enquiry-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.enquiry-form .field {
  display: grid;
  gap: 8px;
}
.enquiry-form .field--full { grid-column: 1 / -1; }
.enquiry-form .field span {
  font-size: 14px;
  font-weight: 700;
  color: #17343a;
}
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 39, 44, 0.12);
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: #17343a;
}
.enquiry-form textarea { resize: vertical; min-height: 126px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: none;
  border-color: #0a7c86;
  box-shadow: 0 0 0 4px rgba(10, 124, 134, 0.10);
}
.enquiry-confirm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #456168;
  font-size: 14px;
}
.enquiry-confirm input { width: auto; margin-top: 3px; }
.enquiry-form .button--full { width: 100%; justify-content: center; }
.enquiry-form__note { margin: 0; color: #60777d; font-size: 13px; }
.success-card {
  max-width: 760px;
  margin: 48px auto 80px;
  text-align: center;
}
.success-card p { max-width: 560px; margin: 14px auto 0; }
@media (max-width: 900px) {
  .enquiry-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .enquiry-list, .enquiry-form .form-grid { grid-template-columns: 1fr; }
  .enquiry-hero { padding-top: 40px; }
  .enquiry-page .section-card { border-radius: 22px; padding: 26px 22px; }
}




/* Dr Glexx boxed / bottle-only purchase options */
.glexx-options{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.glexx-option{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background:#fff;
}
.glexx-option__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}
.glexx-option__head > div{
  display:grid;
  gap:3px;
}
.glexx-option__head span{
  color:var(--muted);
  font-size:12px;
}
.glexx-option__price{
  font-size:20px;
  white-space:nowrap;
}
.glexx-option .product-buy-row{
  margin-top:0;
}
@media (max-width:520px){
  .glexx-option .product-buy-row{
    align-items:stretch;
  }
  .glexx-option .product-buy-row .button{
    flex:1 1 auto;
  }
}

/* Pre-order purchase options */
.preorder-footer{align-items:flex-start}
.preorder-buy-stack{display:grid;gap:12px;justify-items:end}

/* Keep the 5-pack deal visually separate from the normal quantity controls. */
.preorder-offer{
  width:min(100%,310px);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  padding:13px 14px;
  border:1px solid rgba(10,124,134,.22);
  border-radius:16px;
  background:linear-gradient(135deg,rgba(10,124,134,.10),rgba(10,124,134,.035));
  box-shadow:0 8px 22px rgba(13,50,56,.06);
}
.preorder-offer__copy{display:grid;gap:2px;min-width:0}
.preorder-offer__copy small{
  color:var(--teal-dark);
  font:800 10px/1.2 Manrope,sans-serif;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.preorder-offer__copy strong{
  color:var(--ink);
  font-family:Manrope,sans-serif;
  font-size:18px;
  line-height:1.15;
}
.preorder-offer .button{
  min-height:42px;
  padding:10px 14px;
  border-radius:12px;
  background:var(--teal);
  border-color:var(--teal);
  color:#fff;
  box-shadow:none;
}
.preorder-offer .button:hover{background:var(--teal-dark);border-color:var(--teal-dark);color:#fff}

/* Desktop/tablet: let bulk-pack offers use the full footer width instead of squeezing beside the main price. */
@media(min-width:1051px){
  .product-card--bulk-offers{grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr)}
}
@media(min-width:521px){
  .preorder-footer{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    gap:12px 16px;
    align-items:start;
  }
  .preorder-footer>strong{grid-column:1;grid-row:1;align-self:center}
  .preorder-buy-stack{display:contents}
  .preorder-footer .product-buy-row{grid-column:2;grid-row:1;justify-self:end}
  .preorder-footer .preorder-offer{
    grid-column:1/-1;
    width:100%;
    max-width:none;
    padding:14px 16px;
  }
  .preorder-footer .preorder-offer .button{justify-self:end}
}
@media(max-width:520px){
  .preorder-footer{display:grid;grid-template-columns:1fr;align-items:stretch}
  .preorder-buy-stack{justify-items:stretch}
  .preorder-offer{width:100%;grid-template-columns:1fr auto;padding:14px}
  .preorder-offer .button{width:auto}
}

/* Transparent note used when a closely related manufacturer image is shown only as a format reference. */
.product-card__image,.product-image-wrap{position:relative}
.product-image-reference__note{position:absolute;left:16px;right:16px;bottom:14px;z-index:2;background:rgba(13,50,56,.92);color:#fff;border-radius:10px;padding:9px 11px;font-size:10px;font-weight:800;letter-spacing:.45px;line-height:1.35;text-align:center;text-transform:uppercase;box-shadow:0 6px 16px rgba(13,50,56,.15)}

/* Mobile basket / checkout scroll reliability (iOS Safari + small screens) */
.basket-drawer,
.checkout-modal {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

@media (max-width: 600px) {
  .basket-drawer {
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 18px calc(28px + env(safe-area-inset-bottom));
  }
  .basket-items {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
  .basket-content {
    padding-bottom: 12px;
  }

  /* Use a true full-height mobile checkout instead of a centred scrolling modal.
     This avoids nested/frozen scroll areas in iOS Safari. */
  .checkout-modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding: max(18px, env(safe-area-inset-top)) 18px calc(30px + env(safe-area-inset-bottom));
    border-radius: 0;
    transform: translateY(14px);
  }
  .checkout-modal.open {
    transform: translateY(0);
  }
  .checkout-modal__header {
    position: sticky;
    top: calc(-1 * max(18px, env(safe-area-inset-top)));
    z-index: 2;
    margin: 0 -18px;
    padding: max(18px, env(safe-area-inset-top)) 18px 16px;
    background: #fff;
  }
  .checkout-modal form,
  .paypal-stage,
  .payment-success {
    min-width: 0;
  }
}


/* 2026-08-30 premium lab image integration */
.product-image-wrap{
  min-height:600px;
  padding:0;
  background:#fff;
  border-color:rgba(18,63,69,.07);
  box-shadow:0 14px 38px rgba(11,54,59,.04);
}
.product-image-wrap img{width:100%;height:auto;object-fit:contain}
@media(max-width:760px){.product-image-wrap{min-height:auto;border-radius:20px}}
