/* =========================================================================
   poweredin.css — single combined stylesheet
   The three original files (poweredin.css, poweredin-theme.css,
   poweredin-redesign.css) have been merged here. Layers below are ordered
   so later layers win the cascade where they overlap.

   1. Design tokens (:root)         — brand, semantic, spacing, shadow, fonts
   2. Redesign layer (top)           — .pn2-* homepage: header, hero, range,
                                       why-choose, CTA, footer (reference design)
   3. Base / resets                  — html, body, typography, containers
   4. Buttons & forms                — .btn variants, inputs, alerts
   5. Header & navigation            — top bars, logo, search, main menu, mega
   6. Product listing & grid         — .product-thumb, .products-grid, cards
   7. Product page (PDP)             — gallery, info, tabs, COA, sticky bar
   8. Category / search              — toolbar, sidebar, filter chips
   9. Homepage (base)                — slider, trust strip, intro, banners, rails
   10. Footer & disclaimer            — columns, newsletter, legal
   11. Components                     — blog, stats, info blocks, about/contact
/* ---------- 1. Design tokens ---------- */
:root {
  --brand-1: #0057B8;
  --brand-1-dark: #062B63;
  --brand-1-light: #0074D9;
  --brand-2: #092A5B;
  --brand-2-light: #0057B8;
  --brand-3: #00A99D;
  --brand-3-light: #19B89A;
  --brand-gradient: linear-gradient(135deg, #062B63 0%, #0057B8 48%, #00A99D 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(0,87,184,.08), rgba(0,169,157,.08));
  --brand-gradient-bold: linear-gradient(135deg, #0057B8 0%, #092A5B 52%, #00A99D 100%);
  --brand-gradient-header: linear-gradient(90deg, #062B63 0%, #0057B8 52%, #00A99D 100%);

  --ink: #26364A;
  --white: #FFFFFF;
  --paper: #F6F8FB;
  --line: #E3E8EF;
  --slate: #5E6B7A;
  --slate-soft: #95A1AF;
  --vial: var(--brand-1);
  --vial-deep: var(--brand-1-dark);
  --vial-tint: #EEF6FF;
  --assay: var(--brand-3);
  --danger: #C24135;

  --header-bg: #FFFFFF;
  --header-bg-2: #EEF6FF;
  --header-fg: #092A5B;
  --header-fg-2: #667085;
  --header-border: #E3E8EF;
  --header-border-2: #CAD4E0;
  --ui-2: #EEF6FF;
  --ui-link: #0057B8;
  --ui-link-hover: #00A99D;

  --base-bg: #FFFFFF;
  --base-bg-2: #F6F8FB;
  --base-bg-3: #EEF3F7;
  --base-bg-4: #EEF6FF;
  --base-fg: #092A5B;
  --base-fg-2: #26364A;
  --base-border: #E3E8EF;

  --footer-bg: #0F172A;
  --footer-bg-2: #111C32;
  --footer-fg: #E7ECF3;
  --footer-fg-2: #A7B2C0;
  --footer-border: rgba(255,255,255,.11);

  --accent-sale: #C24135;
  --accent-new: #0057B8;
  --accent-fast: #111827;
  --accent-hot: #D97706;
  --accent-green: #00A99D;
  --accent-gold: #f5a623;
  --star: #E9A23B;

  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 10px;
  --radius-pill: 999px;
  --shadow-1: 0 1px 2px rgba(17,24,39,.06), 0 4px 12px rgba(17,24,39,.05);
  --shadow-2: 0 18px 48px rgba(17,24,39,.12);
  --shadow-hover: 0 18px 44px rgba(17,24,39,.14);
  --shadow-card: 0 1px 2px rgba(17,24,39,.05), 0 10px 28px rgba(17,24,39,.07);
  --button-height: 44px;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;

  --shadow-xs: 0 1px 2px rgba(17,24,39,.06);
  --shadow-sm: 0 2px 8px rgba(17,24,39,.08);

  --success: #00A99D;      --success-bg: #E4F4EF;   --success-fg: #0F5132;      --success-border: #B6E2CC;
  --warning: #B7791F;      --warning-bg: #FBF1DD;   --warning-fg: #8A5A00;      --warning-border: #F0D9A8;
  --error: #C24135;        --error-bg: #FBEAE8;     --danger-fg: #C24135;       --danger-border: #F3C2BD;
  --danger-bg: #FBEAE8;
  --info: #0057B8;         --info-bg: #EEF6FF;      --info-fg: #0057B8;         --info-border: #B9D8F5;

  --speed: 0.22s;
  --gutter-x: 30px;
  --content-max-width: 1170px;
  --lowstock: #B7791F;
  --bestseller: #092A5B;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
}

/* ---------- Merged from poweredin-2.css (homepage promo module) ---------- */
.home-promo { padding: 32px 0; background: var(--ink); }
.promo-box { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.promo-code { font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: var(--assay); letter-spacing: .06em; }
.promo-text { color: #C7CDD8; font-size: 16px; }
.promo-discount { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); }

/* ---------- Base ---------- */
html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-body);
 background:
 linear-gradient(180deg, #FFFFFF 0, #F6F8FB 520px),
 var(--base-bg-2);
 color: var(--base-fg-2);
 letter-spacing: 0;
}

a,
 .btn,
 .header-link,
 .main-menu > li > a,
 .product-thumb,
 .blog-card,
 .banner-card,
 .info-block,
 .well,
 .panel,
 .form-control {
 transition-duration: .22s;
}

a:hover,
 a:focus {
 text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
 .section-title {
 letter-spacing: 0;
}

.container {
 padding-left: 18px;
 padding-right: 18px;
 max-width: 1500px;
}
@media (min-width: 1200px) { .container { width: 1170px; } }
@media (min-width: 1500px) { .container { width: 1460px; max-width: 1460px; } }
@media (min-width: 1200px) { :root { --content-max-width: 1170px; } }
@media (min-width: 1500px) { :root { --content-max-width: 1460px; } }

.btn {
 border-radius: 7px;
 box-shadow: none;
 min-width: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--button-height);
  padding: 0 20px;
  border-radius: var(--radius);
  font: 600 13.5px/1 var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--speed), color var(--speed), border-color var(--speed), box-shadow var(--speed);
}
.btn-primary,
 .btn.btn-primary {
 background: var(--brand-gradient-bold);
 border-color: transparent;
 box-shadow: 0 10px 22px rgba(0,87,184,.18);
}

.btn-primary:hover,
 .btn-primary:focus,
 .btn-primary:active,
 .btn-primary:active:hover,
 .open > .dropdown-toggle.btn-primary {
 background: linear-gradient(135deg, #062B63 0%, #0057B8 55%, #0D6B59 100%);
 border-color: transparent;
 box-shadow: 0 14px 28px rgba(0,87,184,.22);
 transform: translateY(-1px);
}
.btn-default,
 .btn.btn-default {
 background: #FFFFFF;
 border-color: var(--base-border);
 color: var(--base-fg);
}

.btn-default:hover,
 .btn-default:focus {
 background: var(--ui-2);
 border-color: rgba(0,87,184,.35);
 color: var(--brand-1-dark);
}
.btn-danger { background: #C94F3D; border-color: #C94F3D; }
.btn-info { background: var(--brand-2); border-color: var(--brand-2); }
.btn-success { background: var(--accent-green); border-color: var(--accent-green); }
.btn-warning { background: #E8A33D; border-color: #E8A33D; }
.btn-link { color: var(--ui-link); }
.btn-lg { height: 48px; padding: 0 28px; font-size: 14px; }
.btn-sm { height: 34px; padding: 0 14px; font-size: 12.5px; }
.btn-xs { height: 28px; padding: 0 10px; font-size: 12px; }
.btn[disabled], .btn.disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Forms ---------- */
.form-control {
 border-color: var(--base-border);
 background: #FFFFFF;
}

.form-control:focus {
 border-color: var(--brand-1);
 box-shadow: 0 0 0 3px rgba(0,87,184,.12);
}
textarea.form-control { height: auto; }
select.form-control { appearance: none; background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23697278' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 12px center; padding-right: 30px; }
.input-lg, .input-group-lg > .form-control { height: 48px; font-size: 15px; }
label { font-weight: 600; font-size: 13.5px; color: var(--base-fg); }
.control-label { padding-top: 11px; }
.required label:before, label.required:before {
  content: '* ';
  color: #C94F3D;
  font-weight: 700;
}
.radio input[type="radio"], .checkbox input[type="checkbox"] { accent-color: var(--brand-1); }

/* ---------- Alerts ---------- */
.alert {
  border-radius: var(--radius);
  border: 1px solid;
  font-size: 14px;
  padding: 12px 40px 12px 16px;
}
.alert-success { color: var(--success-fg); background: var(--success-bg); border-color: var(--success-border); }
.alert-danger  { color: var(--danger-fg);  background: var(--danger-bg);  border-color: var(--danger-border); }
.alert-warning { color: var(--warning-fg); background: var(--warning-bg); border-color: var(--warning-border); }
.alert-info    { color: var(--info-fg);    background: var(--info-bg);    border-color: var(--info-border); }
.alert a { font-weight: 700; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: transparent;
  padding: 14px 0;
  margin: 0;
  font-size: 12.5px;
  border-radius: 0;
}
.breadcrumb li + li:before { content: '\203A'; color: #9AA3AD; padding: 0 8px; }
.breadcrumb a { color: var(--footer-fg-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-1); }
.breadcrumb li:last-child a { color: var(--base-fg); font-weight: 600; }

/* =========================================================================
   HEADER
   ========================================================================= */

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--brand-gradient);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font: 600 13.5px/1.35 var(--font-body);
  position: relative;
}
.promo-bar a { color: #fff; text-decoration: underline; }
.promo-bar strong { color: #FFD740; font-weight: 700; letter-spacing: .4px; }

/* ---------- Top Features Bar ---------- */
.top-features-bar {
  background: linear-gradient(135deg, #6D28D9 0%, #4F46E5 45%, #0D9488 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.top-features-bar .tf-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 0;
}
.top-features-bar .tf-item {
  flex: 1 1 33.3333%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 16px;
  position: relative;
}
.top-features-bar .tf-item + .tf-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.18);
}
.top-features-bar .tf-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
  backdrop-filter: blur(4px);
}
.top-features-bar .tf-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.top-features-bar .tf-title {
  font: 700 13px/1.2 var(--font-display);
  letter-spacing: -.2px;
}
.top-features-bar .tf-sub {
  font-size: 11.5px;
  opacity: .88;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .top-features-bar .tf-grid { flex-wrap: wrap; gap: 8px; padding: 12px 0; }
  .top-features-bar .tf-item { flex: 1 1 50%; padding: 4px 10px; }
  .top-features-bar .tf-item:nth-child(2):before { display: none; }
  .top-features-bar .tf-item:nth-child(3) { flex-basis: 100%; }
  .top-features-bar .tf-item:nth-child(3):before { display: none; }
}
@media (max-width: 480px) {
  .top-features-bar .tf-item { flex: 1 1 100%; }
  .top-features-bar .tf-item + .tf-item:before { display: none; }
  .top-features-bar .tf-title { font-size: 12.5px; }
}

/* ---------- Top strip ---------- */
.top-strip {
  background: var(--header-bg-2);
  border-bottom: 1px solid var(--header-border);
  font-size: 12.5px;
  color: var(--header-fg-2);
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 12px;
}
.top-strip a { color: var(--header-fg-2); text-decoration: none; }
.top-strip a:hover { color: var(--brand-1); }
.top-strip-left, .top-strip-right { display: flex; align-items: center; gap: 18px; }
.top-strip .fa { margin-right: 5px; color: var(--brand-1); }

/* currency */
#top-currency .dropdown-toggle {
  background: none;
  border: 0;
  padding: 6px 0;
  font: 600 12.5px var(--font-body);
  color: var(--header-fg-2);
  cursor: pointer;
}
#top-currency .dropdown-toggle:hover { color: var(--brand-1); }
#top-currency .dropdown-menu { min-width: 190px; }
#top-currency .dropdown-menu button {
  background: none; border: 0; width: 100%; text-align: left;
  padding: 8px 14px; font-size: 13px; cursor: pointer; color: var(--base-fg-2);
}
#top-currency .dropdown-menu button:hover { background: var(--ui-2); color: var(--brand-1); }
#top-currency .cur-symbol { display: inline-block; min-width: 16px; font-weight: 700; }
#top-currency .cur-code { color: var(--footer-fg-2); font-size: 11px; margin-left: 6px; }

/* ---------- Header mid ---------- */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}
.header-mid {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.header-mid .logo-wrap { flex: 0 0 auto; }
.header-mid .logo-wrap img { max-height: 64px; width: auto; }
.header-mid .logo-text {
  font: 700 24px/1.1 var(--font-display);
  color: var(--brand-1);
  text-decoration: none;
  letter-spacing: -.5px;
}
.header-mid .logo-text span { color: var(--brand-3); }

/* search */
.header-search { flex: 1 1 auto; max-width: 640px; margin: 0 auto; }
#search {
  max-width: 50em;
  width: 50em;
  display: flex;
  border: 2px solid var(--brand-1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #fff;
}
#search input.search-input {
  flex: 1;
  border: 0;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  background: transparent;
  box-shadow: none;
}
#search input.search-input:focus { outline: none; box-shadow: none; }
#search .search-button {
  border: 0;
  background: var(--brand-1);
  color: #fff;
  width: 56px;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--speed);
}
#search .search-button:hover { background: var(--brand-1-dark); }

/* header links (account / wishlist / cart) */
.header-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 64px;
  padding: 6px 8px;
  border-radius: var(--radius);
  color: var(--header-fg);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.header-link:hover { color: var(--brand-1); background: var(--ui-2); }
.header-link .fa { font-size: 19px; }
.header-link .count-badge {
  position: absolute;
  top: 0;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  background: var(--brand-1);
  color: #fff;
  font: 700 10px/17px var(--font-body);
  text-align: center;
}
.header-link .count-badge.count-zero { background: #B9C2CC; }
.header-cart .cart-text { font-weight: 700; }

/* account dropdown */
.header-links .dropdown-menu {
  border-radius: var(--radius);
  border: 1px solid var(--base-border);
  box-shadow: var(--shadow-2);
  padding: 6px 0;
  min-width: 180px;
}
.header-links .dropdown-menu > li > a {
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--base-fg-2);
}
.header-links .dropdown-menu > li > a:hover { background: var(--ui-2); color: var(--brand-1); }

/* cart dropdown */
#cart { position: relative; }
#cart > .dropdown-menu {
  width: 380px;
  max-width: 90vw;
  padding: 0;
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
#cart .cart-empty { padding: 26px 16px; text-align: center; color: var(--footer-fg-2); margin: 0; }
#cart table { margin: 0; }
#cart .table-striped > tbody > tr:nth-of-type(odd) { background: var(--base-bg-2); }
#cart td { vertical-align: middle !important; font-size: 13px; }
#cart .cart-img img { border-radius: var(--radius-sm); }
#cart .cart-remove { color: #C94F3D; }
#cart .cart-totals { border-top: 1px solid var(--base-border); }
#cart .cart-totals td { padding: 4px 12px; }
#cart .cart-buttons {
  border-top: 1px solid var(--base-border);
  padding: 10px 12px;
  text-align: right;
  background: var(--base-bg-2);
}
#cart .cart-buttons .btn { margin-left: 8px; }

/* ---------- Main menu ---------- */
.main-menu-bar {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  position: relative;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}
.main-menu {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu > li { position: relative; }
.main-menu > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  font: 600 13px/1 var(--font-body);
  color: var(--header-fg);
  text-decoration: none;
  transition: color var(--speed), background var(--speed), box-shadow var(--speed);
  position: relative;
}
.main-menu > li > a:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--brand-gradient-bold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--speed);
}
.main-menu > li > a:hover {
  color: var(--brand-1);
  background: var(--ui-2);
}
.main-menu > li > a:hover:after { transform: scaleX(1); }
.main-menu > li.menu-all > a {
  background: var(--brand-gradient);
  color: #fff;
  border-radius: var(--radius);
  margin: 8px 8px 8px 0;
  padding: 8px 18px;
  height: auto;
  box-shadow: var(--shadow-1);
}
.main-menu > li.menu-all > a:after { display: none; }
.main-menu > li.menu-all > a:hover { background: var(--brand-1-dark); opacity: .95; color: #fff; }
.main-menu .menu-label {
  background: var(--accent-hot);
  color: #fff;
  font: 700 9px/1 var(--font-body);
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 1px 3px rgba(225,29,72,.3);
}
.main-menu > li > .dropdown-menu {
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--base-border);
  border-top: 2px solid var(--brand-1);
  box-shadow: var(--shadow-2);
  padding: 6px 0;
}
.main-menu > li > .dropdown-menu > li > a { padding: 9px 18px; font-size: 13.5px; }
.main-menu > li > .dropdown-menu > li > a:hover { background: var(--ui-2); color: var(--brand-1); }

/* mobile nav */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--brand-1);
  color: #fff;
  border: 0;
  font: 600 13.5px var(--font-body);
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
}
.off-canvas {
  position: fixed;
  top: 0; left: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1060;
  transition: left .3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--shadow-2);
  -webkit-overflow-scrolling: touch;
}
.off-canvas.open { left: 0; }
.off-canvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font: 600 14px var(--font-display);
  flex-shrink: 0;
  border-bottom: 1px solid var(--brand-1-dark);
}
.off-canvas-head .oc-close {
  background: transparent;
  border: 0;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  transition: background var(--speed);
}
.off-canvas-head .oc-close:hover { background: var(--brand-1-dark); color: #fff; }
.off-canvas ul { list-style: none; margin: 0; padding: 0; }
.off-canvas ul li {
  border-bottom: 1px solid var(--base-border);
}
.off-canvas ul li:last-child { border-bottom: 0; }
.off-canvas ul li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--base-fg);
  font: 500 14px var(--font-body);
  text-decoration: none;
  transition: background var(--speed), color var(--speed);
}
.off-canvas ul li a:active,
.off-canvas ul li a:hover {
  background: var(--ui-2);
  color: var(--brand-1);
}
.off-canvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1055;
  transition: opacity .3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.off-canvas-overlay.show {
  display: block;
  opacity: 1;
}

/* =========================================================================
   PRODUCT CARDS  (Journal3 style)
   ========================================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid .product-layout {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-bottom: 0;
  width: auto;
}
.product-thumb {
  position: relative;
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  background: var(--base-bg);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--speed), transform var(--speed);
}
.product-thumb:hover { box-shadow: var(--shadow-hover); }

.product-thumb .image { position: relative; text-align: center; }
.product-thumb .image a.product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.product-thumb .image img { max-height: 100%; object-fit: contain; transition: transform .3s ease; }
.product-thumb:hover .image img { transform: scale(1.04); }

/* quickview */
.product-thumb .quickview-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--speed), transform var(--speed);
}
.product-thumb:hover .quickview-button { opacity: 1; transform: none; }
.product-thumb .quickview-button .btn-quickview {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 0;
  box-shadow: var(--shadow-2);
  color: var(--brand-1);
  font-size: 0;
}
.product-thumb .quickview-button .btn-quickview:before {
  content: '\f002';
  font-family: FontAwesome;
  font-size: 13px;
}
.product-thumb .quickview-button .btn-quickview:hover { background: var(--brand-1); color: #fff; }

/* labels */
.product-labels { position: absolute; top: 10px; left: 10px; z-index: 3; display: flex; flex-direction: column; gap: 5px; }
.product-label {
  display: inline-block;
  font: 600 10px/1 var(--font-body);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #fff;
  background: var(--accent-fast);
}
.product-label.label-sale { background: var(--accent-sale); }
.product-label.label-new { background: var(--accent-new); }
.product-label.label-fast { background: var(--accent-fast); }

/* caption */
.product-thumb .caption { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.product-thumb .name { font: 500 15px/1.35 var(--font-display); letter-spacing: -.2px; margin-bottom: 4px; }
.product-thumb .name a { color: var(--base-fg); text-decoration: none; }
.product-thumb .name a:hover { color: var(--brand-1); }
.product-thumb .product-name { font: 500 15px/1.35 var(--font-display); letter-spacing: -.2px; margin-bottom: 4px; }
.product-thumb .product-name a { color: var(--base-fg); text-decoration: none; }
.product-thumb .product-name a:hover { color: var(--brand-1); }
.product-thumb .product-description { font-size: 12px; color: var(--footer-fg-2); line-height: 1.55; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-thumb .image-group { position: relative; aspect-ratio: 1/1; background: var(--base-bg-4); overflow: hidden; }
.product-thumb .product-image { width: 100%; height: 100%; }
.product-thumb .product-image a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-thumb .product-image img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .3s ease; }
.product-thumb:hover .product-image img { transform: scale(1.04); }
.product-thumb .price .price-special { font: 600 13px var(--font-body); color: #9AA3AD; text-decoration: line-through; margin-left: 6px; }
.product-thumb .model-line { font-size: 11px; color: #9AA3AD; margin-bottom: 4px; }

/* listing toolbar */
.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.product-toolbar .tb-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-toolbar .btn-group .btn-default {
  background: #fff;
  border: 1px solid var(--base-border);
  border-radius: var(--radius) !important;
  color: var(--footer-fg-2);
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 4px 0 0;
}
.product-toolbar .btn-group .btn-default:hover { color: var(--brand-1); border-color: var(--brand-1); }
.product-toolbar .compare-total-link { font: 600 12.5px var(--font-body); color: var(--ui-link); text-decoration: none; }
.product-toolbar .compare-total-link:hover { color: var(--brand-1); }
.product-toolbar .form-group { margin: 0; }
.product-toolbar select.form-control {
  height: 38px;
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  font-size: 13px;
  padding: 0 30px 0 12px;
  color: var(--base-fg);
  background: #fff;
  cursor: pointer;
}
.product-toolbar select.form-control:focus { outline: none; border-color: var(--brand-1); }
.product-toolbar .form-group select { min-width: 150px; }
.product-toolbar + .product-grid { margin-top: 0; }

.product-thumb .description {
  font-size: 12px;
  line-height: 1.5;
  color: #8D93A5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-thumb .price { margin-bottom: 8px; font-family: var(--font-display); }
.product-thumb .price .price-prefix { font: 600 10.5px var(--font-body); color: #8D93A5; text-transform: lowercase; display: block; }
.product-thumb .price .price-normal, .product-thumb .price .price-new { font: 700 17px/1.3 var(--font-display); color: var(--base-fg); }
.product-thumb .price .price-new { color: var(--accent-sale); }
.product-thumb .price .price-old { font: 400 12.5px var(--font-body); color: #8D93A5; text-decoration: line-through; margin-left: 6px; }
.product-thumb .price .price-tax { display: block; font: 400 11px var(--font-body); color: #9AA3AD; }

/* rating */
.product-thumb .rating { font-size: 11px; letter-spacing: 1px; color: var(--star); margin-bottom: 10px; }
.product-thumb .rating .fa-star-o { color: #D5DAE0; }
.rating .fa-stack { width: 1em; height: 1em; line-height: 1em; margin-right: 2px; }
.rating .fa-stack-2x { font-size: 1em; }
.rating .fa-star { color: var(--star); }
.rating .fa-star-o { color: #D5DAE0; }

/* buttons */
.product-thumb .buttons-wrapper { margin-top: auto; }
.product-thumb .button-group { display: flex; align-items: center; gap: 8px; }
.product-thumb .cart-group { display: flex; flex: 1; gap: 8px; }

/* qty stepper */
.stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--header-border-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.stepper button {
  border: 0;
  background: var(--base-bg-2);
  color: var(--footer-fg-2);
  width: 24px;
  cursor: pointer;
  font-size: 12px;
}
.stepper button:hover { background: var(--ui-2); color: var(--brand-1); }
.stepper input {
  width: 34px;
  border: 0;
  text-align: center;
  font: 600 13px var(--font-body);
  color: var(--base-fg-2);
  padding: 0;
  height: 38px;
  background: transparent;
}
.stepper input:focus { outline: none; }

.product-thumb .btn-cart {
  flex: 1;
  height: 40px;
  background: var(--brand-1);
  color: #fff;
  border-radius: var(--radius);
  font: 600 12.5px var(--font-body);
  padding: 0 10px;
}
.product-thumb .btn-cart:hover { background: var(--brand-1-dark); color: #fff; box-shadow: var(--shadow-1); }
.product-thumb .product-actions { margin-top: auto; padding-top: 10px; }
.product-thumb .wish-group { display: flex; gap: 4px; }
.product-thumb .btn-wishlist, .product-thumb .btn-compare {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--base-border);
  background: #fff;
  color: var(--footer-fg-2);
  font-size: 0;
  position: relative;
}
.product-thumb .btn-wishlist:before { content: '\f004'; font-family: FontAwesome; font-size: 14px; }
.product-thumb .btn-compare:before { content: '\f074'; font-family: FontAwesome; font-size: 13px; }
.product-thumb .btn-wishlist:hover, .product-thumb .btn-compare:hover { color: var(--brand-1); border-color: var(--brand-1); }

/* list layout */
.product-list .product-thumb { flex-direction: row; }
.product-list .product-thumb .image { flex: 0 0 220px; }
.product-list .product-thumb .image a.product-img { aspect-ratio: auto; height: 100%; }
.product-list .product-thumb .caption { padding: 18px; }
.product-list .product-thumb .description { -webkit-line-clamp: 4; line-clamp: 4; font-size: 13px; }
.product-list .button-group { max-width: 420px; }

/* all peptides filter sidebar */
.all-peptides-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.all-peptides-layout .filter-sidebar {
  flex: 0 0 240px;
  max-width: 240px;
}
.all-peptides-layout .filter-panel {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  position: sticky;
  top: 16px;
}
.filter-heading {
  font: 600 16px var(--font-display);
  margin: 0 0 14px;
  letter-spacing: -.2px;
}
.filter-group { margin-bottom: 12px; }
.filter-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--footer-fg-2);
  margin-bottom: 6px;
}
.filter-group .form-control {
  height: 38px;
  font-size: 13.5px;
  border-radius: var(--radius);
}
#filter-form .btn-block {
  margin-top: 4px;
  height: 40px;
  font-weight: 600;
  border-radius: var(--radius);
}
.all-peptides-layout .all-peptides-main {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 991px) {
  .all-peptides-layout {
    flex-direction: column;
  }
  .all-peptides-layout .filter-sidebar {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .all-peptides-layout .filter-panel { position: static; }
}

/* responsive grid */
@media (max-width: 1199px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .product-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px)  {
  .product-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-list .product-thumb { flex-direction: column; }
  .product-list .product-thumb .image { flex: none; }
  .product-grid .cart-group,
  .products-grid .cart-group { flex-direction: column; gap: 8px; }
  .product-grid .btn-cart,
  .products-grid .btn-cart { width: 100%; }
  .product-grid .stepper,
  .products-grid .stepper { width: 100%; }
  .product-grid .stepper input,
  .products-grid .stepper input { width: 100%; }
}

/* product listing page wrapper */
#product-category,
#product-latest,
#product-search,
#product-special,
#product-bundles,
#product-compare {
  padding: 16px;
}
@media (min-width: 768px) {
  #product-category,
  #product-latest,
  #product-search,
  #product-special,
  #product-bundles,
  #product-compare {
    padding: 24px;
  }
}
@media (min-width: 1200px) {
  #product-category,
  #product-latest,
  #product-search,
  #product-special,
  #product-bundles,
  #product-compare {
    padding: 32px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================================
   CATEGORY / LISTING PAGE
   ========================================================================= */
.page-title {
  font: 600 24px/1.25 var(--font-display);
  letter-spacing: -.5px;
  margin: 6px 0 14px;
}
.page-intro {
  margin: 0 0 22px;
}
.page-intro p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--base-fg-2);
  max-width: 860px;
}
.category-info {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.category-info img { border-radius: var(--radius); max-width: 120px; }
.category-info .category-description { font-size: 13.5px; color: var(--footer-fg-2); }

/* refine / subcategories */
.refine-grid { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 22px; }
.refine-tile {
  width: 132px;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow var(--speed), transform var(--speed);
}
.refine-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.refine-tile .refine-icon {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--base-bg-4);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-1);
  font-size: 16px;
}
.refine-tile .refine-name { font: 600 12.5px/1.3 var(--font-body); color: var(--base-fg); }

/* listing toolbar */
.listing-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 20px;
}
.listing-toolbar .form-control { height: 34px; font-size: 13px; }
.listing-toolbar label { font-size: 12.5px; margin: 0 6px 0 0; color: var(--footer-fg-2); }
.listing-toolbar .input-group { width: auto; }
.listing-toolbar .input-group-addon { padding: 6px 10px; font-size: 12.5px; background: var(--base-bg-2); border-color: var(--header-border-2); }
.layout-toggle { margin-left: auto; display: flex; gap: 4px; }
.layout-toggle .btn { width: 34px; height: 34px; padding: 0; font-size: 14px; }
.layout-toggle .btn.active { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }

/* compare link + pagination row */
.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.pagination-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.pagination-count { display: flex; }
.pagination-results { font: 400 13px var(--font-body); color: var(--slate); }
@media (max-width: 767px) {
  .pagination-row { justify-content: center; text-align: center; }
  .pagination-count { justify-content: center; width: 100%; }
  .pagination-results { width: 100%; justify-content: center; }
}
.pagination { margin: 0; display: flex; gap: 4px; }
.pagination > li > a, .pagination > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--base-border);
  border-radius: var(--radius) !important;
  font: 600 12.5px var(--font-body);
  color: var(--footer-fg-2);
  background: #fff;
  margin: 0;
}
.pagination > li > a:hover { background: var(--base-bg-2); color: var(--brand-1); }
.pagination > li.active > span { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }
.pagination > li.disabled > span { color: #B9C2CC; background: #fff; }
.results-text { color: var(--footer-fg-2); font-size: 12.5px; text-align: right; }

/* =========================================================================
   PRODUCT PAGE
   ========================================================================= */
.product-hero {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.handling-note {
  border: 1px solid var(--warning-border);
  background: var(--warning-bg);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--warning-fg);
}
.handling-note h4 { font-size: 13.5px; margin: 0 0 6px; color: var(--warning-fg); }
.handling-note p { margin: 0 0 6px; }
.handling-note p:last-child { margin-bottom: 0; }

.product-main h1.product-title {
  font: 600 26px/1.25 var(--font-display);
  letter-spacing: -.5px;
  margin: 0 0 10px;
}
.product-meta { list-style: none; padding: 0; margin: 0 0 16px; font-size: 13px; color: var(--footer-fg-2); }
.product-meta li { padding: 3px 0; }
.product-meta b, .product-meta strong { color: var(--base-fg); font-weight: 600; }
.product-meta .in-stock { color: var(--accent-green); font-weight: 600; }
.product-meta .out-stock { color: #C94F3D; font-weight: 600; }

/* product page layout */
.product-page { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: start; }
.product-page > * { min-width: 0; }
.product-info { min-width: 0; }
.new-badge {
  display: inline-block;
  background: var(--accent-new);
  color: #fff;
  font: 600 11px/1 var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.product-page-title { font: 700 28px/1.25 var(--font-display); letter-spacing: -.5px; margin: 0 0 16px; color: var(--base-fg); }

/* price */
.product-price { margin: 0 0 16px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.product-price .price-from { font: 600 12px var(--font-body); color: #8D93A5; }
.product-price .price-main { font: 700 30px/1.1 var(--font-display); color: var(--base-fg); }
.product-price .price-was { font: 400 16px var(--font-body); color: #8D93A5; text-decoration: line-through; }
.product-price .price-tax { font-size: 12px; color: #9AA3AD; display: block; width: 100%; }

/* discount tiers */
.discount-tiers {
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  margin: 0 0 16px;
}
.discount-tiers .discount-label {
  display: block;
  padding: 8px 14px;
  font: 600 12.5px var(--font-body);
  color: var(--base-fg);
  background: var(--base-bg-2);
  border-bottom: 1px solid var(--base-border);
}
.discount-tiers ul { list-style: none; padding: 0; margin: 0; }
.discount-tiers li { display: flex; justify-content: space-between; padding: 8px 14px; font-size: 13px; }
.discount-tiers li:nth-child(odd) { background: #fff; }
.discount-tiers li:nth-child(even) { background: var(--base-bg-2); }
.discount-tiers li strong { color: var(--brand-1); }

/* buy row */
.buy-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 14px; }
.buy-row .stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--base-border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.buy-row .stepper-btn {
  width: 42px;
  border: 0;
  background: none;
  font-size: 16px;
  color: var(--footer-fg-2);
  cursor: pointer;
}
.buy-row .stepper-btn:hover { background: var(--ui-2); color: var(--brand-1); }
.buy-row .stepper input {
  width: 52px;
  border: 0;
  border-left: 1px solid var(--base-border);
  border-right: 1px solid var(--base-border);
  height: 46px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.buy-row .stepper input:focus { outline: none; }
.buy-row .btn-buy {
  height: 48px;
  padding: 0 30px;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--brand-1);
  color: #fff;
  border-radius: var(--radius);
  border: 0;
}
.buy-row .btn-buy:hover { background: var(--brand-1-dark); box-shadow: var(--shadow-1); }
.buy-row .buy-actions { display: flex; gap: 8px; }
.buy-row .buy-actions .btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--base-border);
  background: #fff;
  color: var(--footer-fg-2);
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.buy-row .buy-actions .btn:hover { color: var(--brand-1); border-color: var(--brand-1); }

/* rating */
.product-rating-block { margin: 0 0 16px; }
.product-rating-block .rating { color: var(--accent-gold, #f5a623); font-size: 14px; }
.product-rating-block .rating a { color: var(--ui-link); font-size: 13px; }

ul.discount-table { list-style: none; padding: 0; margin: 0 0 16px; border: 1px solid var(--base-border); border-radius: var(--radius); overflow: hidden; }
ul.discount-table li {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 13px;
  background: #fff;
}
ul.discount-table li:nth-child(even) { background: var(--base-bg-2); }
ul.discount-table li b { color: var(--brand-1); }

/* image gallery */
.product-gallery .main-image {
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-gallery .main-image img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-gallery .thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.product-gallery .thumbs a {
  width: 72px; height: 72px;
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.product-gallery .thumbs a img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-gallery .thumbs a:hover, .product-gallery .thumbs a.active { border-color: var(--brand-1); }

/* buy row */
.product-buy { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.product-buy .qty-label { font: 600 13px var(--font-body); color: var(--footer-fg-2); }
.product-buy .stepper input { height: 46px; width: 46px; }
.product-buy .stepper button { width: 30px; }
.product-buy #button-cart {
  height: 48px;
  padding: 0 30px;
  font-size: 14.5px;
  background: var(--brand-1);
  color: #fff;
  border-radius: var(--radius);
  border: 0;
  font-weight: 600;
}
.product-buy #button-cart:hover { background: var(--brand-1-dark); box-shadow: var(--shadow-1); }
.product-buy .btn-wishlist-lg, .product-buy .btn-compare-lg {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--base-border);
  background: #fff;
  color: var(--footer-fg-2);
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.product-buy .btn-wishlist-lg:hover, .product-buy .btn-compare-lg:hover { color: var(--brand-1); border-color: var(--brand-1); }
.product-minimum { font-size: 12.5px; color: var(--footer-fg-2); margin-bottom: 10px; }

/* options */
#product .form-group { margin-bottom: 16px; }
#product .control-label { padding-top: 0; display: block; margin-bottom: 6px; }

/* tabs */
.product-tabs { margin-bottom: 30px; }
.nav-tabs {
  border-bottom: 2px solid var(--base-border);
  display: flex;
  gap: 0;
}
.nav-tabs > li { margin: 0 0 -2px; float: none; }
.nav-tabs > li > a {
  padding: 12px 22px;
  font: 600 14px var(--font-body);
  color: var(--footer-fg-2);
  border: 0 !important;
  border-radius: 0;
  margin: 0;
  background: none;
}
.nav-tabs > li > a:hover { color: var(--brand-1); background: none; }
.nav-tabs > li.active > a {
  color: var(--brand-1);
  background: none;
  box-shadow: inset 0 -2px 0 var(--brand-1);
}
.tab-content {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--base-fg-2);
}
.tab-content table.table-bordered { border-color: var(--base-border); }
.tab-content .table > thead > tr > th,
.tab-content .table > tbody > tr > td { border-color: var(--base-border); padding: 10px 14px; font-size: 13.5px; }

/* section headings (modules) */
.module-title, h3.module-heading {
  font: 600 20px/1.3 var(--font-display);
  letter-spacing: -.4px;
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--base-border);
  position: relative;
}
.module-title:after, h3.module-heading:after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 64px; height: 2px;
  background: var(--brand-1);
}

/* =========================================================================
   HOME PAGE
   ========================================================================= */

/* hero slider */
.home-hero { margin-bottom: 0; background: var(--base-bg-4); }
.home-hero .swiper-container { overflow: hidden; }
.hero-slide { position: relative; min-height: 420px; display: flex; align-items: center; background-size: cover; background-position: center right; }
.hero-slide-inner { display: flex; align-items: center; gap: 40px; width: 100%; padding: 56px 0; }
.hero-copy { flex: 1 1 55%; max-width: 620px; }
.hero-kicker {
  display: inline-block;
  background: var(--brand-1);
  color: #fff;
  font: 600 11px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.hero-copy h2 { font: 700 40px/1.12 var(--font-display); letter-spacing: -1.2px; color: var(--base-fg); margin: 0 0 14px; }
.hero-copy .lead { font-size: 16px; color: var(--footer-fg-2); margin-bottom: 26px; max-width: 52ch; }
.hero-copy .hero-sub { font: 600 15px var(--font-body); color: var(--header-fg); margin-bottom: 8px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--brand-1); color: #fff; height: 48px; padding: 0 30px; font-size: 14px; }
.btn-hero-primary:hover { background: var(--brand-1-dark); color: #fff; }
.btn-hero-outline { background: transparent; border: 2px solid var(--brand-1); color: var(--brand-1); height: 48px; padding: 0 28px; font-size: 14px; }
.btn-hero-outline:hover { background: var(--brand-1); color: #fff; }
.hero-product { flex: 1 1 40%; text-align: center; }
.hero-product img { max-height: 380px; width: auto; margin: 0 auto; filter: drop-shadow(0 24px 34px rgba(20,25,70,.18)); }

.hero-slide .swiper-lazy-preloader { color: var(--brand-1); }
.home-hero .swiper-pagination { bottom: 18px; }
.home-hero .swiper-pagination-bullet { width: 10px; height: 10px; background: #fff; opacity: .7; }
.home-hero .swiper-pagination-bullet-active { background: var(--brand-1); opacity: 1; }
.home-hero .swiper-button-prev, .home-hero .swiper-button-next {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: var(--shadow-2);
  color: var(--brand-1);
}
.home-hero .swiper-button-prev:after, .home-hero .swiper-button-next:after { font-size: 16px; font-weight: 700; }

/* home slider (Journal3-style module markup from extension/module/homepage.twig) */
.home-slider { position: relative; background: var(--base-bg-4); }
.home-slider .module-slider { position: relative; }
.home-slider .swiper-container { overflow: hidden; width: 100%; }
.home-slider .swiper-slide { position: relative; }
.home-slider .slide-content-image {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}
.home-slider .slide-content { flex: 1 1 auto; min-width: 0; }
.home-slider .slide-cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0 var(--gutter-x);
  max-width: var(--content-max-width);
  margin: 0 auto;
}
.home-slider .slide-col-left { flex: 1 1 55%; max-width: 640px; }
.home-slider .slide-col-right { flex: 1 1 40%; text-align: center; }
.home-slider .slide-col-right img { max-height: 380px; width: auto; filter: drop-shadow(0 24px 34px rgba(20,25,70,.18)); }
.home-slider .slide-text-1 { margin-bottom: 14px; }
.home-slider .slide-text-1 .slide-text-item span {
  display: inline-block;
  background: var(--brand-1);
  color: #fff;
  font: 600 11px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
}
.home-slider .slide-text-2 { margin-bottom: 14px; }
.home-slider .slide-text-2 .slide-text-item span { font: 700 38px/1.15 var(--font-display); color: var(--base-fg); letter-spacing: -1px; }
.home-slider .slide-text-3 .slide-text-item span { font-size: 15px; color: var(--footer-fg-2); }
.home-slider .swiper-pagination { bottom: 18px; }
.home-slider .swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(20,25,70,.35); opacity: .7; }
.home-slider .swiper-pagination-bullet-active { background: var(--brand-1); opacity: 1; }
.home-slider .swiper-buttons .swiper-button-prev,
.home-slider .swiper-buttons .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 16px;
  transform: translateY(0);
  margin-top: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: var(--shadow-2);
  color: var(--brand-1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home-slider .swiper-buttons .swiper-button-prev { right: 68px; }
.home-slider .swiper-buttons .swiper-button-next { right: 16px; }
.home-slider .swiper-button-prev:after, .home-slider .swiper-button-next:after {
  font-family: 'FontAwesome';
  font-size: 16px;
  font-weight: 700;
}
.home-slider .swiper-button-prev:after { content: '\f104'; }
.home-slider .swiper-button-next:after { content: '\f105'; }
.home-slider .swiper-button-prev.swiper-button-lock,
.home-slider .swiper-button-next.swiper-button-lock {
  display: flex;
}

/* hero fallback (when no slider is configured) */
.hero-fallback {
  background: var(--brand-gradient);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.hero-fallback h1 { font: 700 40px/1.15 var(--font-display); color: #fff; margin-bottom: 14px; }
.hero-fallback p { font-size: 17px; max-width: 60ch; margin: 0 auto 26px; color: rgba(255,255,255,.9); }
.hero-fallback .btn-primary { background: #fff; color: var(--brand-1); }
.hero-fallback .btn-primary:hover { background: var(--brand-1-dark); color: #fff; }

/* marquee */
.marquee-strip {
  background: var(--brand-gradient);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: pip-marquee 28s linear infinite; font: 600 13px/1 var(--font-body); }
.marquee-track span b { color: #FFD740; font-weight: 700; }
.marquee-track span .fa { margin-right: 8px; opacity: .8; }
@keyframes pip-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee {
  background: var(--brand-gradient);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee-inner { display: flex; gap: 48px; width: max-content; animation: pip-marquee 28s linear infinite; font: 600 13px/1 var(--font-body); }
.marquee-inner span { display: inline-flex; align-items: center; gap: 8px; }
.marquee-inner span .fa { opacity: .8; }

/* trust strip */
.trust-strip { background: var(--base-bg); border-bottom: 1px solid var(--base-border); }
.trust-strip .container { display: flex; flex-wrap: wrap; }
.trust-item {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border-left: 1px solid var(--base-border);
}
.trust-item:first-child { border-left: 0; }
.trust-item .fa { font-size: 22px; color: var(--brand-1); flex: 0 0 auto; }
.trust-item span { font-size: 12.5px; line-height: 1.35; color: var(--footer-fg-2); }
.trust-item span b { display: block; font: 600 13.5px var(--font-body); color: var(--base-fg); }

/* home sections */
/* ========================================================================= */

.home-page {
  width: 100%;
  overflow: hidden;
}

.hero-fallback {
  width: 100%;
}
.hero-fallback .container {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-fallback-content {
  max-width: 680px;
}

.hero-fallback h1 {
  margin: 0 0 18px;

  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-fallback p {
  max-width: 600px;
  margin: 0;

  font-size: 18px;
  line-height: 1.65;
}

.hero-fallback .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 28px;

  transition:
    gap 0.25s ease,
    transform 0.25s ease;
}

.hero-fallback .btn:hover {
  gap: 14px;
  transform: translateY(-2px);
}
.trust-strip {
  width: 100%;
}

.trust-strip > .container {
  padding-top: 22px;
  padding-bottom: 22px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-item {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 12px 24px;

  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.trust-item:hover .trust-icon {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.07);
}

.trust-icon i {
  font-size: 16px;
}

.trust-content {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-content b {
  display: block;

  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.trust-content span {
  display: block;

  font-size: 12px;
  line-height: 1.4;

  opacity: 0.68;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  min-width: 100%;
  overflow: hidden;
}

.marquee-inner {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 55px;

  white-space: nowrap;

  animation: homeMarquee 30s linear infinite;
}

.marquee-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  flex-shrink: 0;

  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

.marquee-inner i {
  font-size: 13px;
}


/* Animation */

@keyframes homeMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
  }
}

@media (max-width: 900px) {

  .hero-fallback .container {
    min-height: 440px;
  }

  .hero-fallback-content {
    max-width: 580px;
  }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .trust-item {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-item:first-child {
    padding-left: 20px;
  }

  .trust-item:last-child {
    padding-right: 20px;
  }

}

@media (max-width: 767px) {

  .hero-fallback .container {
    min-height: 400px;
  }

  .hero-fallback-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-fallback h1 {
    margin-bottom: 14px;

    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero-fallback p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-fallback .btn {
    margin-top: 22px;
  }


  /* Trust */

  .trust-strip > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    width: 100%;
    padding: 15px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .marquee-inner {
    gap: 38px;

    animation-duration: 24s;
  }

  .marquee-inner span {
    font-size: 12px;
  }

}

@media (max-width: 400px) {

  .hero-fallback .container {
    min-height: 360px;
  }

  .hero-fallback h1 {
    font-size: 31px;
  }

  .hero-fallback p {
    font-size: 14px;
  }

  .hero-fallback .btn {
    width: 100%;
  }

  .trust-item {
    gap: 12px;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .trust-icon i {
    font-size: 14px;
  }

  .trust-content b {
    font-size: 12px;
  }

  .trust-content span {
    font-size: 11px;
  }

  .marquee-inner {
    gap: 30px;
    animation-duration: 21s;
  }

}

/* category banners */
.cat-banners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: var(--brand-gradient);
  transition: box-shadow var(--speed), transform var(--speed);
}
.cat-banner:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.cat-banner .cb-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .9; }
.cat-banner .cb-body { position: relative; padding: 22px; width: 100%; background: linear-gradient(transparent, rgba(10,15,50,.55)); }
.cat-banner .cb-kicker { font: 600 11px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); display: block; margin-bottom: 6px; }
.cat-banner .cb-title { font: 600 20px/1.25 var(--font-display); color: #fff; margin: 0 0 12px; }
.cat-banner .cb-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand-1);
  font: 600 12.5px var(--font-body);
  padding: 9px 16px; border-radius: var(--radius-pill);
}
.cat-banner .cb-cta:after { content: '\2192'; }

/* home page: intro grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.intro-copy p { font-size: 14.5px; color: var(--footer-fg-2); line-height: 1.7; margin-bottom: 14px; }
.intro-copy .btn { margin-top: 8px; }
.intro-card {
  background: var(--base-bg-4);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
}
.years-badge {
  width: 150px; height: 150px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.years-badge .years-num { font: 700 42px/1 var(--font-display); }
.years-badge .years-label { font: 600 10.5px/1.2 var(--font-body); letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.intro-card > p { font-size: 13px; color: var(--footer-fg-2); margin: 0; }

/* home page: category banners */
.category-banners .section-title { margin-bottom: 28px; }
.banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.banner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  min-height: 230px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand-1) 0%, #3D4CAA 100%);
  background-size: cover;
  background-position: center;
  transition: box-shadow var(--speed), transform var(--speed);
}
.banner-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,55,136,.45) 0%, rgba(20,25,70,.35) 100%);
  pointer-events: none;
}
.banner-card > * { position: relative; }
.banner-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); color: #fff; }
.banner-peptides { background: linear-gradient(135deg, #6D28D9 0%, #4F46E5 100%); }
.banner-lab { background: linear-gradient(135deg, #4C1D95 0%, #2563EB 100%); }
.banner-bundles { background: linear-gradient(135deg, #2563EB 0%, #0D9488 100%); }
.banner-text-1 {
  font: 600 11px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.banner-text-2 { font: 600 22px/1.25 var(--font-display); letter-spacing: -.4px; max-width: 16ch; }

/* home page: products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid .product-thumb {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-grid .image-group { position: relative; aspect-ratio: 1/1; background: var(--base-bg-4); overflow: hidden; }
.product-grid .product-image { width: 100%; height: 100%; }
.product-grid .product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-grid .wish-group {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--speed);
  z-index: 2;
}
.product-grid .product-thumb:hover .wish-group { opacity: 1; }
.product-grid .wish-group .btn-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--footer-fg-2);
  font-size: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
}
.product-grid .wish-group .btn-link:hover { color: var(--brand-1); }
.product-grid .caption { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
  font-size: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
}
.products-grid .wish-group .btn-link:hover { color: var(--brand-1); }
.products-grid .caption { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.products-grid .product-name { font: 600 14.5px/1.35 var(--font-display); margin: 0 0 6px; }
.products-grid .product-name a { color: var(--base-fg); text-decoration: none; }
.products-grid .product-name a:hover { color: var(--brand-1); }
.products-grid .product-description { font-size: 12px; color: var(--footer-fg-2); line-height: 1.55; margin: 0 0 10px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.products-grid .price { margin: auto 0 12px; }
.products-grid .price .price-normal { font: 700 16px var(--font-display); color: var(--brand-1); }
.products-grid .price .price-special { font: 600 13px var(--font-body); color: #9AA3AD; text-decoration: line-through; margin-left: 8px; }
.products-grid .cart-group,
.product-grid .cart-group { display: flex; gap: 8px; }
.products-grid .cart-group .stepper,
.product-grid .cart-group .stepper { flex: 0 0 auto; }
.products-grid .stepper input,
.product-grid .stepper input { width: 38px; height: 40px; }
.products-grid .stepper button,
.product-grid .stepper button {
  width: 26px;
  min-width: 26px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* home page: info grid */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-grid .info-block { text-align: center; }
.info-grid .info-block > .fa {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--base-bg-4);
  color: var(--brand-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin: 0 auto 14px;
}
.info-grid .info-block h4 { font: 600 15.5px/1.3 var(--font-display); margin: 0 0 8px; }
.info-grid .info-block p { font-size: 12.5px; color: var(--footer-fg-2); line-height: 1.6; margin: 0; }
/* home page: stats */
.home-stats {
  padding: 70px 0;
}

.home-stats .section-title {
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  position: relative;
  padding: 38px 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-num {
  display: block;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.stat-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 13px;
}

.stat-stars i {
  font-size: 17px;
}

.stat-label {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.75;
}

/* Second stat without stars */
.stat-item:nth-child(2) .stat-num {
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 767px) {
  .home-stats {
    padding: 50px 0;
  }

  .home-stats .section-title {
    margin-bottom: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-item {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .stat-num {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .home-stats {
    padding: 40px 0;
  }

  .stat-item {
    padding: 26px 18px;
  }

  .stat-stars {
    gap: 4px;
  }

  .stat-stars i {
    font-size: 15px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* home page: blog */
.home-blog .blog-grid { grid-template-columns: repeat(3, 1fr); }
.home-blog .blog-card { display: flex; flex-direction: column; background: var(--base-bg); border: 1px solid var(--base-border); border-radius: var(--radius-lg); overflow: hidden; height: 100%; }
.home-blog .blog-image { position: relative; display: block; aspect-ratio: 16/10; background: var(--base-bg-4); overflow: hidden; }
.home-blog .blog-image img { width: 100%; height: 100%; object-fit: cover; }
.home-blog .blog-date { font-size: 11.5px; color: #9AA3AD; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 6px; }

/* info blocks */
.info-blocks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.info-block {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.info-block .ib-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--base-bg-4);
  color: var(--brand-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin: 0 auto 14px;
}
.info-block h3 { font: 600 15.5px/1.3 var(--font-display); margin: 0 0 8px; }
.info-block p { font-size: 13px; line-height: 1.6; color: var(--footer-fg-2); margin: 0; }

/* contact page */
.contact-info-blocks { margin-bottom: 26px; }
.contact-note { margin-bottom: 26px; display: grid; gap: 14px; max-width: 860px; }
.contact-note-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-left: 3px solid var(--brand-1);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.contact-note-item > .fa { font-size: 18px; color: var(--brand-1); margin-top: 2px; }
.contact-note-item strong { font: 600 14px var(--font-display); color: var(--base-fg); }
.contact-note-item p { font-size: 13px; color: var(--footer-fg-2); line-height: 1.6; margin: 6px 0 0; }
.contact-form-wrap {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 26px;
  max-width: 860px;
}
.contact-form-title {
  font: 600 20px var(--font-display);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--base-border);
  text-align: center;
}
.contact-form-wrap .form-horizontal .form-group { margin-left: 0; margin-right: 0; }
.contact-form-wrap .form-horizontal .form-group.row { margin-left: -15px; margin-right: -15px; }
.contact-form-wrap .control-label { color: var(--base-fg); font-size: 13px; }
.contact-form-wrap .form-control {
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  height: 42px;
  padding: 0 14px;
  font-size: 13.5px;
}
.contact-form-wrap textarea.form-control { height: auto; padding: 12px 14px; }
.contact-form-wrap .checkbox-inline input { margin-right: 6px; }
.contact-form-wrap .text-danger { font-size: 12px; margin-top: 4px; }

/* product bundles */
.pbListing-content { display: grid; gap: 24px; margin-bottom: 26px; }
.pbListing-box {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.pbListing-box .box-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bundle-list-name { font: 600 19px/1.3 var(--font-display); margin-bottom: 8px; }
.bundle-list-name a { color: var(--base-fg); text-decoration: none; }
.bundle-list-name a:hover { color: var(--brand-1); }
.bundle-list-description { font-size: 13px; color: var(--footer-fg-2); line-height: 1.6; max-width: 680px; margin: 0 auto 18px; }
.box-products { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.PB_product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--base-bg-4);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 16px 18px 14px;
  min-width: 150px;
}
.PB_image { margin-bottom: 10px; }
.PB_image img { width: 110px; height: 110px; object-fit: cover; border-radius: var(--radius); }
.pb_name { display: flex; flex-direction: column; gap: 4px; }
.PB_product_name { font: 600 13px/1.3 var(--font-display); color: var(--base-fg); text-decoration: none; }
.PB_product_name:hover { color: var(--brand-1); }
.pb_price strong { font: 700 15px var(--font-display); color: var(--brand-1); }
.PB_plusbutton {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
}
.PB_bundle_info { font-size: 13.5px; }
.PB_bundle_total_price { color: var(--brand-1); }
.PB_bundle_info #ProductBundlesSubmitButton { margin-top: 6px; max-width: 360px; width: 100%; }

/* intro */

/* stats */
.stats-band { background: var(--brand-1); border-radius: var(--radius-lg); color: #fff; padding: 34px 30px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stats-band .stat { text-align: center; }
.stats-band .stat .num { font: 700 34px/1.1 var(--font-display); display: block; }
.stats-band .stat .lbl { font: 500 12.5px var(--font-body); opacity: .85; }
.stats-band .stat .fa { font-size: 20px; margin-bottom: 8px; display: block; opacity: .9; }

/* blog teaser */
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow var(--speed), transform var(--speed);
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blog-card .bc-image,
.blog-card .blog-image { position: relative; aspect-ratio: 16/10; background: var(--base-bg-4); overflow: hidden; display: block; }
.blog-card .bc-image img,
.blog-card .blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .bc-date {
  position: absolute; top: 12px; left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 54px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: var(--radius);
  text-align: center;
  padding: 7px 10px;
  box-shadow: var(--shadow-1);
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: none;
}
.blog-card:hover .bc-date {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.blog-card .bc-date .d { font: 700 18px/1 var(--font-display); color: var(--brand-1); display: block; }
.blog-card .bc-date .m { font: 700 10px/1.1 var(--font-body); text-transform: uppercase; color: var(--brand-3); margin-top: 4px; }
.blog-card .bc-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card .bc-title { font: 600 15.5px/1.35 var(--font-display); color: var(--base-fg); margin: 0 0 8px; }
.blog-card .bc-excerpt { font-size: 12.5px; color: var(--footer-fg-2); margin-bottom: 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .bc-meta { font-size: 11.5px; color: #9AA3AD; }
.blog-card .bc-meta .fa { margin-right: 4px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
footer, .site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  color: var(--footer-fg-2);
  font-size: 13.5px;
}
.footer-disclaimer {
  background: var(--footer-bg-2);
  border-bottom: 1px solid var(--footer-border);
  padding: 26px 0;
}
.footer-disclaimer .disclaimer-box {
  border: 1px solid var(--footer-border);
  border-left: 3px solid var(--brand-1);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
}
.footer-disclaimer h4 { font: 600 14px var(--font-display); color: var(--footer-fg); margin: 0 0 8px; }
.footer-disclaimer p { font-size: 12.5px; line-height: 1.6; margin: 0 0 8px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-main { padding: 44px 0 30px; }
.footer-main .row { display: flex; flex-wrap: wrap; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(170px, 1fr));
  gap: 32px;
}
.footer-col { margin-bottom: 24px; }
.footer-col.footer-brand { margin-bottom: 0; }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { max-height: 200px; width: auto; }
.footer-logo .logo-text { font: 700 24px/1 var(--font-display); color: var(--footer-fg); letter-spacing: -.5px; }
.footer-logo .logo-text span { color: var(--brand-2); }
.footer-col h5 {
  font: 600 14px var(--font-display);
  color: var(--footer-fg);
  margin: 0 0 14px;
  text-transform: none;
}
.footer-col h4 { font: 600 14px var(--font-display); color: var(--footer-fg); margin: 0 0 14px; text-transform: uppercase; letter-spacing: .04em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--footer-fg-2); text-decoration: none; font-size: 13px; }
.footer-col ul li a:hover { color: var(--brand-1); }
.footer-col ul li a:before { content: '\203A'; margin-right: 7px; color: #B9C2CC; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}
.footer-contact .fa {
  color: var(--brand-3);
  margin-top: 3px;
  min-width: 14px;
}
.footer-contact span,
.footer-contact a {
  color: var(--footer-fg-2);
}
.footer-contact a:hover {
  color: var(--brand-1);
}
.footer-contact li a:before {
  content: none;
}

/* newsletter */
.footer-newsletter p { font-size: 12.5px; margin-bottom: 12px; }
.newsletter-label { color: var(--footer-fg-2); }
.newsletter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-input {
  flex: 1 1 180px;
  height: 42px;
  border: 1px solid var(--header-border-2);
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font-size: 13px;
  background: #fff;
  min-width: 0;
}
.newsletter-input:focus { outline: none; border-color: var(--brand-1); }
.newsletter-btn { height: 42px; border-radius: var(--radius-pill); padding: 0 22px; }
.newsletter-form { max-width: 340px; }

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 20px 0 28px;
  font-size: 12px;
  color: var(--footer-fg-2);
  background: var(--footer-bg-2);
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.footer-bottom-inner .copyright {
  margin: 0;
  font-size: 12px;
  color: var(--footer-fg-2);
  line-height: 1.7;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--footer-border);
  border-left: 3px solid var(--brand-1);
  border-radius: var(--radius);
  width: 100%;
}
.footer-bottom-inner .copyright b,
.footer-bottom-inner .copyright strong { color: var(--footer-fg); }
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding-top: 6px;
  border-top: 1px solid var(--footer-border);
}
.footer-legal a {
  color: var(--footer-fg-2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color var(--speed);
}
.footer-legal a:hover { color: var(--brand-1); }
.footer-bottom a { color: var(--brand-1); }

/* footer most viewed */
.footer-most-viewed { background: var(--base-bg); border-top: 1px solid var(--base-border); padding: 26px 0; }
.footer-most-viewed .section-title { margin-bottom: 16px; }
.mv-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.mv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  text-decoration: none;
  color: var(--footer-fg-2);
}
.mv-item:hover { color: var(--brand-1); }
.mv-item img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--base-border);
  background: #fff;
}
.mv-name { font-size: 11px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mv-price { font: 600 11.5px var(--font-body); color: var(--brand-1); }

/* =========================================================================
   BLOG
   ========================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.blog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 24px; }
.blog-post-full img.post-image { border-radius: var(--radius-lg); margin-bottom: 20px; }
.blog-post-meta { font-size: 12.5px; color: #9AA3AD; margin-bottom: 18px; }
.blog-post-meta span { margin-right: 16px; }
.blog-post-meta .fa { margin-right: 5px; }
.blog-post-content { font-size: 14px; line-height: 1.8; color: var(--base-fg-2); }
.blog-post-content p { margin: 0 0 14px; }
.blog-post-content h2, .blog-post-content h3 { font: 600 19px var(--font-display); color: var(--base-fg); margin: 22px 0 10px; letter-spacing: -.3px; }
.blog-post-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 14px 20px; }
.blog-post-content li { margin-bottom: 6px; }

.blog-caption { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-caption .blog-title { font: 600 15.5px/1.35 var(--font-display); color: var(--base-fg); margin: 0 0 8px; }
.blog-caption .blog-title a { color: var(--base-fg); text-decoration: none; }
.blog-caption .blog-title a:hover { color: var(--brand-1); }
.blog-caption .blog-excerpt { font-size: 12.5px; color: var(--footer-fg-2); margin-bottom: 12px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-caption .blog-meta { font-size: 11.5px; color: #9AA3AD; margin-bottom: 12px; }
.blog-caption .blog-meta span { margin-right: 14px; }
.blog-caption .blog-meta .fa { margin-right: 4px; }
.blog-caption .blog-more { font: 600 12.5px var(--font-body); color: var(--brand-1); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.blog-caption .blog-more:hover { color: var(--brand-1-dark); }
.blog-caption .blog-more .fa { transition: transform var(--speed); }
.blog-caption .blog-more:hover .fa { transform: translateX(3px); }

/* =========================================================================
   INFORMATION PAGES
   ========================================================================= */
.info-page { background: var(--base-bg); border: 1px solid var(--base-border); border-radius: var(--radius-lg); padding: 30px; margin-bottom: 26px; font-size: 14px; line-height: 1.75; }
.info-page > h1:first-child, .info-page > h2:first-child { margin-top: 0; }
.info-page img { max-width: 100%; height: auto; }

/* about page */
.pip-about { margin-bottom: 26px; }
.pip-about-hero {
  background: linear-gradient(135deg, var(--brand-1) 0%, #3D4CAA 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 28px;
}
.pip-about-hero-content { max-width: 640px; margin-inline: auto; }
.pip-about-hero .pip-about-hero-content p { margin: 0; }
.pip-about-tagline {
  font: 600 16px var(--font-body);
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
}
.pip-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  margin-bottom: 32px;
}
.pip-stat { text-align: center; }
.animated { animation: fadeUp .6s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.pip-stat-number { font: 700 34px/1.1 var(--font-display); color: var(--brand-1); display: block; }
.pip-stat-label { font: 500 12.5px var(--font-body); color: var(--footer-fg-2); }
.pip-stat-percent { font-size: .7em; }
.pip-about-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--base-fg-2);
  text-align: center;
}
.pip-about-section { margin-bottom: 36px; }
.pip-about-section > h2 { font: 600 24px/1.3 var(--font-display); margin: 0 0 18px; letter-spacing: -.4px; }
.pip-about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pip-about-card {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: box-shadow var(--speed), transform var(--speed);
}
.pip-about-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.pip-card-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--base-bg-4);
  color: var(--brand-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pip-card-icon svg { width: 22px; height: 22px; }
.pip-about-card h3 { font: 600 16px var(--font-display); margin: 0 0 8px; }
.pip-about-card p { font-size: 13px; color: var(--footer-fg-2); line-height: 1.65; margin: 0; }
.pip-info-title { font: 600 30px/1.25 var(--font-display); color: var(--base-fg); margin: 0 0 6px; letter-spacing: -.6px; }
.pip-info-content { font-size: 14px; line-height: 1.7; color: var(--base-fg-2); }
.pip-info-content img { max-width: 100%; height: auto; }
.about-rich-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px 32px;
}
.about-rich-content > *:first-child { margin-top: 0; }
.about-rich-content > *:last-child { margin-bottom: 0; }
.pip-about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.pip-about-column { background: var(--base-bg); border: 1px solid var(--base-border); border-radius: var(--radius-lg); padding: 28px 26px; }
.pip-about-feature h2 { font: 600 20px var(--font-display); margin: 0 0 12px; }
.pip-about-feature p { font-size: 13.5px; color: var(--footer-fg-2); line-height: 1.7; margin: 0 0 10px; }
.pip-about-feature p:last-child { margin-bottom: 0; }

/* storage section */
.pip-storage-section { margin-bottom: 36px; }
.pip-storage-header { text-align: center; margin-bottom: 24px; }
.pip-storage-header h2 { font: 600 24px var(--font-display); margin: 0 0 8px; letter-spacing: -.4px; }
.pip-storage-intro { font-size: 13.5px; color: var(--footer-fg-2); max-width: 640px; margin: 0 auto; }
.pip-storage-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.pip-storage-content h3 { font: 600 19px var(--font-display); margin: 0 0 10px; }
.pip-storage-content p { font-size: 13.5px; color: var(--footer-fg-2); line-height: 1.7; margin: 0 0 10px; }
.pip-storage-content p:last-child { margin-bottom: 0; }
.pip-storage-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--base-bg-4);
  color: var(--brand-1);
  font: 600 12px var(--font-body);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.pip-storage-badge svg { width: 14px; height: 14px; }
.pip-storage-feature img { width: 100%; border-radius: var(--radius); }
.pip-storage-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.pip-storage-image img { width: 100%; display: block; border-radius: var(--radius); }
.pip-image-caption {
  font-size: 12px;
  color: var(--footer-fg-2);
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.5;
}
.pip-zoomable { position: relative; cursor: zoom-in; }
.pip-zoomable img { transition: transform .3s ease; }
.pip-zoomable:hover img { transform: scale(1.02); }
.pip-zoom-overlay {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-2);
  color: var(--brand-1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pip-zoom-overlay svg { width: 16px; height: 16px; }
.pip-storage-process h3 { font: 600 20px var(--font-display); margin: 0 0 16px; }
.pip-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.pip-process-card {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
}
.pip-process-card--highlight {
  border-color: var(--brand-1);
  box-shadow: 0 0 0 1px var(--brand-1), var(--shadow-2);
}
.pip-process-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--base-bg-4);
  color: var(--brand-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.pip-process-icon svg { width: 22px; height: 22px; }
.pip-process-card--highlight .pip-process-icon { background: var(--brand-1); color: #fff; }
.pip-process-number {
  position: absolute;
  top: 16px; left: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand-1);
  color: #fff;
  font: 700 15px var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pip-process-card .pip-zoomable img { width: 100%; border-radius: var(--radius); margin-bottom: 12px; }
.pip-process-card h4 { font: 600 15px var(--font-display); margin: 0 0 8px; }
.pip-process-card p { font-size: 12.5px; color: var(--footer-fg-2); line-height: 1.65; margin: 0 0 10px; }
.pip-process-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.pip-spec {
  background: var(--base-bg-4);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-sm);
  padding: 4px 9px;
  font-size: 11px;
  color: var(--footer-fg-2);
}
.pip-storage-benefits h3 { font: 600 20px var(--font-display); margin: 0 0 16px; }
.pip-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 24px; }
.pip-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pip-benefit > svg { width: 20px; height: 20px; color: var(--brand-1); flex-shrink: 0; margin-top: 2px; }
.pip-benefit h4 { font: 600 13.5px var(--font-display); margin: 0 0 4px; }
.pip-benefit p { font-size: 12.5px; color: var(--footer-fg-2); line-height: 1.6; margin: 0; }
.pip-storage-trust {
  display: flex;
  gap: 16px;
  background: var(--brand-1);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 26px 28px;
  margin-bottom: 24px;
}
.pip-trust-icon svg { width: 34px; height: 34px; flex-shrink: 0; }
.pip-trust-content h3 { font: 600 17px var(--font-display); margin: 0 0 8px; }
.pip-trust-content p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.9); margin: 0 0 8px; }
.pip-trust-content p:last-child { margin-bottom: 0; }
.pip-additional-trust { margin-bottom: 36px; }
.pip-additional-trust > h2 { font: 600 24px var(--font-display); margin: 0 0 18px; letter-spacing: -.4px; }
.pip-trust-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pip-trust-feature {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pip-trust-feature-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--base-bg-4);
  color: var(--brand-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pip-trust-feature-icon svg { width: 20px; height: 20px; }
.pip-trust-feature h4 { font: 600 15px var(--font-display); margin: 0 0 8px; }
.pip-trust-feature p { font-size: 13px; color: var(--footer-fg-2); line-height: 1.65; margin: 0; }
.pip-about-values { margin-bottom: 36px; }
.pip-about-values > h2 { font: 600 24px var(--font-display); margin: 0 0 18px; letter-spacing: -.4px; }
.pip-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}
.pip-values-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--base-fg-2);
}
.pip-values-list li strong {
  color: var(--base-fg);
  font-weight: 600;
}
.pip-values-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-1);
  flex-shrink: 0;
  margin-top: 7px;
}
.pip-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pip-value-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pip-value-item svg { width: 20px; height: 20px; color: var(--accent-green); flex-shrink: 0; }
.pip-value-item p { font-size: 13.5px; margin: 0; color: var(--base-fg); }
.pip-about-cta {
  background: linear-gradient(135deg, var(--brand-1) 0%, #3D4CAA 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  padding: 40px 30px;
}
.pip-cta-content h2 { font: 600 26px var(--font-display); margin: 0 0 10px; letter-spacing: -.4px; }
.pip-cta-content p { font-size: 14px; color: rgba(255,255,255,.9); margin: 0 0 20px; }
.pip-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-1);
  font: 600 13.5px var(--font-body);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: box-shadow var(--speed), transform var(--speed);
}
.pip-cta-button:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); color: var(--brand-1); }
.pip-cta-button svg { width: 16px; height: 16px; }
.pip-zoom-overlay { display: none; }

/* faq page */
.faq-page { max-width: 960px; margin: 0 auto; margin-bottom: 26px; }
.faq-note {
  background: #F3F6FF;
  border: 1px solid #DCE3F8;
  border-left: 3px solid var(--brand-1);
  border-radius: var(--radius);
  padding: 11px 14px;
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--base-fg-2);
}
.faq-note strong { color: var(--brand-1); }
.faq-header { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.faq-title { font: 700 28px/1.2 var(--font-display); margin: 0 0 10px; letter-spacing: -.5px; }
.faq-subtitle { font-size: 14px; color: var(--footer-fg-2); margin: 0; }

.faq-toolbar { margin-bottom: 26px; }
.faq-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 16px;
}
.faq-search-wrap svg {
  position: absolute;
  left: 16px; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  color: #9AA3AD;
  pointer-events: none;
}
.faq-search {
  width: 100%;
  height: 48px;
  border: 1px solid var(--base-border);
  border-radius: var(--radius-pill);
  padding: 0 18px 0 46px;
  font-size: 13.5px;
  background: #fff;
}
.faq-search:focus { outline: none; border-color: var(--brand-1); box-shadow: 0 0 0 3px rgba(43,55,136,.08); }

.faq-category-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.faq-filter-btn {
  border: 1px solid var(--base-border);
  background: #fff;
  color: var(--footer-fg-2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font: 600 12.5px var(--font-body);
  cursor: pointer;
  transition: all var(--speed);
}
.faq-filter-btn:hover { border-color: var(--brand-1); color: var(--brand-1); }
.faq-filter-btn.active { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }

.faq-no-results { display: none; text-align: center; padding: 30px; color: var(--footer-fg-2); font-size: 14px; }

.faq-section { margin-bottom: 30px; }
.faq-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 18px var(--font-display);
  color: var(--base-fg);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--base-border);
}
.faq-section-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--base-bg-4);
  color: var(--brand-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.faq-section-icon svg { width: 16px; height: 16px; }

.faq-item { border: 1px solid var(--base-border); border-radius: var(--radius); margin-bottom: 8px; background: #fff; overflow: hidden; }
.faq-item.faq-hidden { display: none; }
.faq-item .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: 0;
  font: 600 13.5px var(--font-body);
  color: var(--base-fg);
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-item .faq-question:hover { color: var(--brand-1); }
.faq-item .faq-question:after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--footer-fg-2);
  transition: transform var(--speed);
  flex-shrink: 0;
}
.faq-item.open .faq-question { color: var(--brand-1); }
.faq-item.open .faq-question:after { transform: rotate(45deg); }
.faq-item .faq-answer { display: none; padding: 0 18px 16px; font-size: 13.5px; color: var(--footer-fg-2); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-answer-inner p { margin: 0 0 10px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-commitment {
  margin-top: 40px;
  padding: 24px;
  background: #f8f9fa;
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
}
.faq-commitment h2 {
  font: 600 22px var(--font-display);
  margin: 0 0 16px;
  color: var(--base-fg);
}
.faq-commitment p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--footer-fg-2);
}
.faq-commitment ul {
  padding-left: 20px;
  margin: 0 0 12px;
}
.faq-commitment li {
  margin-bottom: 6px;
}
.faq-commitment em {
  color: #999;
  font-size: 13px;
}

.faq-cta {
  margin-top: 30px;
  text-align: center;
  padding: 32px;
  background: var(--brand-gradient);
  border-radius: var(--radius);
  color: #fff;
}
.faq-cta h2 {
  font: 600 26px var(--font-display);
  margin: 0 0 12px;
  color: #fff;
}
.faq-cta p {
  margin: 0 0 16px;
}
.faq-cta a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.faq-cta a:hover {
  opacity: 0.85;
}

/* glossary */
.glossary-index { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.glossary-index a {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  background: #fff;
  font: 600 13px var(--font-body);
  color: var(--footer-fg-2);
  text-decoration: none;
  padding: 0 10px;
}
.glossary-index a:hover { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }
.glossary-term { border-top: 1px solid var(--base-border); padding: 14px 0; }
.glossary-term dt { font: 600 15px var(--font-display); color: var(--base-fg); margin-bottom: 4px; }
.glossary-term dd { font-size: 13.5px; color: var(--footer-fg-2); margin: 0; }

/* about */
.about-hero { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.about-hero .about-copy { flex: 1 1 55%; }
.about-hero img { max-width: 380px; border-radius: var(--radius-lg); }

.about-page {
  padding-bottom: 44px;
}
.about-page #content {
  margin-bottom: 28px;
}
.about-page-hero {
  margin: 6px 0 28px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226,232,240,.9);
  background:
    radial-gradient(circle at 92% 12%, rgba(20,184,166,.18), transparent 32%),
    linear-gradient(135deg, rgba(124,58,237,.12), rgba(79,70,229,.08) 48%, rgba(13,148,136,.12));
}
.about-page-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.about-page-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  font: 700 11px/1 var(--font-body);
  color: var(--brand-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-page-hero h1 {
  margin: 0;
  font: 800 34px/1.15 var(--font-display);
  color: var(--base-fg);
  letter-spacing: 0;
}
.about-page-hero p {
  max-width: 680px;
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--base-fg-2);
}
.about-page-points {
  display: grid;
  gap: 10px;
}
.about-page-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  color: var(--base-fg);
  font: 700 13px/1.35 var(--font-body);
  box-shadow: var(--shadow-1);
}
.about-page-points .fa {
  color: var(--brand-3);
  width: 18px;
  text-align: center;
}
.about-rich-content .pip-about {
  display: grid;
  gap: 30px;
}
.about-rich-content .pip-about-hero {
  margin: 0;
  padding: 20px 24px;
  text-align: left;
  color: var(--base-fg);
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-left: 4px solid var(--brand-3);
  box-shadow: var(--shadow-card);
}
.about-rich-content .pip-about-tagline {
  color: var(--base-fg);
  font: 700 18px/1.45 var(--font-display);
}
.about-rich-content .pip-about-stats,
.about-rich-content .pip-about-card,
.about-rich-content .pip-about-column,
.about-rich-content .pip-storage-feature,
.about-rich-content .pip-process-card,
.about-rich-content .pip-benefit,
.about-rich-content .pip-trust-feature,
.about-rich-content .pip-value-item {
  box-shadow: var(--shadow-card);
}
.about-rich-content .pip-about-stats {
  margin: 0;
  border-top: 3px solid var(--brand-1);
}
.about-rich-content .pip-about-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}
.about-rich-content .pip-about-section,
.about-rich-content .pip-about-columns,
.about-rich-content .pip-storage-section,
.about-rich-content .pip-additional-trust,
.about-rich-content .pip-about-values {
  margin-bottom: 0;
}
.about-rich-content .pip-about-section > h2,
.about-rich-content .pip-storage-header h2,
.about-rich-content .pip-additional-trust > h2,
.about-rich-content .pip-about-values > h2 {
  text-align: center;
  font-weight: 800;
  color: var(--base-fg);
}
.about-rich-content .pip-card-icon,
.about-rich-content .pip-trust-feature-icon,
.about-rich-content .pip-process-icon {
  background: var(--brand-gradient-soft);
  color: var(--brand-1);
}
.about-rich-content .pip-storage-trust,
.about-rich-content .pip-about-cta {
  background: var(--brand-gradient);
  box-shadow: var(--shadow-2);
}
.about-rich-content .pip-storage-image,
.about-rich-content .pip-process-image {
  border: 1px solid var(--base-border);
  box-shadow: var(--shadow-1);
  background: #fff;
}
.about-rich-content .pip-process-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-rich-content .pip-storage-process {
  padding: 28px;
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, var(--base-bg-2) 100%);
  box-shadow: var(--shadow-card);
}
.about-rich-content .pip-storage-process > h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 12px;
  text-align: center;
  font: 800 24px/1.25 var(--font-display);
  color: var(--base-fg);
}
.about-rich-content .pip-storage-process > h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
  transform: translateX(-50%);
}
.about-rich-content .pip-process-grid {
  gap: 18px;
  align-items: stretch;
  margin: 0;
}
.about-rich-content .pip-process-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--brand-3);
  background: #fff;
}
.about-rich-content .pip-process-card--highlight {
  border-color: var(--base-border);
  border-top-color: var(--brand-1);
  box-shadow: 0 14px 34px rgba(43,55,136,.12);
}
.about-rich-content .pip-process-number {
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--brand-gradient);
  box-shadow: 0 8px 20px rgba(43,55,136,.22);
}
.about-rich-content .pip-process-image {
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--base-border);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.about-rich-content .pip-process-card .pip-process-image img {
  display: block;
  width: 100%;
  height: 220px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  background: radial-gradient(circle, #fff 0%, var(--base-bg-2) 100%);
}
.about-rich-content .pip-process-icon {
  margin: 58px 22px 14px;
  box-shadow: inset 0 0 0 1px rgba(43,55,136,.08);
}
.about-rich-content .pip-process-card h4 {
  margin: 20px 22px 9px;
  font: 800 16px/1.35 var(--font-display);
  color: var(--base-fg);
}
.about-rich-content .pip-process-card .pip-process-icon + h4 {
  margin-top: 0;
}
.about-rich-content .pip-process-card p {
  margin: 0 22px 16px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--base-fg-2);
}
.about-rich-content .pip-process-specs {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 0 22px 22px;
}
.about-rich-content .pip-spec {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--base-bg-2);
  color: var(--base-fg-2);
  font: 700 11.5px/1.35 var(--font-body);
}
.about-rich-content .pip-spec svg {
  width: 14px;
  height: 14px;
  color: var(--brand-3);
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .about-page-hero {
    padding: 28px;
  }
  .about-rich-content .pip-storage-process {
    padding: 22px;
  }
  .about-rich-content .pip-process-card .pip-process-image img {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .about-page-hero {
    padding: 22px;
  }
  .about-page-hero h1 {
    font-size: 25px;
  }
  .about-page-points span {
    align-items: flex-start;
  }
  .about-rich-content .pip-storage-process {
    padding: 18px;
  }
  .about-rich-content .pip-storage-process > h3 {
    font-size: 20px;
  }
  .about-rich-content .pip-process-card .pip-process-image img {
    height: 210px;
  }
}

/* contact */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.contact-card { border: 1px solid var(--base-border); border-radius: var(--radius-lg); background: #fff; padding: 20px; text-align: center; }
.contact-card .fa { font-size: 22px; color: var(--brand-1); margin-bottom: 10px; }
.contact-card h4 { font: 600 14px var(--font-display); margin: 0 0 6px; }
.contact-card p { font-size: 13px; color: var(--footer-fg-2); margin: 0; }

/* =========================================================================
   CART / CHECKOUT / ACCOUNT
   ========================================================================= */
.table-cart img { border-radius: var(--radius-sm); }
.table > thead > tr > th {
  background: var(--base-bg-2);
  font: 600 12px var(--font-body);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--footer-fg-2);
  border-bottom: 1px solid var(--base-border) !important;
}
.table > tbody > tr > td { vertical-align: middle; }

.panel {
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.panel-heading {
  background: var(--base-bg-2);
  border-bottom: 1px solid var(--base-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 14px 18px;
}
.panel-title, .panel-heading h4 { font: 600 14.5px var(--font-display); color: var(--base-fg); margin: 0; }
.panel-body { padding: 18px; }

.list-group-item { border-color: var(--base-border); font-size: 13.5px; }
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  background: var(--brand-1);
  border-color: var(--brand-1);
}
.list-group-item a { color: var(--base-fg-2); }
.list-group-item:hover { background: var(--ui-2); }
.list-group-item.active:hover, .list-group-item.active a { color: #fff; }

/* category product filter panel */
.filter-panel { margin-bottom: 24px; }
.filter-panel .panel-heading { font-weight: 600; }
.filter-panel .panel-body { padding: 16px 18px; }
.filter-block { margin-bottom: 18px; }
.filter-block:last-child { margin-bottom: 0; }
.filter-block-title { font: 600 12.5px var(--font-body); text-transform: uppercase; letter-spacing: .06em; color: var(--base-fg-2); margin-bottom: 8px; }
.filter-block .list-group { margin-bottom: 0; }
.filter-block .list-group-item { padding: 8px 12px; display: flex; justify-content: space-between; align-items: center; }
.filter-block .badge { background: var(--ui-2); color: var(--base-fg-2); font-weight: 600; }
.filter-block .list-group-item.active .badge { background: rgba(255,255,255,.25); color: #fff; }
.price-filter-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-filter-inputs .form-control { text-align: center; }
.price-filter-sep { color: var(--base-fg-2); flex: 0 0 auto; }
.price-filter-submit { font-size: 13px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-chip {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--base-border);
  border-radius: 999px;
  color: var(--base-fg-2);
  background: var(--base-bg-2);
}
.tag-chip:hover { border-color: var(--brand-1); color: var(--brand-1); }
.tag-chip.active { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }
.filter-clear .btn { font-size: 13px; }

.well { background: var(--base-bg-2); border: 1px solid var(--base-border); border-radius: var(--radius); box-shadow: none; }

/* totals */
.cart-total-table td { padding: 8px 12px; }
.cart-total-table td:last-child { text-align: right; font-weight: 600; }
.cart-total-table tr:last-child td { font-size: 16px; color: var(--brand-1); font-weight: 700; }

/* login */
.login-box { background: #fff; border: 1px solid var(--base-border); border-radius: var(--radius-lg); padding: 24px; height: 100%; }
.login-box h2 { font: 600 18px var(--font-display); margin-top: 0; }

/* account menu heading */
.account-heading { font: 600 22px var(--font-display); margin: 6px 0 18px; }

.account-dashboard {
  padding-bottom: 42px;
}
.account-dashboard #content {
  margin-bottom: 28px;
}
.account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 6px 0 24px;
  padding: 28px 30px;
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(79,70,229,.08) 48%, rgba(13,148,136,.1));
}
.account-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font: 700 11px/1 var(--font-body);
  color: var(--brand-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.account-hero h1 {
  margin: 0;
  font: 800 30px/1.15 var(--font-display);
  color: var(--base-fg);
}
.account-hero p {
  margin: 8px 0 0;
  color: var(--base-fg-2);
  font-size: 13.5px;
}
.account-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.account-panel {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.account-panel-accent {
  border-top: 3px solid var(--brand-3);
}
.account-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--base-border);
  background: var(--base-bg-2);
}
.account-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-gradient-soft);
  color: var(--brand-1);
  flex: 0 0 auto;
}
.account-panel-head h2 {
  margin: 0;
  font: 700 17px/1.25 var(--font-display);
  color: var(--base-fg);
}
.account-link-list {
  display: grid;
}
.account-link-list a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-top: 1px solid var(--base-border);
  color: var(--base-fg-2);
  text-decoration: none;
  font-size: 13.5px;
  transition: background var(--speed), color var(--speed), padding-left var(--speed);
}
.account-link-list a:first-child {
  border-top: 0;
}
.account-link-list a > .fa:first-child {
  color: var(--brand-3);
  text-align: center;
}
.account-link-list a > .fa:last-child {
  color: var(--footer-fg-2);
}
.account-link-list a:hover {
  background: var(--ui-2);
  color: var(--brand-1);
  padding-left: 22px;
}

@media (max-width: 767px) {
  .account-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }
  .account-hero h1 {
    font-size: 24px;
  }
  .account-card-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   MISC / UTILITIES
   ========================================================================= */
.empty-state { text-align: center; padding: 60px 20px; color: var(--footer-fg-2); }
.empty-state .fa { font-size: 44px; color: var(--header-border-2); margin-bottom: 16px; }
.empty-state p { font-size: 15px; margin-bottom: 20px; }
.empty-text { text-align: center; padding: 40px 20px; color: var(--footer-fg-2); font-size: 14px; }

/* glossary content intro callout */
.highlight {
  background: #F3F6FF;
  border: 1px solid #DCE3F8;
  border-left: 3px solid var(--brand-1);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.highlight p { margin: 0 0 10px; }
.highlight p:last-child { margin-bottom: 0; }
.highlight strong { color: var(--brand-1); }

/* info page content body (glossary etc) */
.info-content {
  color: var(--base-fg-2);
  font-size: 14px;
  line-height: 1.8;
  max-width: 860px;
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px 32px;
}
.info-content > *:first-child { margin-top: 0; }
.info-content > *:last-child { margin-bottom: 0; }
.info-content p { margin: 0 0 16px; }
.info-content .intro {
  font-size: 15px;
  color: var(--base-fg);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 18px;
}
.info-content h1,
.info-content h2,
.info-content h3,
.info-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--base-fg);
  margin: 32px 0 14px;
  letter-spacing: -.3px;
}
.info-content h1:first-child,
.info-content h2:first-child,
.info-content h3:first-child,
.info-content h4:first-child { margin-top: 0; }
.info-content h1 { font-size: 22px; }
.info-content h2 { font-size: 18px; }
.info-content h3 { font-size: 16px; }
.info-content h4 { font-size: 15px; }
.info-content ul,
.info-content ol { margin: 0 0 18px; padding-left: 26px; }
.info-content li { margin-bottom: 8px; }
.info-content li > ul,
.info-content li > ol { margin-bottom: 0; }
.info-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 13.5px;
  border-radius: var(--radius);
  overflow: hidden;
}
.info-content th,
.info-content td {
  border: 1px solid var(--base-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.info-content th {
  background: var(--base-bg-3);
  font-weight: 600;
  color: var(--base-fg);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: .4px;
}
.info-content strong { color: var(--base-fg); }
.info-content a { color: var(--brand-1); text-decoration: none; }
.info-content a:hover { text-decoration: underline; }
.glossary-content { color: var(--base-fg-2); font-size: 14px; line-height: 1.75; }
.glossary-content p { margin: 0 0 14px; }

/* agree checkbox row */
.agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--footer-fg-2);
  margin-bottom: 12px;
}
.agree input { margin-top: 2px; }

/* currency selector */
.currency-select {
  border: 0;
  background: transparent;
  color: inherit;
  font: 500 12px var(--font-body);
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}
.currency-select:hover { color: var(--brand-1); }


.text-price { font-family: var(--font-display); font-weight: 700; }
.img-thumbnail { border-color: var(--base-border); border-radius: var(--radius); }

/* buttons row */
.buttons { margin: 20px 0; overflow: auto; }
.buttons .pull-right .btn-primary { margin-left: 8px; }

/* custom radio/checkbox images */
.radio-img input { margin-right: 6px; }

/* scroll to top */
#scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-1);
  color: #fff;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed), visibility var(--speed);
  z-index: 900;
  box-shadow: var(--shadow-2);
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--brand-1-dark); }

/* =========================================================================
   AFFILIATE PAGE
   ========================================================================= */
.affiliate-page {
  max-width: 960px;
  margin: 0 auto;
}
.affiliate-hero {
  text-align: center;
  padding: 48px 24px;
  background: var(--brand-gradient-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.affiliate-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-1);
  margin: 0 0 12px;
}
.affiliate-tagline {
  font-size: 17px;
  color: var(--base-fg-2);
  margin: 0;
}
.affiliate-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.affiliate-benefit {
  background: var(--base-bg);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--speed), transform var(--speed);
}
.affiliate-benefit:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.affiliate-benefit .fa {
  font-size: 32px;
  color: var(--brand-1);
  margin-bottom: 14px;
}
.affiliate-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--base-fg);
}
.affiliate-benefit p {
  font-size: 14px;
  color: var(--base-fg-2);
  margin: 0;
  line-height: 1.6;
}
.affiliate-how-it-works {
  margin-bottom: 48px;
}
.affiliate-how-it-works h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--base-fg);
  margin: 0 0 28px;
}
.affiliate-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.affiliate-step {
  background: var(--base-bg-2);
  border: 1px solid var(--base-border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 12px;
}
.affiliate-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--base-fg);
  margin: 0 0 6px;
}
.affiliate-step p {
  font-size: 13px;
  color: var(--base-fg-2);
  margin: 0;
  line-height: 1.5;
}
.affiliate-cta {
  text-align: center;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  color: #fff;
}
.affiliate-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}
.affiliate-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.9);
  margin: 0 0 24px;
}
.affiliate-cta .btn-primary {
  background: #fff;
  border-color: #fff;
  color: var(--brand-1);
  margin-right: 8px;
}
.affiliate-cta .btn-primary:hover {
  background: var(--brand-1-dark);
  border-color: var(--brand-1-dark);
  color: #fff;
}
.affiliate-cta .btn-default {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.affiliate-cta .btn-default:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 767px) {
  .affiliate-benefits { grid-template-columns: 1fr; }
  .affiliate-steps { grid-template-columns: repeat(2, 1fr); }
  .affiliate-hero h1 { font-size: 26px; }
  .affiliate-cta h2 { font-size: 22px; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1199px) {
  .info-blocks { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .product-page { grid-template-columns: 1fr; gap: 24px; }
  .pip-about-grid, .pip-trust-features, .pip-process-grid { grid-template-columns: repeat(2, 1fr); }
  .pip-storage-feature { grid-template-columns: 1fr; }
  .banner-grid, .products-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-blog .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  .header-mid { flex-wrap: wrap; gap: 14px; padding: 14px 0; }
  .header-mid .logo-wrap { order: 1; }
  .header-links { order: 2; margin-left: auto; }
  .header-search { order: 3; flex: 1 1 100%; max-width: none; margin: 0; }
  .header-link { min-width: 52px; font-size: 10.5px; }
  .header-link .hl-text { display: none; }
  .header-link .fa { font-size: 20px; }
  .main-menu { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .main-menu-bar .container { display: flex; align-items: center; padding-top: 8px; padding-bottom: 8px; }
  .hero-copy h2 { font-size: 30px; }
  .hero-slide { min-height: 340px; }
  .cat-banners { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .trust-item { flex: 1 1 50%; border-left: 0; border-top: 1px solid var(--base-border); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .hero-product { display: none; }
  .hero-slide-inner { padding: 40px 0; }
}
@media (max-width: 767px) {
  .top-strip .top-strip-left .ts-hide { display: none; }
  .home-slider .slide-content-image { min-height: 0; padding: 32px 0; }
  .home-slider .slide-cols { flex-direction: column; gap: 20px; text-align: center; align-items: center; }
  .home-slider .slide-col-left, .home-slider .slide-col-right { flex: 1 1 auto; max-width: 100%; width: 100%; }
  .home-slider .slide-col-right img { max-height: 260px; }
  .home-slider .slide-text-2 .slide-text-item span { font-size: 26px; }
  .info-blocks { grid-template-columns: 1fr; }
  .tab-content { padding: 16px; }
  .product-hero { padding: 16px; }
  .info-page { padding: 18px; }
  .pip-about-grid, .pip-trust-features, .pip-process-grid, .pip-benefits-grid, .pip-values-grid, .pip-about-columns, .pip-about-stats { grid-template-columns: 1fr; }
  .product-main h1.product-title { font-size: 21px; }
  .listing-toolbar { align-items: stretch; flex-direction: column; }
  .layout-toggle { margin-left: 0; }
  .footer-bottom .container { flex-direction: column; }
  #cart > .dropdown-menu { width: 320px; right: 0; left: auto; }
  .stats-band { flex-direction: column; gap: 18px; }
  .hero-copy h2 { font-size: 25px; }
  .hero-copy .lead { font-size: 14px; }
  .banner-grid, .products-grid, .info-grid, .home-blog .blog-grid { grid-template-columns: 1fr; }
  .home-stats .stats-grid { grid-template-columns: 1fr; }
  .intro-card { padding: 26px 20px; }
  .section { padding: 36px 0; }
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-page { padding: 0 6px; }
  .faq-header h1 { font-size: 22px; }
  .faq-question { font-size: 13px; padding: 13px 40px 13px 15px; }
  .faq-answer-inner { padding: 0 15px 14px; font-size: 13px; }
  .faq-filter-btn { font-size: 12px; padding: 6px 12px; }
  .faq-section-title { font-size: 16px; }
}
.home-products .product-layout.is-hidden {
  display: none;
}

.js-load-more-item.is-hidden {
  display: none;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-load-more {
  min-width: 150px;
  position: relative;
}

.home-load-more .load-more-spinner {
  display: none;
  width: 15px;
  height: 15px;
  margin-left: 8px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -2px;
  animation: homeLoadMoreSpin .7s linear infinite;
}

.home-load-more.is-loading .load-more-spinner {
  display: inline-block;
}

@keyframes homeLoadMoreSpin {
  to { transform: rotate(360deg); }
}

/* =========================================================================
   PROFESSIONAL REFINEMENT LAYER
   CSS-only polish pass for the active storefront.
   ========================================================================= */

.top-features-bar {
 background:
 linear-gradient(90deg, rgba(255,255,255,.08), transparent 20%, rgba(255,255,255,.08) 80%, transparent),
 var(--brand-gradient-header);
}

.top-features-bar .tf-grid {
 min-height: 54px;
}

.top-features-bar .tf-item {
 justify-content: flex-start;
}

.top-features-bar .tf-icon {
 border-radius: 8px;
 background: rgba(255,255,255,.13);
 box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.top-strip {
 background: #FFFFFF;
}

.top-strip .container {
 min-height: 38px;
}

.top-strip a,
 .top-strip span {
 color: #445469;
}

.top-strip .fa,
 #top-currency .cur-symbol {
 color: var(--brand-3);
}

.site-header {
 position: sticky;
 top: 0;
 z-index: 1030;
 box-shadow: 0 8px 24px rgba(17,24,39,.06);
}

.header-mid {
 padding: 16px 0;
}

.header-mid .logo-wrap img {
 max-height: 68px;
 filter: drop-shadow(0 4px 10px rgba(17,24,39,.08));
}

.header-search {
 max-width: 680px;
}

#search {
 height: 48px;
 border: 1px solid var(--base-border);
 border-radius: 8px;
 box-shadow: 0 8px 24px rgba(17,24,39,.06);
}

#search:focus-within {
 border-color: rgba(0,87,184,.45);
 box-shadow: 0 0 0 3px rgba(0,87,184,.1), 0 10px 24px rgba(17,24,39,.08);
}

#search input.search-input {
 height: 46px;
 padding: 0 18px;
}

#search .search-button {
 width: 58px;
 background: var(--brand-gradient-bold);
}

.header-links {
 gap: 8px;
}

.header-link {
 min-width: 62px;
 padding: 8px 9px;
 border: 1px solid transparent;
 border-radius: 8px;
}

.header-link:hover,
 .header-link:focus {
 background: #F2F7FA;
 border-color: var(--base-border);
 color: var(--brand-1);
}

.header-link .count-badge {
 top: 3px;
 right: 4px;
 background: var(--brand-3);
 box-shadow: 0 3px 8px rgba(0,169,157,.22);
}

.header-link .count-badge.count-zero {
 background: #A8B3C0;
 box-shadow: none;
}

.header-links .dropdown-menu,
 #cart > .dropdown-menu {
 border-radius: 8px;
 border-color: rgba(226,232,239,.95);
 box-shadow: var(--shadow-2);
}

.main-menu-bar {
 background: #FFFFFF;
 box-shadow: none;
}

.main-menu {
 justify-content: center;
 min-height: 48px;
}

.main-menu > li > a {
 padding: 17px 14px;
 color: #263548;
 font-size: 13px;
}

.main-menu > li > a:hover,
 .main-menu > li > a:focus {
 background: transparent;
 color: var(--brand-1-dark);
}

.main-menu .menu-label {
 background: #D97706;
 box-shadow: none;
}

.home-slider .module-slider-613 {
 --slide-min-height: 480px;
 --slide-max-height: 640px;
}

.home-slider .slide-content-image {
 position: relative;
 isolation: isolate;
}

.home-slider .slide-content-image:before {
 content: '';
 position: absolute;
 inset: 0;
 z-index: -1;
 background:
 linear-gradient(90deg, rgba(5,17,31,.58), rgba(5,17,31,.2) 46%, rgba(5,17,31,.05)),
 radial-gradient(circle at 72% 18%, rgba(255,255,255,.2), transparent 24%);
}

.swiper-buttons > div {
 border-radius: 8px;
 background: rgba(255,255,255,.92);
 box-shadow: var(--shadow-card);
}

.swiper-pagination-bullet {
 background: rgba(255,255,255,.78);
}

.swiper-pagination-bullet-active {
 background: var(--brand-3);
}

.trust-strip {
 background: #FFFFFF;
 border-bottom: 1px solid var(--base-border);
}

.trust-strip .container {
 border-left: 1px solid var(--base-border);
 border-right: 1px solid var(--base-border);
}

.trust-item {
 background: #FFFFFF;
}

.trust-item .fa {
 width: 38px;
 height: 38px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border-radius: 8px;
 background: var(--ui-2);
 color: var(--brand-1);
}

.marquee {
 background: #0F172A;
 color: #C8D1DC;
 border-bottom: 1px solid rgba(255,255,255,.08);
}

.marquee-inner i {
 color: #32C89A;
}

.section {
 padding: 64px 0;
}

.home-products.section-alt,
 .category-banners,
 .home-stats {
 background:
 linear-gradient(180deg, #F8FAFC, #F3F7FA);
}

.section-head {
 align-items: center;
 border-bottom: 1px solid var(--base-border);
 padding-bottom: 16px;
}

.section-title {
 position: relative;
 font-size: 26px;
 font-weight: 800;
}
.section-title .section-title-note { font-size: 13px; color: var(--footer-fg-2); font-weight: 500; }
.home-products--related { margin-top: 32px; }

.section-title.centered {
 margin-bottom: 28px;
}

.section-title.centered:after,
 .section-head .section-title:after,
 .intro-copy .section-title:after {
 content: '';
 display: block;
 width: 56px;
 height: 3px;
 margin-top: 12px;
 border-radius: 99px;
 background: var(--brand-gradient-bold);
}

.section-title.centered:after {
 margin-left: auto;
 margin-right: auto;
}

.see-all,
 .blog-more {
 color: var(--brand-1);
 font-family: var(--font-body);
 font-weight: 700;
}

.see-all:hover,
 .blog-more:hover {
 color: var(--brand-3);
}

.intro-grid {
 gap: 56px;
}

.intro-copy p,
 .blog-excerpt,
 .info-block p,
 .product-description {
 color: #5F6E7F;
}

.intro-card,
 .info-block,
 .stat-item,
 .well,
 .panel,
 .login-box,
 .account-panel,
 .about-rich-content .pip-about-hero,
 .about-rich-content .pip-storage-process {
 border-color: var(--base-border);
 border-radius: var(--radius-lg);
 background: #FFFFFF;
 box-shadow: var(--shadow-card);
}

.intro-card {
 position: relative;
 overflow: hidden;
 padding: 40px 32px;
}

.intro-card:before {
 content: '';
 position: absolute;
 inset: 0 0 auto;
 height: 4px;
 background: var(--brand-gradient-bold);
}

.years-num,
 .stat-num {
 color: var(--brand-1-dark);
}

.banner-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
}

.banner-card {
 min-height: 190px;
 border-radius: 10px;
 overflow: hidden;
 position: relative;
 background-size: cover;
 background-position: center;
 box-shadow: var(--shadow-card);
}

.banner-card:before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 linear-gradient(135deg, rgba(15,23,42,.82), rgba(0,87,184,.62)),
 rgba(15,23,42,.2);
}

.banner-card > span {
 position: relative;
 z-index: 1;
}

.banner-card:hover {
 box-shadow: var(--shadow-hover);
}

.banner-text-1 {
 font-size: 24px;
}

.banner-text-2 {
 font-size: 14.5px;
 opacity: .94;
}

.products-grid {
 gap: 26px;
}

.product-thumb {
 border-radius: 10px;
 border-color: rgba(218,225,234,.95);
 box-shadow: var(--shadow-card);
 overflow: hidden;
}

.product-thumb:hover {
 border-color: rgba(0,87,184,.38);
 box-shadow: var(--shadow-hover);
 transform: translateY(-4px);
}

.product-image,
 .product-thumb .image {
 background:
 radial-gradient(circle at 50% 35%, #FFFFFF 0, #FFFFFF 36%, #EEF3F7 100%);
}

.product-image a,
 .product-thumb .image a {
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 238px;
 padding: 18px;
}

.product-image img,
 .product-thumb .image img {
 width: auto;
 max-width: 100%;
 max-height: 220px;
 object-fit: contain;
 filter: drop-shadow(0 10px 16px rgba(17,24,39,.08));
}

.product-thumb .caption {
 padding: 18px;
}

.product-name,
 .product-thumb .caption h4,
 .product-thumb .name {
 min-height: 40px;
 font-size: 15px;
 font-weight: 700;
}

.product-name a,
 .product-thumb .caption h4 a,
 .product-thumb .name a {
 color: #142033;
}

.product-description,
 .product-thumb .description,
 .product-thumb .caption p:not(.price) {
 display: -webkit-box;
 min-height: 42px;
 overflow: hidden;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 2;
 line-clamp: 2;
 font-size: 12.8px;
}

.price,
 .product-thumb .price {
 color: var(--brand-1-dark);
 font-family: var(--font-display);
 font-size: 17px;
 font-weight: 800;
}

.price-old {
 color: #9AA5B1;
}

.wish-group .btn-link,
 .product-thumb .quickview-button .btn-quickview {
 border-radius: 8px;
 border: 1px solid rgba(226,232,239,.95);
 color: var(--brand-1);
}

.wish-group .btn-link:hover,
 .product-thumb .quickview-button .btn-quickview:hover {
 background: var(--brand-1);
 border-color: var(--brand-1);
 color: #FFFFFF;
}

.cart-group {
 gap: 10px;
}

.stepper {
 height: 42px;
 border-radius: 7px;
 border-color: var(--base-border);
}

.stepper input {
 height: 40px;
 font-weight: 700;
}

.stepper-btn {
 min-width: 34px;
 background: #F4F7FA;
}

.btn-cart {
 height: 42px;
 flex: 1 1 auto;
}

.product-list .product-thumb {
 border-radius: 10px;
}

.product-list .product-thumb .image {
 flex: 0 0 250px;
}

.listing-toolbar,
 #product-category #content > .row:first-of-type {
 margin-bottom: 18px;
}

.breadcrumb {
 padding: 18px 0 16px;
 color: #7B8794;
}

#product-category h2,
 #product-product h1,
 #checkout-cart h1,
 #account-login h1,
 .account-heading {
 font-weight: 800;
}

.nav-tabs > li > a {
 border-radius: 8px 8px 0 0;
}

.tab-content {
 border-radius: 0 0 10px 10px;
 box-shadow: var(--shadow-card);
}

#product-product .thumbnail,
 .img-thumbnail {
 border-radius: 10px;
 box-shadow: var(--shadow-card);
}

#product-product ul.thumbnails > li:first-child a.thumbnail {
 padding: 24px;
 background: radial-gradient(circle at 50% 36%, #FFFFFF 0, #FFFFFF 42%, #EEF3F7 100%);
}

.buybox {
 border-radius: 10px;
 border-color: var(--base-border);
 box-shadow: var(--shadow-card);
}

.buybox h1 {
 font-size: 26px;
 line-height: 1.25;
}

.buybox h2 {
 color: var(--brand-1-dark);
 font-weight: 800;
}

.buybox-note {
 border: 1px solid rgba(0,169,157,.2);
}

.table-responsive {
 border-radius: 10px;
 border: 1px solid var(--base-border);
 background: #FFFFFF;
 box-shadow: var(--shadow-card);
}

.table-responsive > .table,
 .table {
 margin-bottom: 0;
}

.table > thead > tr > th,
 .table > thead > tr > td {
 background: #F3F7FA;
 color: #4B5B6D;
}

.table-bordered,
 .table-bordered > thead > tr > th,
 .table-bordered > tbody > tr > td,
 .table-bordered > tfoot > tr > td {
 border-color: var(--base-border);
}

.alert {
 border-radius: 8px;
 box-shadow: var(--shadow-card);
}

.blog-card {
 border-radius: 10px;
 box-shadow: var(--shadow-card);
}

.blog-card:hover {
 box-shadow: var(--shadow-hover);
 transform: translateY(-4px);
}

.blog-image img {
 height: 210px;
}

.info-block {
 text-align: left;
}

.info-block i {
 width: 44px;
 height: 44px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border-radius: 10px;
 background: var(--ui-2);
 color: var(--brand-1);
}

.home-stats .stats-grid {
 max-width: 760px;
}

.stat-item {
 padding: 32px 24px;
}

.stat-stars {
 color: var(--star);
}

.site-footer {
 margin-top: 0;
 background: var(--footer-bg);
 color: var(--footer-fg-2);
}

.footer-disclaimer {
 background: #101B30;
 border-top: 1px solid var(--footer-border);
 border-bottom: 1px solid var(--footer-border);
}

.disclaimer-box {
 border-radius: 10px;
 border: 1px solid var(--footer-border);
 background: rgba(255,255,255,.04);
}

.footer-main {
 background:
 radial-gradient(circle at 12% 0, rgba(0,87,184,.24), transparent 28%),
 var(--footer-bg);
}

.footer-col h4,
 .footer-bottom a:hover {
 color: #FFFFFF;
}

.newsletter-input {
 border-radius: 8px;
}

.footer-bottom {
 background: #0B1220;
 border-top: 1px solid var(--footer-border);
}

#scroll-top {
 border-radius: 8px;
 background: var(--brand-gradient-bold);
}

@media (max-width: 1199px) {
 .main-menu {
 justify-content: flex-start;
 overflow-x: auto;
 scrollbar-width: thin;
 }

 .main-menu > li > a {
 white-space: nowrap;
 }
}

@media (max-width: 991px) {
 .site-header {
 position: relative;
 }

 .header-mid {
 gap: 16px;
 }

 .header-links {
 gap: 4px;
 }

 .top-features-bar .tf-item {
 justify-content: center;
 }

 .trust-item:nth-child(-n+2) {
 border-top: 0;
 }

 .product-image a,
 .product-thumb .image a {
 min-height: 220px;
 }
}

@media (max-width: 767px) {
 body {
 font-size: 14px;
 }

 .container {
 padding-left: 14px;
 padding-right: 14px;
 }

 .top-features-bar .tf-grid {
 align-items: stretch;
 }

 .top-features-bar .tf-item {
 justify-content: flex-start;
 padding-left: 4px;
 padding-right: 4px;
 }

 .header-mid .logo-wrap img {
 max-height: 54px;
 }

 .header-link {
 min-width: 44px;
 padding: 7px;
 }

 #search {
 height: 46px;
 }

 #search input.search-input {
 height: 44px;
 }

 #search .search-button {
 width: 50px;
 }

 .section {
 padding: 42px 0;
 }

 .section-head {
 align-items: flex-start;
 flex-direction: column;
 gap: 10px;
 }

 .section-title {
 font-size: 22px;
 }

 .banner-grid,
 .products-grid,
 .info-grid,
 .home-blog .blog-grid,
 .home-stats .stats-grid {
 grid-template-columns: 1fr;
 }

 .banner-card {
 min-height: 170px;
 }

 .product-image a,
 .product-thumb .image a {
 min-height: 210px;
 }

 .product-list .product-thumb,
 .cart-group {
 flex-direction: column;
 }

 .product-list .product-thumb .image {
 flex-basis: auto;
 }

 .stepper,
 .btn-cart {
 width: 100%;
 }

 .stepper input {
 flex: 1 1 auto;
 }

 #cart > .dropdown-menu {
 width: calc(100vw - 28px);
 max-width: calc(100vw - 28px);
 }

 .buttons .pull-left,
 .buttons .pull-right {
 float: none !important;
 width: 100%;
 }

 .buttons .btn {
 width: 100%;
 margin: 6px 0 0 !important;
 }
}

@media (prefers-reduced-motion: reduce) {
 *,
 *:before,
 *:after {
 animation-duration: .01ms !important;
 animation-iteration-count: 1 !important;
 scroll-behavior: auto !important;
 transition-duration: .01ms !important;
 }
}

/* Home page age/research-use popup */
.pip-age-popup {
 position: fixed;
 inset: 0;
 z-index: 99999;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 28px 18px;
 background:
 radial-gradient(circle at 50% 34%, rgba(255,255,255,.86), rgba(233,240,255,.8) 38%, rgba(219,229,255,.98) 100%),
 #DFE8FF;
}

.pip-age-popup[hidden] {
 display: none;
}

.pip-age-popup__panel {
 width: min(900px, 100%);
 max-height: calc(100vh - 56px);
 overflow-y: auto;
 text-align: center;
 color: #050505;
 padding: 42px 38px 56px;
}

.pip-age-popup__brand {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 34px;
 margin: 0 auto 58px;
 color: #005889;
}

.pip-age-popup__icon {
 position: relative;
 display: block;
 width: 168px;
 height: 150px;
 flex: 0 0 auto;
}

.pip-age-popup__head {
 position: absolute;
 left: 18px;
 top: 4px;
 width: 132px;
 height: 132px;
 border-radius: 50% 48% 40% 44%;
 background: #005889;
}

.pip-age-popup__head:before {
 content: '';
 position: absolute;
 right: -28px;
 top: 48px;
 width: 54px;
 height: 64px;
 background: #005889;
 clip-path: polygon(0 0, 100% 42%, 34% 100%, 0 88%);
}

.pip-age-popup__head:after {
 content: '';
 position: absolute;
 left: 24px;
 bottom: -22px;
 width: 82px;
 height: 70px;
 background: #005889;
 clip-path: polygon(0 0, 88% 0, 100% 100%, 18% 90%);
}

.pip-age-popup__brain {
 position: absolute;
 left: 39px;
 top: 24px;
 z-index: 2;
 width: 92px;
 height: 58px;
 border-radius: 44px;
 background: #FFD7E7;
}

.pip-age-popup__brain:before,
.pip-age-popup__brain:after {
 content: '';
 position: absolute;
 top: 10px;
 width: 54px;
 height: 46px;
 border-radius: 50%;
 background: #FFD7E7;
}

.pip-age-popup__brain:before {
 left: -10px;
}

.pip-age-popup__brain:after {
 right: -10px;
}

.pip-age-popup__heart {
 position: absolute;
 left: 62px;
 top: 44px;
 z-index: 3;
 width: 48px;
 height: 48px;
 background: linear-gradient(135deg, #C53191, #FF6AA9);
 transform: rotate(45deg);
}

.pip-age-popup__heart:before,
.pip-age-popup__heart:after {
 content: '';
 position: absolute;
 width: 48px;
 height: 48px;
 border-radius: 50%;
 background: inherit;
}

.pip-age-popup__heart:before {
 left: -24px;
 top: 0;
}

.pip-age-popup__heart:after {
 left: 0;
 top: -24px;
}

.pip-age-popup__wordmark {
 display: grid;
 gap: 10px;
 text-align: left;
 color: #005889;
 font: 800 72px/0.92 Arial, Helvetica, sans-serif;
 letter-spacing: 14px;
 text-shadow: 0 2px 4px rgba(0,88,137,.14);
}

.pip-age-popup__text {
 max-width: 790px;
 margin: 0 auto 58px;
 color: #050505;
 font: 400 45px/1.72 Arial, Helvetica, sans-serif;
 letter-spacing: 0;
}

.pip-age-popup__question {
 margin: 0 0 34px;
 color: #050505;
 font: 400 36px/1.3 Arial, Helvetica, sans-serif;
}

.pip-age-popup__actions {
 display: flex;
 justify-content: center;
 gap: 26px;
}

.pip-age-popup__button {
 min-width: 232px;
 height: 102px;
 border: 0;
 border-radius: 8px;
 background: linear-gradient(135deg, #3E3E3E, #202020);
 color: #FFFFFF;
 font: 700 36px/1 Arial, Helvetica, sans-serif;
 box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 7px 16px rgba(0,0,0,.18);
 cursor: pointer;
 transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.pip-age-popup__button:hover,
.pip-age-popup__button:focus {
 background: linear-gradient(135deg, #4A4A4A, #252525);
 box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 10px 20px rgba(0,0,0,.2);
 transform: translateY(-1px);
 outline: none;
}

body.pip-age-popup-open {
 overflow: hidden;
}

@media (max-width: 900px) {
 .pip-age-popup__panel {
 padding: 34px 20px 42px;
 }

 .pip-age-popup__brand {
 gap: 20px;
 margin-bottom: 34px;
 }

 .pip-age-popup__icon {
 width: 116px;
 height: 102px;
 transform: scale(.72);
 transform-origin: center;
 margin: -14px -18px;
 }

 .pip-age-popup__wordmark {
 font-size: 42px;
 letter-spacing: 9px;
 }

 .pip-age-popup__text {
 font-size: 28px;
 line-height: 1.64;
 margin-bottom: 36px;
 }

 .pip-age-popup__question {
 font-size: 24px;
 margin-bottom: 24px;
 }

 .pip-age-popup__button {
 min-width: 150px;
 height: 70px;
 font-size: 24px;
 }
}

@media (max-width: 560px) {
 .pip-age-popup {
 padding: 14px;
 align-items: flex-start;
 }

 .pip-age-popup__panel {
 max-height: calc(100vh - 28px);
 padding: 24px 10px 32px;
 }

 .pip-age-popup__brand {
 flex-direction: column;
 gap: 14px;
 margin-bottom: 24px;
 }

 .pip-age-popup__wordmark {
 text-align: center;
 font-size: 34px;
 letter-spacing: 6px;
 }

 .pip-age-popup__text {
 font-size: 22px;
 line-height: 1.56;
 margin-bottom: 28px;
 }

 .pip-age-popup__question {
 font-size: 21px;
 }

 .pip-age-popup__actions {
 gap: 14px;
 }

 .pip-age-popup__button {
 min-width: 0;
 width: 138px;
 height: 62px;
 font-size: 21px;
 }
}

/* Hide Bundles menu and banner (module disabled) */
.main-menu a[href*="bundles"] { display: none !important; }
.main-menu li a[href*="product/bundles"] { display: none !important; }
.banner-bundles { display: none !important; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #25D36E;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #0B1220;
}
.whatsapp-float i { font-size: 36px; }

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
/* =========================================================================
   FIX — "#by the numbers" home stats section
   The refinement layer restyled .stat-item cards as white cards with a
   shadow, but the earlier base rule's `color: #fff` was never reset, which
   left the stat labels (5 Star Average Reviews / Years on the Market)
   white-on-white and effectively invisible.  Restore readable, on-brand
   text on the white cards.
   ========================================================================= */
.home-stats .stat-item {
  color: var(--base-fg-2);
}

.home-stats .stat-item .stat-num {
  color: var(--brand-1-dark);
}

.home-stats .stat-item .stat-stars {
  color: var(--star);
}

.home-stats .stat-item .stat-label {
  color: var(--base-fg-2);
}

/* Equal-height cards, nice breathing room on mobile */
.home-stats .stats-grid {
  align-items: stretch;
}
.home-stats .stat-item {
  justify-content: center;
}

/* =========================================================================
   UI POLISH PASS — typography, consistency & accessibility (structure only)
   No color/brand tokens altered; only existing design tokens are referenced.
   ========================================================================= */

 /* 1. Typography tokens are now defined once, in the base :root (see top of file). */

 /* 2. Accessible, consistent focus ring (uses existing brand token, no new colors) */
:focus-visible {
  outline: 2px solid var(--brand-1);
  outline-offset: 2px;
  border-radius: inherit;
}
a:focus-visible,
.btn:focus-visible,
.header-link:focus-visible,
.product-thumb:focus-visible,
.main-menu > li > a:focus-visible {
  outline-offset: 3px;
}

/* 3. Consistent page-title treatment. Most content pages use a bare <h1>
      (no .page-title class); unify them with the polished pages so every
      page heading shares the same display face, weight and rhythm. */
.page-title,
#content h1:not(.product-page-title):not(.faq-title):not(.info-content h1) {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--base-fg);
  margin: 0 0 20px;
  font-size: 28px;
}
h2.page-title { font-size: 24px; }
@media (max-width: 767px) {
  .page-title,
  h2.page-title,
  #content h1:not(.product-page-title):not(.faq-title) {
    font-size: 21px;
    margin-bottom: 16px;
  }
}

/* 4. Content rhythm — keep the footer from crowding short CMS/account pages */
.container #content { padding-bottom: 56px; }
@media (max-width: 767px) {
  .container #content { padding-bottom: 40px; }
}

/* 5. Product comparison table — sticky label column + cleaner mobile scroll */
.compare-table { -webkit-overflow-scrolling: touch; }
.compare-table table { min-width: 640px; }
.compare-table table > tbody > tr > td:first-child,
.compare-table table > thead > tr > td:first-child,
.compare-table table > tbody > tr > th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--white);
  box-shadow: 1px 0 0 var(--base-border);
  font-weight: 600;
  color: var(--base-fg);
  min-width: 140px;
  vertical-align: top;
}
.compare-table table > thead > tr > td:first-child { background: var(--base-bg-2); }


/* =========================================================================
   Powered In Peptides — theme extension layer
   Loaded after poweredin.css. Adds: semantic tokens, peptide
   icon system, homepage components, PDP upgrades, listing upgrades,
   condensed header + mega menu, mobile bottom nav, shared trust component.
   ========================================================================= */

/* ---------- 1. Extended design tokens ---------- */
:root {
  --success: #00A99D;
  --success-bg: #E4F4EF;
  --warning: #B7791F;
  --warning-bg: #FBF1DD;
  --info: #0057B8;
  --info-bg: #E7F2F6;
  --danger-bg: #FBEAE8;
  --lowstock: #B7791F;
  --bestseller: #092A5B;

  --surface: #FFFFFF;
  --surface-2: #F6F8FB;
  --surface-3: #EEF3F7;
  --surface-border: #E3E8EF;
  --text-strong: #111827;
  --text: #374151;
  --text-muted: #5E6B7A;

  --coa: #00A99D;
  --coa-bg: #E4F4EF;
  --cold: #0057B8;
  --cold-bg: #E7F2F6;
  --purity: #092A5B;
  --purity-bg: #EAEEF7;

  --header-h: 132px;
  --header-h-condensed: 64px;
  --bottom-nav-h: 56px;
  --z-bottom-nav: 980;
  --z-sticky-bar: 970;
  --z-header: 990;
}

/* ---------- 2. Peptide icon system ---------- */
.pn-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.145em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.pn-icon--lg { width: 1.6em; height: 1.6em; }
.pn-icon--boxed {
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: var(--ui-2);
  color: var(--brand-1);
}
.pn-icon--coa { color: var(--coa); background: var(--coa-bg); }
.pn-icon--cold { color: var(--cold); background: var(--cold-bg); }
.pn-icon--purity { color: var(--purity); background: var(--purity-bg); }
.pn-icon--research { color: var(--brand-3); background: var(--info-bg); }

/* ---------- 4. Shared research-use disclaimer component ---------- */
.research-disclaimer {
  background: var(--info-bg);
  border: 1px solid color-mix(in srgb, var(--brand-1) 24%, transparent);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text);
}
.research-disclaimer .pn-icon { color: var(--brand-1); margin-top: 1px; }
.research-disclaimer b { color: var(--text-strong); }
.research-disclaimer--bar {
  margin: 0;
  border-radius: 0;
  border-left: 0; border-right: 0; border-top: 0;
  justify-content: center;
  text-align: center;
}
.research-disclaimer--bar .rd-inner { max-width: 1100px; }

/* ---------- 5. Hero rotating trust strip ---------- */
.hero-trust {
  background: var(--brand-gradient-header);
  color: #fff;
}
.hero-trust__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  list-style: none;
  margin: 0;
}
.hero-trust__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  opacity: .96;
}
.hero-trust__item .pn-icon { color: #CFE9F1; font-size: 18px; }
.hero-trust__item strong { font-weight: 700; }
.hero-trust__item[hidden] { display: none; }
.hero-trust__item.is-active { animation: htFade .5s ease; }
@keyframes htFade { from { opacity: 0; transform: translateY(4px); } to { opacity: .96; transform: none; } }

/* ---------- 6. How it works ---------- */
.how-it-works { background: var(--surface-2); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.how-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.how-step__num {
  counter-increment: step;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-gradient-bold);
  color: #fff;
  font: 700 16px/1 var(--font-display);
  margin-bottom: 14px;
}
.how-step__num::before { content: counter(step); }
.how-step__icon { position: absolute; top: 24px; right: 22px; color: var(--brand-1); font-size: 22px; }
.how-step h4 { font: 700 17px/1.3 var(--font-display); color: var(--text-strong); margin: 0 0 6px; }
.how-step p { margin: 0; font-size: 13.5px; color: var(--text-muted); }

/* ---------- 7. Category tiles (hover) ---------- */
.banner-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  text-decoration: none;
}
.banner-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,67,.05), rgba(15,42,67,.72));
  z-index: -1;
  transition: transform .4s ease;
}
.banner-card:hover::after { transform: scale(1.06); }
.banner-card .banner-text-1 { font: 700 19px/1.2 var(--font-display); }
.banner-card .banner-text-2 { font-size: 13px; opacity: .9; margin-top: 4px; }
.banner-card .banner-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  transform: translateY(-6px); opacity: 0;
  transition: .25s ease;
}
.banner-card:hover .banner-arrow { transform: none; opacity: 1; }
.banner-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- 8. Product badges + quick view ---------- */
.product-labels { top: 10px; left: 10px; z-index: 3; }
.product-label { display: inline-block; padding: 3px 9px; border-radius: 999px; font: 700 10.5px/1 var(--font-body); letter-spacing: .3px; }
.label-new { background: var(--brand-1); color: #fff; }
.label-bestseller { background: var(--bestseller); color: #fff; }
.label-lowstock { background: var(--warning-bg); color: var(--warning); border: 1px solid color-mix(in srgb, var(--warning) 35%, transparent); }
.label-fast { background: var(--accent-hot); color: #fff; }
.product-thumb .coa-flag {
  position: absolute; bottom: 10px; left: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.92); color: var(--coa);
  padding: 4px 9px; border-radius: 999px; font: 700 10.5px/1 var(--font-body);
}
.product-thumb .coa-flag .pn-icon { font-size: 13px; }
.quick-view {
  position: absolute; left: 50%; bottom: 12px; z-index: 4;
  transform: translate(-50%, 14px);
  border: 0; cursor: pointer;
  background: var(--brand-1); color: #fff;
  padding: 9px 16px; border-radius: 999px;
  font: 600 12.5px/1 var(--font-body);
  display: inline-flex; align-items: center; gap: 7px;
  opacity: 0; transition: .22s ease; box-shadow: var(--shadow-1);
}
.quick-view .pn-icon { font-size: 15px; }
.image-group:hover .quick-view { opacity: 1; transform: translate(-50%, 0); }
.product-thumb:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* ---------- 9. Animated stats ---------- */
.home-stats .stat-num { font: 800 40px/1 var(--font-display); color: var(--brand-1); }
.home-stats .stat-label { display: block; margin-top: 6px; color: var(--text-muted); font-size: 13px; }

/* ---------- 10. Blog reading time ---------- */
.blog-card .blog-meta { display: flex; gap: 14px; align-items: center; color: var(--text-muted); font-size: 12px; margin-bottom: 6px; }
.blog-card .blog-reading { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- 11. Product page: purity/COA/badges + sticky bar + COA viewer ---------- */
.product-coa-bar {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0;
}
.coa-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--surface-border);
  font: 600 12.5px/1 var(--font-body); color: var(--text);
}
.coa-pill .pn-icon { font-size: 16px; }
.coa-pill--coa { color: var(--coa); background: var(--coa-bg); border-color: transparent; }
.coa-pill--purity { color: var(--purity); background: var(--purity-bg); border-color: transparent; }
.coa-pill--cold { color: var(--cold); background: var(--cold-bg); border-color: transparent; }

.product-batch {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  background: var(--surface-2); border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 12px 14px; margin: 12px 0;
}
.product-batch label { font-weight: 600; font-size: 13px; color: var(--text-strong); }
.product-batch input {
  flex: 1; min-width: 160px; height: 38px; padding: 0 12px;
  border: 1px solid var(--surface-border); border-radius: 7px;
  background: var(--surface); color: var(--text);
}
.product-batch button { height: 38px; }

.product-sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky-bar);
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  box-shadow: 0 -8px 28px rgba(17,24,39,.12);
  transform: translateY(110%);
  transition: transform .28s ease;
  display: none;
}
.product-sticky-bar.is-visible { transform: none; }
.product-sticky-bar__inner {
  display: flex; align-items: center; gap: 14px;
  max-width: var(--content-max-width, 1170px); margin: 0 auto;
  padding: 10px 18px;
}
.product-sticky-bar__title { font-weight: 700; font-size: 14px; color: var(--text-strong); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-sticky-bar__price { font: 800 16px/1 var(--font-display); color: var(--brand-1); }
.product-sticky-bar .btn-buy { height: 42px; }

.coa-panel {
  margin: 22px 0;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.coa-panel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--surface-border);
}
.coa-panel__head .pn-icon { font-size: 22px; color: var(--coa); }
.coa-panel__head h3 { margin: 0; font: 700 16px/1.2 var(--font-display); color: var(--text-strong); }
.coa-panel__head .coa-actions { margin-left: auto; display: flex; gap: 8px; }
.coa-panel__viewer {
  display: grid; grid-template-columns: 1fr 280px; min-height: 260px;
}
.coa-panel__doc {
  background: var(--surface-2);
  display: grid; place-items: center; padding: 18px;
  border-right: 1px solid var(--surface-border);
}
.coa-panel__doc iframe, .coa-panel__doc embed { width: 100%; height: 60vh; max-height: 520px; border: 0; border-radius: 8px; background: #fff; }
.coa-panel__empty { text-align: center; color: var(--text-muted); font-size: 13px; padding: 40px; }
.coa-panel__sidebar { padding: 16px 18px; }
.coa-panel__row { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--surface-border); font-size: 13px; }
.coa-panel__row:last-child { border-bottom: 0; }
.coa-panel__row span { color: var(--text-muted); }
.coa-panel__row b { color: var(--text-strong); }
.coa-panel__row b.ok { color: var(--success); }

@media (max-width: 767px) {
  .coa-panel__viewer { grid-template-columns: 1fr; }
  .coa-panel__doc { border-right: 0; border-bottom: 1px solid var(--surface-border); }
  .coa-panel__doc iframe, .coa-panel__doc embed { height: 42vh; }
}

/* ---------- 12. Listing: sticky sidebar + filter chips ---------- */
 .listing-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
 .listing-layout--flush { grid-template-columns: 1fr; }
 .listing-layout--flush > .listing-sidebar,
 .listing-layout--flush > .listing-sidebar__backdrop { display: none; }
 .listing-sidebar { position: sticky; top: calc(var(--header-h-condensed) + 12px); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--surface-border); background: var(--surface);
  color: var(--text); font: 600 12.5px/1 var(--font-body); cursor: pointer;
}
.filter-chip.is-on { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }
.filter-chip .pn-icon { font-size: 14px; }
.filter-chip__x { opacity: .6; }
.filter-group { margin-bottom: 18px; }
.filter-group h4 { font: 700 13px/1 var(--font-body); text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin: 0 0 10px; }
.filter-group label { display: flex; align-items: center; gap: 9px; padding: 6px 0; font-size: 13.5px; color: var(--text); cursor: pointer; }
.filter-group input { accent-color: var(--brand-1); }
.sidebar-toggle {
  display: none; width: 100%; margin-bottom: 14px;
  border: 1px solid var(--surface-border); background: var(--surface);
  color: var(--text-strong); font-weight: 600; height: 44px; border-radius: 8px;
}
@media (max-width: 991px) {
  .listing-layout { grid-template-columns: 1fr; }
  .sidebar-toggle { display: flex; align-items: center; justify-content: center; gap: 8px; }
  .listing-sidebar {
    position: fixed; inset: 0 30% 0 0; z-index: var(--z-header);
    background: var(--surface); padding: 20px; overflow: auto;
    transform: translateX(-105%); transition: transform .28s ease;
    box-shadow: var(--shadow-2);
  }
  .listing-sidebar.is-open { transform: none; }
  .listing-sidebar__backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: calc(var(--z-header) - 1); }
  .listing-sidebar.is-open + .listing-sidebar__backdrop,
  .listing-sidebar__backdrop.is-open { display: block; }
}

/* ---------- 13. Condensed sticky header ---------- */
.site-header { transition: box-shadow .2s ease, transform .25s ease; }
.site-header.is-condensed { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header); box-shadow: var(--shadow-1); }
.site-header.is-condensed .top-features-bar,
.site-header.is-condensed .top-strip { display: none; }
body.header-condensed { padding-top: var(--header-h-condensed); }
.header-offset-spacer { height: var(--header-h-condensed); }

/* mega menu (use-case grouped) */
.main-menu-bar { position: relative; }
.main-menu > li.has-mega { position: static; }
.main-menu .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--surface); border-top: 1px solid var(--surface-border);
  box-shadow: var(--shadow-2); padding: 22px 0; display: none; z-index: 50;
}
.main-menu > li.has-mega:hover .mega-menu,
.main-menu > li.has-mega:focus-within .mega-menu { display: block; }
.mega-menu__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
.mega-menu__col h5 { font: 700 12px/1 var(--font-body); text-transform: uppercase; letter-spacing: .5px; color: var(--brand-1); margin: 0 0 10px; display: flex; align-items: center; gap: 7px; }
.mega-menu__col h5 .pn-icon { color: var(--brand-1); font-size: 15px; }
.mega-menu__col a { display: flex; align-items: center; gap: 9px; padding: 5px 0; color: var(--text); font-size: 13.5px; }
.mega-menu__col a .pn-icon { color: var(--slate-soft); font-size: 15px; }
.mega-menu__col a:hover { color: var(--brand-1); }
.mega-menu__col a:hover .pn-icon { color: var(--brand-1); }
.mega-menu__col .mm-tag { font-size: 10.5px; color: var(--coa); margin-left: 6px; }

/* ---------- 14. Mobile bottom nav ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-bottom-nav);
  height: var(--bottom-nav-h);
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  box-shadow: 0 -4px 18px rgba(17,24,39,.12);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--text-muted); font-size: 10.5px; text-decoration: none; position: relative;
}
.mobile-bottom-nav a .pn-icon { font-size: 21px; }
.mobile-bottom-nav a.is-active { color: var(--brand-1); }
.mobile-bottom-nav .count-badge {
  position: absolute; top: 6px; right: 50%; margin-right: -18px;
  background: var(--accent-sale); color: #fff; border-radius: 999px;
  min-width: 16px; height: 16px; padding: 0 4px; font-size: 10px; line-height: 16px; text-align: center;
}
@media (max-width: 767px) {
  .mobile-bottom-nav { display: flex; }
  .product-sticky-bar { display: block; bottom: var(--bottom-nav-h); }
  body { padding-bottom: calc(var(--bottom-nav-h)); }
  .hero-trust__list { gap: 6px 16px; padding: 9px 0; }
  .how-steps { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: calc(var(--bottom-nav-h) + 12px); }
}

/* ---------- 15. Accessibility + SEO helpers ---------- */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 1000;
  background: var(--brand-1); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; text-decoration: none; }
.text-contrast-strong { color: var(--text-strong); }
img.lazy { opacity: 0; transition: opacity .3s ease; }
img.lazy.loaded { opacity: 1; }
.pn-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- 16. Search autocomplete ---------- */
#search { position: relative; }
.search-autocomplete {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-2); max-height: 440px; overflow: auto; display: none;
}
.search-autocomplete.is-open { display: block; }
.search-ac-item { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--surface-border); text-decoration: none; }
.search-ac-item:last-child { border-bottom: 0; }
.search-ac-item:hover { background: var(--surface-2); }
.search-ac-thumb { width: 46px; height: 46px; object-fit: contain; background: var(--surface-2); border-radius: 6px; flex: none; }
.search-ac-name { flex: 1; min-width: 0; font-size: 13.5px; color: var(--text-strong); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-ac-price { font-family: var(--font-mono); font-weight: 600; color: var(--brand-1); font-size: 13px; white-space: nowrap; }
.search-ac-empty { padding: 14px; color: var(--text-muted); font-size: 13px; }

/* 
   12. Cart / checkout / account      — tables, panels, login, dashboard
   13. Theme extension layer (bottom) — semantic tokens, icons, COA, bottom-nav,
                                       condensed header, age gate, search autocomplete
   14. Utilities, polish & responsive — helpers, focus ring, breakpoints
   ========================================================================= */


   /* =========================================================================
   Powered In Peptides — REDESIGN layer
   Loaded last. Implements the reference design: white header with single
   nav row, light-blue hero, 4-up feature bar, peptide range carousel,
   why-choose grid, dark gradient CTA banner, simplified 4-column footer.
   ========================================================================= */

:root {
  /* Brand */
  --pn2-blue: #0057B8;        /* Primary Blue */
  --pn2-blue-dark: #062B63;    /* Primary Navy */
  --pn2-blue-light: #0074D9;   /* Bright Blue */
  --pn2-navy: #092A5B;        /* Heading Text / dark navy */
  --pn2-teal: #00A99D;        /* Teal */
  --pn2-teal-light: #19B89A;  /* Accent Green */
  /* Gradients */
  --pn2-gradient: linear-gradient(90deg, #0057B8 0%, #00A99D 100%);
  --pn2-gradient-hero: linear-gradient(120deg, #EAF3FF 0%, #DCEBFF 55%, #CFE6FF 100%);
  --pn2-gradient-cta: linear-gradient(90deg, #003C68 0%, #00517D 55%, #007E91 100%);
  --pn2-gradient-cta-hover: linear-gradient(90deg, #004A9F 0%, #008F83 100%);
  /* Text */
  --pn2-text: #26364A;        /* Body Text */
  --pn2-text-light: #667085;  /* Muted Text */
  /* Backgrounds & borders */
  --pn2-border: #DCE5EF;
  --pn2-surface: #F7FAFE;     /* Light Background */
  --pn2-surface-blue: #EEF6FF;/* Very Light Blue */
  --pn2-radius: 14px;
  --pn2-shadow: 0 10px 30px rgba(9, 42, 91, .08);
  
  /* Transition speed */
  --speed: 0.22s;
  --radius-pill: 999px;
  --gutter-x: 18px;
  --content-max-width: 1170px;
}

/* Wider layout: trim horizontal padding and raise content width caps */
.container {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1200px) {
  .container { width: auto; max-width: 1480px; }
  :root { --content-max-width: 1480px; }
}
@media (min-width: 1500px) {
  .container { max-width: 1680px; }
  :root { --content-max-width: 1680px; }
}
@media (min-width: 1800px) {
  .container { max-width: 1860px; }
  :root { --content-max-width: 1860px; }
}

.pn2-home, .pn2-header, .pn2-footer { font-family: 'Inter', -apple-system, sans-serif; }

/* ---------- Buttons ---------- */
.pn2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.pn2-btn:hover { transform: translateY(-2px); text-decoration: none; }
.pn2-btn--primary {
  background: var(--pn2-gradient);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(0, 87, 184, .28);
}
.pn2-btn--primary:hover {
  background: linear-gradient(90deg, #004A9F 0%, #008F83 100%);
  box-shadow: 0 14px 30px rgba(0, 87, 184, .36);
  color: #fff;
}
.pn2-btn--outline {
  background: #fff;
  color: var(--pn2-navy);
  border-color: var(--pn2-teal);
}
.pn2-btn--outline:hover { background: var(--pn2-teal); color: #fff; border-color: var(--pn2-teal); }
.pn2-btn--light {
  background: var(--pn2-gradient);
  color: #fff;
}
.pn2-btn--light:hover { background: linear-gradient(90deg, #004A9F 0%, #008F83 100%); color: #fff; }

/* Dark button variant (bottom CTA) */
.pn2-btn--dark {
  background: #003C68;
  color: #fff;
  border: 1px solid #003C68;
}
.pn2-btn--dark:hover { background: #004A9F; border-color: #004A9F; color: #fff; }

/* ---------- Header ---------- */
.pn2-header {
  background: #fff;
  border-bottom: 1px solid var(--pn2-border);
  position: relative;
  z-index: 500;
}
.pn2-header__row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.pn2-header__logo { flex: none; }
.pn2-header__logo img { height: 55px; width: auto; display: block; }
.pn2-header__logo .logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--pn2-navy); }
.pn2-header__logo .logo-text span { color: var(--pn2-blue); }

.pn2-header__nav { flex: 1; }
.pn2-header__nav .main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.pn2-header__nav .main-menu > li { position: relative; }
.pn2-header__nav .main-menu > li > a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--pn2-navy);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.pn2-header__nav .main-menu > li > a:hover { color: var(--pn2-blue); border-bottom-color: var(--pn2-blue); }
.pn2-header__nav .main-menu > li.has-mega > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: 2px;
}

.pn2-header__icons {
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pn2-header__icon {
  border: none;
  background: none;
  color: var(--pn2-navy);
  font-size: 17px;
  cursor: pointer;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s ease, color .15s ease;
}
.pn2-header__icon:hover { background: var(--pn2-surface); color: var(--pn2-blue); }
.pn2-header__icons .dropdown-menu { right: 0; left: auto; }
.pn2-header__icons #cart, .pn2-header__icons .btn-cart-header { color: var(--pn2-navy); }
.pn2-header__icons > .btn-block, .pn2-header__icons .dropdown > a { text-decoration: none; }

.pn2-header__search-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--pn2-surface);
  transition: max-height .25s ease;
}
.pn2-header__search-panel.open { max-height: 90px; padding: 14px 0; }
.pn2-header__search-panel .container { display: flex; }

/* hide legacy header chrome not part of the reference design */
.top-strip, .top-features-bar, .site-header { display: none !important; }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--pn2-navy);
}
@media (max-width: 991px) {
  .pn2-header__nav .main-menu { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .pn2-header__row { gap: 14px; }
}

/* ---------- Section basics ---------- */
.pn2-section-head { text-align: center; margin-bottom: 34px; }
.pn2-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--pn2-navy);
  letter-spacing: .2px;
  margin: 0 0 8px;
}
.pn2-section-title--center { text-align: center; }
.pn2-section-sub { color: var(--pn2-text-light); font-size: 15px; margin: 0; }
.pn2-home section.section { padding: 64px 0; }

/* ---------- Hero ---------- */
.pn2-hero {
  background: var(--pn2-gradient-hero);
  padding: 56px 0 44px;
  overflow: hidden;
}
.pn2-hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.pn2-hero__copy { flex: 0 0 46%; max-width: 46%; }
.pn2-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pn2-blue);
  margin-bottom: 16px;
}
.pn2-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.14;
  color: var(--pn2-navy);
  margin: 0 0 18px;
}
.pn2-hero__title span { color: var(--pn2-teal); }
.pn2-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--pn2-text);
  max-width: 440px;
  margin: 0 0 28px;
}
.pn2-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.pn2-hero__disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--pn2-text-light);
  line-height: 1.4;
}
.pn2-hero__disclaimer i {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pn2-blue);
  box-shadow: var(--pn2-shadow);
}

.pn2-hero__art { flex: 1; min-width: 0; }
.pn2-hero__vials {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 20px 10px;
}
.pn2-hero__banner-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0px 10px rgba(11, 33, 72, .18);
  object-fit: contain;
}

.pn2-why-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.pn2-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pn2-section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #0b2545;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.pn2-why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.pn2-why__item {
  flex: 1;
  min-width: 160px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Vertical Divider Lines between items */
.pn2-why__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #e2e8f0;
}

.pn2-why__icon {
  font-size: 38px;
  color: #1a56db;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.pn2-why__heading {
  font-size: 13px;
  font-weight: 700;
  color: #0b2545;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.pn2-why__item p {
  font-size: 13px;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* Mobile & Tablet Responsive Handling */
@media (max-width: 992px) {
  .pn2-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }
  .pn2-why__item:not(:last-child)::after {
    display: none;
  }
  .pn2-why__item {
    border-right: 1px solid #e2e8f0;
  }
  .pn2-why__item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .pn2-why__grid {
    grid-template-columns: 1fr;
  }
  .pn2-why__item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .pn2-why__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}
.pn2-vial-card {
  background: transparent;
  border-radius: 16px;
  padding: 14px 12px 16px;
  width: 22%;
  box-shadow: none;
  text-align: center;
}
.pn2-vial-card--tall { transform: translateY(-14px); }
.pn2-vial-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  background: transparent;
}
.pn2-vial-card:not(:has(img)) { min-height: 220px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; }
.pn2-vial-name {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pn2-navy);
  line-height: 1.25;
}
@media (max-width: 991px) {
  .pn2-hero__inner { flex-direction: column; }
  .pn2-hero__copy, .pn2-hero__art { flex: none; max-width: 100%; }
  .pn2-hero__title { font-size: 34px; }
}

/* ---------- Hero v2 (mini features + floating bottom bar) ---------- */
.pn2-hero--v2 { position: relative; padding-bottom: 0; }
.pn2-hero--v2 .pn2-hero__inner { padding-bottom: 56px; }
.pn2-hero--v2 .pn2-hero__art { position: relative; }
.pn2-hero--v2 .pn2-hero__vials { position: relative; z-index: 2; }
.pn2-hero--v2 .pn2-hero__art::before {
  content: "";
  position: absolute;
  inset: -56px -40px -56px 10%;
  background: url('../../../../../image/catalog/banner/pip-main-banner-bg1-1037x566.png') center/cover no-repeat;
  opacity: 0.26;
  z-index: 1;
}

.pn2-hero__mini-features {
  display: flex;
  gap: 26px;
  margin: 8px 0 26px;
  flex-wrap: wrap;
}
.pn2-mini-feature { display: flex; align-items: flex-start; gap: 10px; max-width: 190px; }
.pn2-mini-feature__icon {
  flex: none;
  color: var(--pn2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
}
.pn2-mini-feature__icon--teal { color: var(--pn2-teal); }
.pn2-mini-feature b {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--pn2-navy);
  margin-bottom: 3px;
}
.pn2-mini-feature p { margin: 0; font-size: 11.5px; line-height: 1.4; color: var(--pn2-text-light); }

.pn2-hero__floatbar {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  padding-bottom: 46px;
}
.pn2-floatbar__grid {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(9, 42, 91, .16);
  padding: 22px 26px;
  margin: 0px 12px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}
.pn2-floatbar__item { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1 1 0; }
.pn2-floatbar__icon {
  flex: none;
  color: var(--pn2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
}
.pn2-floatbar__icon--teal { color: var(--pn2-teal); }
.pn2-floatbar__icon--badge {
  border: 2px solid var(--pn2-blue);
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3px;
}
.pn2-floatbar__item b {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--pn2-navy);
  margin-bottom: 3px;
}
.pn2-floatbar__item p { margin: 0; font-size: 11.5px; line-height: 1.4; color: var(--pn2-text-light); }

@media (max-width: 900px) {
  .pn2-hero--v2 .pn2-hero__art::before { display: none; }
  .pn2-hero__floatbar { margin-top: 0; }
}
@media (max-width: 560px) {
  .pn2-floatbar__grid { flex-wrap: wrap; gap: 16px; }
  .pn2-floatbar__item { flex: 1 1 calc(50% - 8px); }
}


/* ---------- Features bar ---------- */
.pn2-features { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--pn2-border); }
.pn2-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pn2-feature { display: flex; align-items: flex-start; gap: 14px; }
.pn2-feature__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pn2-surface);
  color: var(--pn2-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.pn2-feature b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pn2-navy);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 4px;
}
.pn2-feature p { margin: 0; font-size: 13.5px; color: var(--pn2-text-light); line-height: 1.45; }
@media (max-width: 900px) { .pn2-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pn2-features__grid { grid-template-columns: 1fr; } }

/* ---------- Peptide range ---------- */
.pn2-range { background: #fff; }
.pn2-range__carousel { position: relative; display: flex; align-items: center; gap: 10px; }
.pn2-range__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 2px 16px;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pn2-range__track::-webkit-scrollbar { display: none; width: 0; height: 0; }
.pn2-range__card {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid var(--pn2-border);
  border-radius: var(--pn2-radius);
  padding: 18px 16px 20px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.pn2-range__card:hover {
  box-shadow: var(--pn2-shadow);
  transform: translateY(-4px);
  border-color: transparent;
  text-decoration: none;
}
.pn2-range__thumb {
  display: block;
  height: 140px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pn2-range__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pn2-range__thumb--bundle {
  background: var(--pn2-surface);
  border-radius: 10px;
  color: var(--pn2-blue);
  font-size: 30px;
}
.pn2-range__name {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pn2-navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pn2-range__desc { display: block; font-size: 12.5px; color: var(--pn2-text-light); line-height: 1.4; }
.pn2-range__card--bundle { background: var(--pn2-surface); border-color: var(--pn2-surface); }

.pn2-range__arrow {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pn2-border);
  background: #fff;
  color: var(--pn2-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.pn2-range__arrow:hover { background: var(--pn2-blue); color: #fff; border-color: var(--pn2-blue); }
.pn2-range__cta { text-align: center; margin-top: 30px; }

/* ---------- Why choose ---------- */
.pn2-why {
  background: var(--pn2-surface);
  position: relative;
  overflow: hidden;
}
.pn2-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('../../../../../image/catalog/banner/compou.png') left center no-repeat,
    url('../../../../../image/catalog/banner/compou.png') right center no-repeat;
  background-size: auto 70%;
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}
/* .pn2-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
} */
.pn2-why__grid { position: relative; z-index: 1; }
.pn2-why__item { text-align: center; padding: 0 10px; }
.pn2-why__icon {
  /* width: 76px; height: 76px; */
  /* border-radius: 50%;
  background: #fff; */
  color: var(--pn2-blue);
  box-shadow: var(--pn2-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5em;
  margin-bottom: 18px;
}
.pn2-why__item b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--pn2-navy);
  margin-bottom: 8px;
}
.pn2-why__item p { margin: 0; font-size: 13.5px; color: var(--pn2-text-light); line-height: 1.55; }
@media (max-width: 900px) { .pn2-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pn2-why__grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.pn2-cta {
  background: var(--pn2-gradient-cta);
  color: #fff;
  padding: 42px 35px;
  position: relative;
  overflow: hidden;
}
.pn2-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('../../../../../image/catalog/banner/dna.png') left center no-repeat,
    url('../../../../../image/catalog/banner/compou.png') right center no-repeat;
  background-size: auto 85%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.pn2-cta__inner { position: relative; z-index: 1; }
.pn2-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.pn2-cta__copy { flex: 1 1 420px; max-width: 560px; }
.pn2-cta__copy h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: .3px;
  margin: 0 0 14px;
}
.pn2-cta__copy p { font-size: 14.5px; line-height: 1.6; color: #D9EAF5; margin: 0 0 24px; }
.pn2-cta__points { display: flex; align-items: center; gap: 26px; flex: 1 1 380px; justify-content: flex-end; }
.pn2-cta__point { display: flex; align-items: center; gap: 12px; }
.pn2-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 1;
  color: #fff;
  flex: none;
}
.pn2-cta__point b { display: block; font-size: 16px; font-weight: 700; }
.pn2-cta__point p { margin: 4px 0 0; font-size: 14px; color: #D9EAF5; }
.pn2-cta__divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.2); }
@media (max-width: 900px) {
  .pn2-cta__points { justify-content: flex-start; }
  .pn2-cta__divider { display: none; }
}

/* ---------- Footer ---------- */
.pn2-footer { background: #fff; border-top: 1px solid var(--pn2-border); padding-top: 50px; }
.pn2-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 48px;
  padding-bottom: 40px;
}
.pn2-footer__brand { flex: 1 1 220px; min-width: 0; }
.pn2-footer__cols {
  flex: 3 1 560px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 30px;
}
.pn2-footer__col { min-width: 0; }
.pn2-footer__brand .footer-logo img { height: 116px; }
.pn2-footer__brand .logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; color: var(--pn2-navy); }
.pn2-footer__brand .logo-text span { color: var(--pn2-blue); }
.pn2-footer__tagline { margin: 12px 0 0; font-size: 13px; color: var(--pn2-text-light); }
.pn2-footer__col h4 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--pn2-blue);
  margin: 0 0 16px;
}
.pn2-footer__col ul { list-style: none; margin: 0; padding: 0; }
.pn2-footer__col li { margin-bottom: 10px; }
.pn2-footer__col a { color: var(--pn2-text); font-size: 13.5px; text-decoration: none; }
.pn2-footer__col a:hover { color: var(--pn2-blue); text-decoration: underline; }
.pn2-footer__social { display: flex; gap: 10px; }
.pn2-footer__social a {
  font-size: 30px;
  padding: 10px;
  color: var(--pn2-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.pn2-footer__social a:hover {color: gray; }

.pn2-footer__bottom { border-top: 1px solid var(--pn2-border); padding: 18px 0; }
.pn2-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pn2-footer__bottom-inner p { margin: 0; font-size: 12px; color: var(--pn2-text-light); }

@media (max-width: 991px) {
  .pn2-footer__brand { flex: 1 1 100%; }
  .pn2-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 560px) {
  .pn2-footer__cols { grid-template-columns: 1fr; }
}

/* hide legacy footer widgets not part of the reference design */
.footer-most-viewed, .footer-disclaimer { display: none !important; }

/* ---------- Off-canvas menu ---------- */
.off-canvas-logo {
  height: 70px;
  width: auto;
}
.mobile-bottom-nav a i.fa { font-size: 19px; display: block; margin: 0 auto 2px; }

/* =========================================================================
   COMPREHENSIVE MOBILE-FIRST RESPONSIVE ENHANCEMENTS
   ========================================================================= */

/* ---------- Viewport & Root Mobile Tweaks ---------- */
@media (max-width: 1199px) {
  :root {
    --button-height: 42px;
    --gutter-x: 24px;
  }
}

@media (max-width: 991px) {
  :root {
    --button-height: 40px;
    --gutter-x: 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --button-height: 38px;
    --gutter-x: 16px;
    --space-5: 20px;
    --space-6: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --button-height: 36px;
    --gutter-x: 12px;
    --space-4: 12px;
    --space-5: 16px;
    --space-6: 24px;
  }
}

/* ---------- Typography Responsive Scaling ---------- */
@media (max-width: 767px) {
  body { font-size: 14px; line-height: 1.5; }
  h1 { font-size: 28px; line-height: 1.2; margin-bottom: 16px; }
  h2 { font-size: 24px; line-height: 1.25; margin-bottom: 14px; }
  h3 { font-size: 20px; line-height: 1.3; margin-bottom: 12px; }
  h4 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
  h5 { font-size: 15px; margin-bottom: 8px; }
  h6 { font-size: 13px; margin-bottom: 8px; }
  .section-title { font-size: 24px; }
}

@media (max-width: 480px) {
  body { font-size: 13px; }
  h1 { font-size: 24px; margin-bottom: 12px; }
  h2 { font-size: 20px; margin-bottom: 12px; }
  h3 { font-size: 18px; margin-bottom: 10px; }
  h4 { font-size: 16px; margin-bottom: 8px; }
  .section-title { font-size: 20px; }
}

/* ---------- Touch-Friendly Interactive Elements ---------- */
@media (max-width: 991px) {
  /* Ensure all clickables are 44px min height (mobile accessibility standard) */
  .btn { min-height: var(--button-height); padding: 8px 16px; }
  .header-link { min-width: 48px; min-height: 48px; }
  .main-menu > li > a { padding: 12px 16px; min-height: 48px; }
  a.product-img { min-height: 200px; }
  .form-control { min-height: 44px; padding: 10px 12px; }
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  textarea,
  select { min-height: 44px; font-size: 16px; }
}

@media (max-width: 767px) {
  button, .btn, a[role="button"] { min-height: 44px; padding: 10px 16px; }
  input, textarea, select { font-size: 16px; min-height: 44px; }
  .header-link { min-width: 56px; min-height: 56px; padding: 8px 6px; }
  .main-menu > li > a { padding: 10px 14px; }
}

/* ---------- Container & Spacing Responsive Tuning ---------- */
@media (max-width: 1199px) {
  .container { padding-left: 20px; padding-right: 20px; }
  [class*="section-"] { padding: 40px 0; }
}

@media (max-width: 991px) {
  .container { padding-left: 16px; padding-right: 16px; }
  [class*="section-"] { padding: 32px 0; }
  .row { margin-left: -8px; margin-right: -8px; }
  [class*="col-"] { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 767px) {
  .container { padding-left: 12px; padding-right: 12px; }
  [class*="section-"] { padding: 24px 0; }
  .row { margin-left: -6px; margin-right: -6px; }
  [class*="col-"] { padding-left: 6px; padding-right: 6px; }
}

@media (max-width: 480px) {
  .container { padding-left: 10px; padding-right: 10px; }
  [class*="section-"] { padding: 20px 0; }
  .row { margin-left: -4px; margin-right: -4px; }
  [class*="col-"] { padding-left: 4px; padding-right: 4px; }
}

/* ---------- Header Mobile Optimization ---------- */
@media (max-width: 991px) {
  .header-mid { gap: 12px; padding: 12px 0; }
  .header-mid .logo-wrap img { max-height: 48px; }
  .header-mid .logo-text { font-size: 20px; }
  .header-search { max-width: calc(100% - 140px); }
  #search { width: 100%; max-width: 100%; }
  #search input.search-input { font-size: 13px; padding: 0 16px; }
  #search .search-button { width: 44px; }
  .header-links { gap: 2px; }
  .header-link { min-width: 48px; font-size: 10px; }
}

@media (max-width: 767px) {
  .top-strip { display: none; }
  .header-mid { flex-wrap: wrap; gap: 10px; padding: 10px 0; }
  .header-mid .logo-wrap { min-width: auto; }
  .header-mid .logo-wrap img { max-height: 40px; }
  .header-search { flex: 1 1 100%; order: 3; max-width: 100%; }
  #search { width: 100%; }
  #search input.search-input { font-size: 14px; padding: 0 14px; height: 40px; }
  #search .search-button { width: 40px; }
  .header-links { order: 2; }
  .site-header { border-bottom: 1px solid var(--base-border); }
}

@media (max-width: 480px) {
  .header-mid .logo-text { font-size: 16px; }
  .header-mid { padding: 8px 0; }
  .header-links { gap: 0; }
  .header-link { min-width: 44px; min-height: 44px; font-size: 9px; padding: 4px 4px; }
  .header-link .fa { font-size: 16px; }
}

/* ---------- Navigation Mobile Optimization ---------- */
@media (max-width: 991px) {
  .main-menu-bar { display: none; }
  .mobile-nav-toggle { display: inline-flex; margin-left: auto; }
  .off-canvas { width: 280px; left: -280px; }
  .off-canvas ul li a { min-height: 44px; padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 767px) {
  .mobile-nav-toggle { padding: 10px 12px; font-size: 12px; min-height: 44px; min-width: 44px; }
  .off-canvas {
    width: 100%;
    left: -100%;
    max-width: 85vw;
    border-radius: 0;
  }
  .off-canvas.open { left: 0; }
  .off-canvas-head {
    padding: 12px 14px;
    font-size: 13px;
  }
  .off-canvas ul li a {
    padding: 12px 14px;
    min-height: 42px;
    font-size: 13px;
  }
  .off-canvas-overlay { background: rgba(0, 0, 0, 0.6); }
}

@media (max-width: 480px) {
  .off-canvas {
    max-width: 90vw;
  }
  .off-canvas-head {
    padding: 10px 12px;
  }
  .off-canvas ul li a {
    padding: 10px 12px;
    min-height: 40px;
    font-size: 12px;
  }
}

/* ---------- Product Grid Mobile Optimization ---------- */
@media (max-width: 991px) {
  .product-grid { gap: 16px; }
}

@media (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-thumb .image a.product-img { aspect-ratio: 3/4; }
  .product-thumb .product-title { font-size: 13px; line-height: 1.3; }
  .product-price { font-size: 14px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; gap: 8px; }
  .product-thumb { border-radius: var(--radius); }
  .product-thumb .image a.product-img { aspect-ratio: 1/1; min-height: 160px; }
  .product-price { font-size: 13px; }
  .product-description { font-size: 12px; }
}

/* ---------- Form Mobile Optimization ---------- */
@media (max-width: 767px) {
  .form-horizontal .form-group { margin-bottom: 16px; }
  .form-horizontal .control-label { display: block; margin-bottom: 6px; font-weight: 600; }
  .form-horizontal .form-control { width: 100%; }
  .form-horizontal .col-sm-9, .form-horizontal .col-sm-10 { margin-left: 0; }
  label { display: block; margin-bottom: 4px; font-weight: 500; }
  .checkbox, .radio { margin-bottom: 12px; }
  .btn-group { display: flex; flex-direction: column; }
  .btn-group > .btn { border-radius: var(--radius); margin-bottom: 8px; }
}

@media (max-width: 480px) {
  .form-group { margin-bottom: 12px; }
  .form-control { font-size: 16px; padding: 10px 12px; }
  .btn { padding: 12px 16px; font-size: 14px; width: 100%; }
}

/* ---------- Buttons Mobile Optimization ---------- */
@media (max-width: 767px) {
  .btn-group-vertical > .btn,
  .btn-group > .btn { width: 100%; }
  .btn-toolbar { display: flex; flex-direction: column; gap: 8px; }
  .btn { border-radius: var(--radius); }
}

@media (max-width: 480px) {
  .btn { 
    width: 100%; 
    padding: 12px 16px; 
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .btn-sm { padding: 8px 12px; font-size: 12px; }
  .btn-lg { padding: 14px 18px; font-size: 15px; }
}

/* ---------- Table Mobile Optimization ---------- */
@media (max-width: 767px) {
  .table { font-size: 13px; }
  .table th, .table td { padding: 10px 8px; }
  .table thead { display: none; }
  .table tbody tr { display: block; margin-bottom: 16px; border: 1px solid var(--base-border); border-radius: var(--radius); }
  .table tbody td {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: 0;
  }
  .table tbody td:before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: 600;
    text-align: left;
  }
}

/* ---------- Modal & Dialog Mobile Optimization ---------- */
@media (max-width: 767px) {
  .modal-dialog { width: calc(100% - 20px); margin: 10px auto; }
  .modal-content { border-radius: var(--radius); }
  .modal-header { padding: 16px; border-bottom: 1px solid var(--base-border); }
  .modal-body { padding: 16px; font-size: 14px; }
  .modal-footer { padding: 12px 16px; border-top: 1px solid var(--base-border); }
}

@media (max-width: 480px) {
  .modal-dialog { width: calc(100% - 10px); margin: 5px auto; }
  .modal-lg { max-width: 95vw; }
  .modal-body { padding: 12px; }
}

/* ---------- Dropdown Mobile Optimization ---------- */
@media (max-width: 767px) {
  .dropdown-menu { 
    position: static;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
    margin: 0;
    border-radius: var(--radius);
  }
  .dropdown-menu > li > a { padding: 10px 14px; }
}

/* ---------- Navbar Mobile Optimization ---------- */
@media (max-width: 767px) {
  .navbar-toggle { display: block; }
  .navbar-collapse { display: none; }
  .navbar-collapse.in { display: block; }
}

/* ---------- Card & Panel Mobile Optimization ---------- */
@media (max-width: 767px) {
  .card, .panel { margin-bottom: 12px; }
  .card-header, .panel-heading { padding: 12px 14px; }
  .card-body, .panel-body { padding: 14px; }
}

/* ---------- Alert Mobile Optimization ---------- */
@media (max-width: 767px) {
  .alert { 
    padding: 12px 14px; 
    font-size: 13px;
    margin-bottom: 12px;
  }
  .alert-dismissible .close { padding: 8px 12px; }
}

/* ---------- Breadcrumb Mobile Optimization ---------- */
@media (max-width: 767px) {
  .breadcrumb { padding: 8px 0; font-size: 12px; }
  .breadcrumb > li + li:before { content: " / "; padding: 0 6px; }
}

/* ---------- Pagination Mobile Optimization ---------- */
@media (max-width: 767px) {
  .pagination { 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  .pagination > li > a,
  .pagination > li > span { 
    padding: 6px 10px;
    font-size: 12px;
    border-radius: var(--radius-sm);
  }
}

/* ---------- List & Text Mobile Optimization ---------- */
@media (max-width: 767px) {
  ul, ol { margin-left: 16px; margin-bottom: 12px; }
  li { margin-bottom: 6px; line-height: 1.6; }
  blockquote { padding: 12px 14px; margin: 12px 0; font-size: 14px; }
  pre { font-size: 12px; padding: 12px; overflow-x: auto; }
  code { font-size: 12px; }
}

/* ---------- Image Mobile Optimization ---------- */
@media (max-width: 767px) {
  img { max-width: 100%; height: auto; }
  .img-responsive { width: 100%; height: auto; display: block; }
  figure { margin: 12px 0; }
  figure img { width: 100%; }
}

/* ---------- Safe Area Insets (for notched devices) ---------- */
@supports (padding: max(0px)) {
  @media (max-width: 767px) {
    body { padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
    .container { padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
    .off-canvas { left: calc(-100% - env(safe-area-inset-left, 0px)); }
    .off-canvas.open { left: env(safe-area-inset-left, 0); }
    .mobile-bottom-nav { padding-bottom: max(8px, env(safe-area-inset-bottom)); }
  }
}

/* ---------- Touch Device Optimization ---------- */
@media (hover: none) and (pointer: coarse) {
  /* Increase spacing for better touch targets */
  a { padding: 6px 4px; }
  button, .btn { padding: 12px 16px; }
  
  /* Remove hover states on touch devices */
  .product-thumb { box-shadow: var(--shadow-card); }
  
  /* Disable focus outline on touch (since tap shows focus already) */
  a:focus { outline: none; }
  button:focus { outline: none; }
}

/* ---------- Landscape Mobile Optimization ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .header-mid { padding: 6px 0; gap: 8px; }
  .header-mid .logo-wrap img { max-height: 32px; }
  [class*="section-"] { padding: 16px 0; }
  h1 { font-size: 20px; margin-bottom: 10px; }
  h2 { font-size: 18px; margin-bottom: 8px; }
}

/* ---------- Print & Accessibility ---------- */
@media print {
  .mobile-nav-toggle, .header-links, .mobile-bottom-nav, .off-canvas { display: none !important; }
  body { background: white; }
  a { text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Fix: category listing main area — overflow-safe + responsive, consistent with site theme */
.listing-main { min-width: 0; }
.listing-main .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.listing-main .product-toolbar { margin-bottom: 18px; }

/* Make product grid cards consistent with the homepage (pn2) design system */
.product-grid-item .product-thumb {
  background: #fff;
  border: 1px solid var(--pn2-border);
  border-radius: var(--pn2-radius);
  padding: 18px 16px 20px;
  box-shadow: none;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.product-grid-item .product-thumb:hover {
  box-shadow: var(--pn2-shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.product-grid-item .product-thumb .image-group {
  aspect-ratio: 1 / 1;
  background: var(--pn2-surface);
  border-radius: calc(var(--pn2-radius) - 4px);
  margin-bottom: 14px;
}
.product-grid-item .product-thumb .caption {
  padding: 0;
  align-items: center;
}
.product-grid-item .product-name a { color: var(--pn2-navy); font-weight: 700; }
.product-grid-item .product-description { color: var(--pn2-text-light); font-size: 12.5px; line-height: 1.4; }
.product-grid-item .product-thumb .price .price-normal,
.product-grid-item .product-thumb .price .price-new { color: var(--pn2-navy); }
.product-grid-item .product-thumb .btn-cart {
  background: var(--pn2-blue);
  border-color: var(--pn2-blue);
}
.product-grid-item .product-thumb .btn-cart:hover {
  background: var(--pn2-blue-dark);
  border-color: var(--pn2-blue-dark);
}

/* Homepage research-use banner */
.pip-research-banner {
 background: #135f78;
 color: #fff;
 border-top: 1px solid rgba(255, 255, 255, .22);
 border-bottom: 1px solid rgba(255, 255, 255, .18);
 box-shadow: 0 4px 14px rgba(7, 30, 48, .14);
}

.pip-research-banner .container {
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 58px;
 padding-top: 13px;
 padding-bottom: 13px;
 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: 1.45;
 letter-spacing: 1.8px;
 text-align: center;
 text-transform: uppercase;
}

@media (max-width: 767px) {
 .pip-research-banner .container {
 min-height: 54px;
 padding-top: 10px;
 padding-bottom: 10px;
 font-size: 11.5px;
 line-height: 1.45;
 letter-spacing: 1px;
 }
}

@media (max-width: 380px) {
 .pip-research-banner .container {
 font-size: 10.5px;
 letter-spacing: .7px;
 }
}

/* Professional compact age popup - homepage only */
.pip-age-popup {
 background: rgba(8, 18, 34, .56);
 backdrop-filter: blur(4px);
 -webkit-backdrop-filter: blur(4px);
 padding: 18px;
 overflow: hidden;
}

.pip-age-popup__panel {
 width: min(620px, calc(100% - 24px));
 max-height: none;
 overflow: visible;
 padding: 34px 42px 38px;
 border: 1px solid rgba(255, 255, 255, .72);
 border-radius: 14px;
 background: linear-gradient(180deg, rgba(247, 250, 255, .98), rgba(222, 232, 255, .98));
 box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
}

.pip-age-popup__brand {
 gap: 18px;
 margin-bottom: 26px;
}

.pip-age-popup__icon {
 transform: scale(.58);
 transform-origin: center;
 margin: -31px -30px -34px;
}

.pip-age-popup__wordmark {
 gap: 5px;
 font-size: 42px;
 line-height: .95;
 letter-spacing: 8px;
}

.pip-age-popup__text {
 max-width: 520px;
 margin: 0 auto 22px;
 font-size: 20px;
 line-height: 1.55;
}

.pip-age-popup__question {
 margin-bottom: 20px;
 font-size: 22px;
}

.pip-age-popup__actions {
 gap: 16px;
}

.pip-age-popup__button {
 box-sizing: border-box;
 min-width: 160px;
 height: 58px;
 padding: 0 24px;
 border-radius: 7px;
 font-size: 20px;
}

@media (max-width: 560px) {
 .pip-age-popup {
 align-items: center;
 padding: 10px;
 }

 .pip-age-popup__panel {
 width: calc(100% - 8px);
 max-height: none;
 overflow: visible;
 padding: 22px 16px 24px;
 border-radius: 12px;
 }

 .pip-age-popup__brand {
 gap: 10px;
 margin-bottom: 18px;
 }

 .pip-age-popup__icon {
 transform: scale(.42);
 margin: -42px -45px -46px;
 }

 .pip-age-popup__wordmark {
 gap: 3px;
 font-size: 25px;
 letter-spacing: 4px;
 }

 .pip-age-popup__text {
 margin-bottom: 16px;
 font-size: 14.5px;
 line-height: 1.45;
 }

 .pip-age-popup__question {
 margin-bottom: 14px;
 font-size: 16px;
 }

 .pip-age-popup__actions {
 gap: 10px;
 }

 .pip-age-popup__button {
 width: calc(50% - 5px);
 min-width: 0;
 height: 46px;
 padding: 0 10px;
 font-size: 16px;
 }
}

@media (max-width: 360px) {
 .pip-age-popup__panel {
 padding: 18px 12px 20px;
 }

 .pip-age-popup__wordmark {
 font-size: 22px;
 letter-spacing: 3px;
 }

 .pip-age-popup__text {
 font-size: 13.5px;
 line-height: 1.38;
 }
}

/* Age popup reference design */
.pip-age-popup {
 align-items: center;
 justify-content: center;
 padding: 12px;
 background: rgba(5, 18, 38, .42);
 backdrop-filter: blur(3px);
 -webkit-backdrop-filter: blur(3px);
 overflow: hidden;
}

.pip-age-popup__panel {
 width: min(520px, calc(100% - 12px));
 max-height: calc(100vh - 24px);
 overflow: hidden;
 padding: clamp(14px, 2.3vh, 24px) clamp(18px, 4vw, 34px) clamp(18px, 2.8vh, 30px);
 border: 0;
 border-radius: 0;
 background: #FFFFFF;
 color: #071225;
 text-align: center;
 box-shadow: 0 26px 80px rgba(3, 12, 28, .28);
}

.pip-age-popup__brand {
 display: block;
 margin: 0 auto clamp(12px, 2vh, 20px);
 color: #072F78;
}

.pip-age-popup__mark {
 display: block;
 width: min(220px, 58vw, 30vh);
 height: auto;
 margin: 0 auto clamp(6px, 1.2vh, 10px);
 filter: drop-shadow(0 8px 10px rgba(0, 169, 157, .12));
}

.pip-age-popup__wordmark {
 display: block;
 margin: 0;
 color: #063486;
 font: 800 clamp(34px, 6.2vh, 47px)/1 var(--font-display);
 letter-spacing: 0;
 text-align: center;
 text-shadow: none;
}

.pip-age-popup__wordmark > span {
 display: block;
}

.pip-age-popup__wordmark > span > span {
 color: #07B96D;
}

.pip-age-popup__domain {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: clamp(10px, 2.5vw, 20px);
 margin: clamp(10px, 1.8vh, 18px) auto 0;
 color: #062B63;
 font: 700 clamp(12px, 2.2vh, 16px)/1 var(--font-display);
 letter-spacing: clamp(4px, 1vw, 8px);
 white-space: nowrap;
}

.pip-age-popup__domain:before,
.pip-age-popup__domain:after {
 content: '';
 display: block;
 width: clamp(46px, 14vw, 78px);
 height: 3px;
 background: #062B63;
}

.pip-age-popup__text {
 max-width: 440px;
 margin: 0 auto clamp(12px, 2vh, 22px);
 color: #071225;
 font: 700 clamp(15px, 2.75vh, 22px)/1.42 var(--font-body);
 letter-spacing: 0;
 text-align: center;
}

.pip-age-popup__question {
 margin: 0 0 clamp(10px, 1.8vh, 16px);
 color: #063486;
 font: 700 clamp(17px, 2.7vh, 23px)/1.2 var(--font-body);
}

.pip-age-popup__actions {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 26px;
}

.pip-age-popup__button {
 width: 100%;
 min-width: 0;
 height: clamp(48px, 7.2vh, 62px);
 padding: 0 18px;
 border: 0;
 border-radius: 7px;
 background: #062B75;
 color: #FFFFFF;
 font: 800 clamp(18px, 3.2vh, 24px)/1 var(--font-body);
 box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 5px 12px rgba(6, 43, 117, .22);
}

.pip-age-popup__button:hover,
.pip-age-popup__button:focus {
 background: #031F59;
 box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 8px 16px rgba(6, 43, 117, .26);
 transform: translateY(-1px);
 outline: none;
}

@media (max-width: 560px) {
 .pip-age-popup {
 padding: 8px;
 }

 .pip-age-popup__panel {
  width: 100%;
  max-height: calc(100vh - 16px);
  padding: 14px 14px 18px;
 }

 .pip-age-popup__mark {
  width: min(165px, 52vw, 24vh);
  margin-bottom: 5px;
 }

 .pip-age-popup__wordmark {
  font-size: clamp(28px, 9vw, 38px);
 }

 .pip-age-popup__domain {
  gap: 9px;
  margin-top: 10px;
  font-size: clamp(10px, 3vw, 13px);
  letter-spacing: clamp(2px, 1vw, 5px);
 }

 .pip-age-popup__domain:before,
 .pip-age-popup__domain:after {
  width: clamp(28px, 10vw, 48px);
  height: 2px;
 }

 .pip-age-popup__text {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: clamp(13px, 3.8vw, 17px);
  line-height: 1.36;
 }

 .pip-age-popup__question {
  margin-bottom: 10px;
  font-size: clamp(16px, 4.8vw, 20px);
 }

 .pip-age-popup__actions {
  gap: 10px;
 }

 .pip-age-popup__button {
  height: clamp(44px, 7vh, 50px);
  padding: 0 8px;
  font-size: clamp(16px, 5vw, 20px);
 }
}

@media (max-height: 680px) {
 .pip-age-popup__panel {
  width: min(500px, calc(100% - 12px));
  padding-top: 10px;
  padding-bottom: 14px;
 }

 .pip-age-popup__brand {
  margin-bottom: 10px;
 }

 .pip-age-popup__mark {
  width: min(150px, 24vh);
  margin-bottom: 4px;
 }

 .pip-age-popup__wordmark {
  font-size: clamp(28px, 6vh, 38px);
 }

 .pip-age-popup__domain {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 4px;
 }

 .pip-age-popup__text {
  margin-bottom: 10px;
  font-size: clamp(12px, 2.75vh, 16px);
  line-height: 1.28;
 }

 .pip-age-popup__question {
  margin-bottom: 8px;
  font-size: clamp(15px, 3vh, 18px);
 }

 .pip-age-popup__button {
  height: clamp(40px, 7vh, 48px);
  font-size: clamp(16px, 3.6vh, 20px);
 }
}



/* ---------- Checkout alignment and responsive layout ---------- 

/* ---------- Mobile cart dropdown fix ---------- */
@media (max-width: 767px) {
  /* Keep the cart panel out of the header flow on iPhone/Safari. */
  #cart, .pn2-header__icons { position: relative; }
  #cart > .dropdown-menu,
  .pn2-header__icons #cart > .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin: 0;
    z-index: 1100;
  }
}

*/

/* ---------- Active mobile cart dropdown fix ---------- */
@media (max-width: 767px) {
  #cart, .pn2-header__icons { position: relative; }
  #cart > .dropdown-menu,
  .pn2-header__icons #cart > .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin: 0;
    z-index: 1100;
  }
}


/* ---------- Narrow mobile header fit ---------- */
@media (max-width: 360px) {
  .pn2-header__row { gap: 6px; }
  .pn2-header__nav { display: none; }
  .pn2-header__logo img { height: 42px; max-width: 92px; }
  .pn2-header__icons { gap: 4px; margin-left: auto; }
  .pn2-header__icon,
  .pn2-header__icons .header-link { width: 32px; min-width: 32px; height: 32px; padding: 3px; font-size: 15px; }
  .pn2-header__icons .header-link .fa { font-size: 16px; }
}


/* Checkout mobile form-control alignment */
@media (max-width: 767px) {
  #checkout-checkout .radio,
  #checkout-checkout .checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
  }
  #checkout-checkout .radio input[type="radio"],
  #checkout-checkout .checkbox input[type="checkbox"],
  #checkout-checkout input[type="radio"],
  #checkout-checkout input[type="checkbox"] {
    position: static !important;
    display: inline-block !important;
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 !important;
    vertical-align: middle !important;
  }
  #checkout-checkout .radio label,
  #checkout-checkout .checkbox label {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45 !important;
  }
  #checkout-checkout .radio + .radio,
  #checkout-checkout .checkbox + .checkbox {
    margin-top: 8px !important;
  }
  #checkout-checkout .buttons,
  #checkout-checkout .buttons .pull-right {
    clear: both !important;
  }
}


/* Checkout mobile spacing refinement */
@media (max-width: 767px) {
  #checkout-checkout .radio,
  #checkout-checkout .checkbox {
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }
  #checkout-checkout .radio input[type="radio"],
  #checkout-checkout .checkbox input[type="checkbox"],
  #checkout-checkout input[type="radio"],
  #checkout-checkout input[type="checkbox"] {
    margin-top: 0 !important;
  }
  #checkout-checkout .radio label,
  #checkout-checkout .checkbox label {
    line-height: 1.5 !important;
  }
  #checkout-checkout .radio + .radio,
  #checkout-checkout .checkbox + .checkbox {
    margin-top: 10px !important;
  }
}


/* Checkout agreement checkbox alignment */
@media (max-width: 767px) {
  #checkout-checkout .buttons .pull-right {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
  }
  #checkout-checkout .buttons .pull-right input[type="checkbox"] {
    position: static !important;
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
  }
  #checkout-checkout .buttons .pull-right .btn {
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
}


/* Checkout agreement checkbox comes before its text on mobile */
@media (max-width: 767px) {
  #checkout-checkout .buttons .pull-right input[type="checkbox"] {
    order: -1 !important;
  }
  #checkout-checkout .buttons .pull-right {
    align-items: flex-start !important;
  }
}


/* Mobile agreement text stays inline with checkbox */
@media (max-width: 767px) {
  #checkout-checkout .buttons .pull-right {
    display: block !important;
    text-align: left !important;
  }
  #checkout-checkout .buttons .pull-right input[type="checkbox"] {
    float: left !important;
    order: initial !important;
    width: 16px !important;
    height: 16px !important;
    margin: 2px 8px 0 0 !important;
  }
  #checkout-checkout .buttons .pull-right a {
    display: inline !important;
  }
  #checkout-checkout .buttons .pull-right .btn {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    margin-top: 16px !important;
  }
}


/* Robust mobile checkout agreement row */
@media (max-width: 767px) {
  #checkout-checkout .checkout-agreement-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
  }
  #checkout-checkout .checkout-agreement-label input[type="checkbox"] {
    position: static !important;
    float: none !important;
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 !important;
  }
  #checkout-checkout .checkout-agreement-label span {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
  #checkout-checkout .checkout-agreement-label a {
    display: inline !important;
  }
  #checkout-checkout .checkout-agreement-label + .btn {
    margin-top: 0 !important;
  }
}


/* Remove All Peptides price/stock filter on every viewport */
#product-all .filter-sidebar {
  display: none !important;
}
#product-all .all-peptides-layout {
  display: block !important;
  grid-template-columns: minmax(0, 1fr) !important;
}
#product-all .all-peptides-main {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}
