/* =========================================================
   VlgRX Clone — main stylesheet (reference-matched)
   1. Tokens
   2. Reset / base typography
   3. Layout primitives
   4. Announcement bar
   5. Header / nav
   6. Buttons
   7. Hero
   8. Sections (cards, testimonials, faq, final cta)
   9. Footer
  10. Single / archive / page
  11. WooCommerce overrides
  12. Responsive
   ========================================================= */

/* ---------- 0. Neue Montreal webfont (extracted from reference) ---------- */
@font-face {
	font-family: 'NeueMontreal';
	src: url('../fonts/neuemontreal-regular.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'NeueMontreal';
	src: url('../fonts/neuemontreal-medium.woff2') format('woff2');
	font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'NeueMontreal';
	src: url('../fonts/neuemontreal-bold.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- 1. Tokens (calibrated to reference temp-home.css) ---------- */
:root {
	--vc-red:          #de0e16;    /* brand red — button + links */
	--vc-red-dark:     #b00b11;
	--vc-red-button:   #de0e16;    /* unified — reference uses one red for CTA */
	--vc-red-announce: #d21b22;    /* announcement bar is a slightly different red */
	--vc-text:         #1a1a1a;
	--vc-text-muted:   #555a64;
	--vc-bg:           #ffffff;
	--vc-bg-soft:      #f5f5f5;    /* section alt-bg */
	--vc-bg-hero:      #dae6eb;    /* masthead + hero light blue-gray */
	--vc-bg-dark:      #1a1d23;
	--vc-border:       #dfdfdf;    /* hero divider color */
	--vc-success:      #00b67a;
	--vc-radius:       8px;
	--vc-radius-pill:  100px;       /* reference uses 100px */
	--vc-shadow:       0 6px 24px rgba(0,0,0,.06);
	--vc-shadow-lg:    0 18px 48px rgba(0,0,0,.12);
	--vc-container:    1280px;       /* reference max-width @ ≥1600 */
	--vc-gutter:       24px;
	--vc-font:         'NeueMontreal', 'Helvetica Neue', Arial, sans-serif;
	--vc-font-display: 'NeueMontreal', 'Helvetica Neue', Arial, sans-serif;
	--vc-ease:         cubic-bezier(.4,.0,.2,1);
}

/* ---------- 2. Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--vc-font); color: var(--vc-text); background: var(--vc-bg); line-height: 1.6; font-size: 18px; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--vc-red); text-decoration: none; transition: color .15s var(--vc-ease); }
a:hover { color: var(--vc-red-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--vc-font-display); font-weight: 800; line-height: 1.15; margin: 0 0 .6em; color: var(--vc-text); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 3.6vw + .5rem, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2vw + .8rem, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
sup { font-size: .7em; vertical-align: super; line-height: 0; color: var(--vc-text-muted); }
.screen-reader-text { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.vc-skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; padding: .5rem 1rem; background: var(--vc-red); color: #fff; z-index: 9999; }

/* ---------- 3. Layout primitives ---------- */
.vc-container { width: 100%; max-width: var(--vc-container); margin: 0 auto; padding: 0 var(--vc-gutter); }
.vc-main { min-height: 50vh; }
.vc-section { padding: clamp(56px, 6vw, 96px) 0; }
.vc-section--ingredients { background: var(--vc-bg-soft); }
.vc-section--faq { background: var(--vc-bg-soft); }
.vc-section__title { text-align: center; margin-bottom: .5em; }
.vc-section__sub { text-align: center; color: var(--vc-text-muted); max-width: 720px; margin: 0 auto 2.5em; }
.vc-empty { text-align: center; padding: 4em 0; color: var(--vc-text-muted); font-style: italic; }

/* ---------- 4. Announcement bar ---------- */
.vc-announce { background: var(--vc-red-announce); color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .02em; }
.vc-announce__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; padding: 8px var(--vc-gutter); text-transform: uppercase; }
.vc-announce__msg { letter-spacing: .04em; }
.vc-announce__tel { color: #fff; }
.vc-announce__tel-label { font-weight: 700; letter-spacing: .08em; }
.vc-announce__tel strong { letter-spacing: .04em; }
.vc-announce__tel:hover { color: #fff; opacity: .9; }

/* ---------- 5. Header / nav ---------- */
.vc-header { background: #fff; box-shadow: 0 1px 0 var(--vc-border); position: sticky; top: 0; z-index: 50; }
.vc-header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; min-height: 92px; padding: 12px var(--vc-gutter); }
.vc-brand { display: inline-block; font-family: var(--vc-font-display); flex-shrink: 0; }
.vc-brand__img { display: block; max-height: 56px; width: auto; max-width: 200px; }
.vc-brand__mark { font-weight: 900; font-size: 2.1rem; letter-spacing: -.02em; line-height: 1; display: inline-flex; align-items: baseline; gap: 6px; }
.vc-brand__red { color: var(--vc-red); }
.vc-brand__plus { color: var(--vc-text); font-style: italic; font-weight: 800; }
.vc-brand__img { height: 56px; width: auto; max-width: 240px; }
.custom-logo { max-height: 64px; width: auto; }
.vc-header__nav { display: flex; justify-content: center; min-width: 0; }
.vc-menu { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; align-items: center; flex-wrap: nowrap; }
.vc-menu li { white-space: nowrap; }
.vc-menu__link, .vc-menu a,
.vc-menu__link:visited, .vc-menu a:visited { color: var(--vc-text); font-weight: 600; font-size: .95rem; padding: 10px 0; position: relative; white-space: nowrap; }
.vc-menu__link:hover, .vc-menu a:hover { color: var(--vc-red); }
.vc-menu .current-menu-item > a, .vc-menu li.current_page_item > a { color: var(--vc-red); }
.vc-menu .sub-menu { position: absolute; top: 100%; left: 0; flex-direction: column; background: #fff; box-shadow: var(--vc-shadow-lg); padding: 8px 0; min-width: 220px; display: none; z-index: 60; gap: 0; }
.vc-menu li { position: relative; }
.vc-menu li:hover > .sub-menu, .vc-menu li:focus-within > .sub-menu { display: flex; }
.vc-menu .sub-menu a { padding: 8px 16px; font-weight: 500; }
.vc-header__cta { display: flex; align-items: center; }
.vc-nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 0; cursor: pointer; }
.vc-burger, .vc-burger::before, .vc-burger::after { content: ''; display: block; width: 24px; height: 2px; background: var(--vc-text); border-radius: 2px; transition: transform .2s var(--vc-ease); }
.vc-burger { position: relative; margin: auto; }
.vc-burger::before { position: absolute; top: -8px; left: 0; }
.vc-burger::after  { position: absolute; top: 8px;  left: 0; }
.vc-nav-toggle[aria-expanded="true"] .vc-burger { background: transparent; }
.vc-nav-toggle[aria-expanded="true"] .vc-burger::before { transform: translateY(8px) rotate(45deg); }
.vc-nav-toggle[aria-expanded="true"] .vc-burger::after  { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 6. Buttons ---------- */
.vc-btn { display: inline-block; padding: 20px 30px; font-family: var(--vc-font); font-weight: 700; cursor: pointer; border: 2px solid transparent; transition: transform .12s var(--vc-ease), background .15s, color .15s, box-shadow .15s; font-size: 1.05rem; text-align: center; line-height: 1; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--vc-radius-pill); }
.vc-btn--pill { border-radius: var(--vc-radius-pill); }
.vc-btn--xl   { padding: 22px 40px; font-size: 1.22rem; }
.vc-btn--primary { background: var(--vc-red); color: #fff; border-color: var(--vc-red); box-shadow: 0 6px 14px rgba(222,14,22,.25); }
.vc-btn--primary:hover { background: var(--vc-red-dark); border-color: var(--vc-red-dark); color: #fff; box-shadow: 0 10px 22px rgba(222,14,22,.35); transform: translateY(-1px); }
.vc-btn--ghost { background: transparent; color: var(--vc-red); border-color: var(--vc-red); }
.vc-btn--ghost:hover { background: var(--vc-red); color: #fff; }
.vc-btn--block { display: block; width: 100%; }
.vc-link { color: var(--vc-red); font-weight: 700; }
input[type="text"], input[type="email"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], input[type="number"], textarea, select { width: 100%; padding: 12px 16px; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); font: inherit; background: #fff; }

/* ---------- 7. Hero ---------- */
.vc-hero { background: var(--vc-bg-hero); padding: clamp(56px, 6vw, 96px) 0; }
.vc-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vc-hero__media { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.vc-hero__product { max-width: 100%; width: clamp(320px, 36vw, 540px); height: auto; filter: drop-shadow(0 16px 32px rgba(0,0,0,.18)); }
.vc-hero__absorption { display: flex; align-items: center; gap: 4px; margin-top: -10px; }
.vc-hero__arrow { flex-shrink: 0; transform: rotate(-10deg); }
.vc-hero__absorption-text { margin: 0; font-weight: 700; font-size: 1.08rem; color: var(--vc-text); border-bottom: 4px solid var(--vc-red); padding-bottom: 4px; line-height: 1.3; }
.vc-hero__absorption-text strong { font-weight: 900; }
.vc-hero__trust { display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.vc-trustbadge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: #fff; border-radius: var(--vc-radius); border: 1px solid var(--vc-border); font-size: .75rem; line-height: 1.15; color: var(--vc-text); font-weight: 700; }
.vc-trustbadge--trustpilot { color: var(--vc-text); }
.vc-trustbadge--trustpilot .vc-trustbadge__icon { color: var(--vc-success); font-size: 1.4rem; }
.vc-trustbadge--trustpilot small { color: var(--vc-success); font-weight: 700; font-size: .68rem; letter-spacing: .03em; }
.vc-trustbadge--bbb { background: #00558c; color: #fff; border-color: #00558c; padding: 8px 12px; }
.vc-trustbadge--bbb strong { font-weight: 900; font-size: 1.1rem; letter-spacing: .03em; }
.vc-trustbadge--bbb small { font-size: .6rem; line-height: 1.1; }
.vc-trustbadge--rating { background: #eef0f4; color: var(--vc-text); font-weight: 900; font-size: 1.4rem; padding: 8px 16px; min-width: 56px; justify-content: center; }
.vc-hero__copy { padding-right: 8px; }
.vc-hero__title { font-size: clamp(2rem, 3.4vw + .8rem, 3.3rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; color: var(--vc-text); letter-spacing: -.015em; }
.vc-hero__sub { font-size: 1rem; color: var(--vc-text-muted); margin-bottom: 22px; max-width: 540px; }
.vc-hero__bullets-title { font-size: 1.1rem; margin-bottom: 12px; }
.vc-hero__bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.vc-hero__bullets li { font-size: 1.02rem; color: var(--vc-text); display: flex; align-items: baseline; gap: 10px; }
.vc-check { display: inline-block; width: 18px; height: 18px; flex-shrink: 0; position: relative; }
.vc-check::before { content: ''; position: absolute; left: 0; top: 4px; width: 14px; height: 9px; border-left: 3px solid var(--vc-red); border-bottom: 3px solid var(--vc-red); transform: rotate(-45deg); }
.vc-hero__cta-row { display: flex; align-items: center; gap: 24px; margin-bottom: 12px; flex-wrap: wrap; }
.vc-seal { position: relative; width: 110px; height: 110px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vc-seal svg { position: absolute; inset: 0; margin: auto; opacity: .65; }
.vc-seal__txt { text-align: center; line-height: 1.05; padding: 6px; }
.vc-seal__txt small { display: block; font-size: .58rem; letter-spacing: .04em; color: var(--vc-text-muted); font-weight: 700; }
.vc-seal__txt strong { display: block; font-size: .78rem; color: var(--vc-text); letter-spacing: .03em; margin: 3px 0; }
.vc-hero__guarantee { color: var(--vc-text-muted); margin: 0; }

/* ---------- 8. Sections ---------- */
.vc-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.vc-card-grid--ingredients { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.vc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); overflow: hidden; transition: transform .15s var(--vc-ease), box-shadow .15s; }
.vc-card:hover { transform: translateY(-3px); box-shadow: var(--vc-shadow); }
a.vc-card { color: inherit; }
.vc-card__media { aspect-ratio: 4/3; background: var(--vc-bg-soft); overflow: hidden; }
.vc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--vc-ease); }
.vc-card:hover .vc-card__media img { transform: scale(1.04); }
.vc-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vc-card__title { font-size: 1.1rem; margin: 0; }
.vc-card__title a { color: inherit; }
.vc-card__title a:hover { color: var(--vc-red); }
.vc-card__excerpt { color: var(--vc-text-muted); font-size: .92rem; margin: 0; flex: 1; }
.vc-card__meta { color: var(--vc-text-muted); font-size: .8rem; margin: 0; }

.vc-testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.vc-testi { background: #fff; border: 1px solid var(--vc-border); border-left: 4px solid var(--vc-red); border-radius: var(--vc-radius); padding: 24px; margin: 0; }
.vc-testi__quote { font-size: 1rem; color: var(--vc-text); margin-bottom: 1em; }
.vc-testi__by cite { color: var(--vc-text-muted); font-style: normal; font-weight: 700; font-size: .9rem; }

.vc-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.vc-faq__item { background: #fff; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); }
.vc-faq__q { font-weight: 700; padding: 18px 24px; cursor: pointer; list-style: none; position: relative; padding-right: 56px; font-size: 1.05rem; }
.vc-faq__q::-webkit-details-marker { display: none; }
.vc-faq__q::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--vc-red); font-weight: 400; transition: transform .15s var(--vc-ease); }
.vc-faq__item[open] .vc-faq__q::after { transform: translateY(-50%) rotate(45deg); }
.vc-faq__item[open] { box-shadow: var(--vc-shadow); }
.vc-faq__a { padding: 0 24px 18px; color: var(--vc-text-muted); }
.vc-faq__a p:last-child { margin-bottom: 0; }

.vc-section--cta { background: #fff; padding: 64px 0; }
.vc-finalcta { text-align: center; max-width: 720px; margin: 0 auto; }
.vc-finalcta p { color: var(--vc-text-muted); margin-bottom: 1.8em; font-size: 1.1rem; }

/* ---------- 9. Footer ---------- */
.vc-trust { background: var(--vc-bg-soft); padding: 36px 0; }
.vc-trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; text-align: center; }
.vc-trust__item strong { display: block; color: var(--vc-text); font-size: 1.05rem; margin-bottom: 4px; }
.vc-trust__item span  { color: var(--vc-text-muted); font-size: .9rem; }

.vc-footer { background: var(--vc-bg-dark); color: #c9cdd4; padding: 64px 0 0; }
.vc-footer a { color: #c9cdd4; }
.vc-footer a:hover { color: #fff; }
.vc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.vc-footer__brand .vc-brand--footer { color: #fff; font-size: 1.4rem; margin-bottom: 16px; display: inline-block; }
.vc-footer__about { color: #9aa0a8; max-width: 320px; margin-bottom: 18px; }
.vc-footer__title { color: #fff; font-size: .95rem; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; font-weight: 800; }
.vc-footer__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.vc-footer__menu a { font-size: .92rem; }
.vc-footer__menu--inline { display: flex; gap: 18px; }
.vc-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; background: rgba(0,0,0,.2); }
.vc-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.vc-copy { color: #9aa0a8; }
.vc-disclaimer { padding-top: 12px; color: #6e7480; font-size: .8rem; line-height: 1.55; }
.vc-payment { display: flex; gap: 10px; margin-top: 8px; }
.vc-payment__card { display: inline-block; width: 42px; height: 28px; border-radius: 4px; background: #2a2f37; position: relative; }
.vc-payment__card--visa::before       { content: 'VISA'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #1a1f71; background: #fff; border-radius: 4px; font-size: .7rem; font-weight: 800; }
.vc-payment__card--mastercard::before { content: ''; position: absolute; inset: 6px; background: radial-gradient(circle at 35% 50%, #eb001b 50%, transparent 50%), radial-gradient(circle at 65% 50%, #f79e1b 50%, transparent 50%); border-radius: 50%; }
.vc-payment__card--amex::before       { content: 'AMEX'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: #2671b9; border-radius: 4px; font-size: .65rem; font-weight: 800; }
.vc-payment__card--discover::before   { content: 'DISC'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: #f76b1c; border-radius: 4px; font-size: .65rem; font-weight: 800; }
.vc-payment__card--paypal::before     { content: 'PP'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #003087; background: #fff; border-radius: 4px; font-size: .75rem; font-weight: 800; }

/* ---------- 10. Single / archive / page ---------- */
.vc-archive, .vc-single, .vc-page, .vc-404 { padding: 56px 0; }
.vc-archive__header, .vc-single__header, .vc-page__header { text-align: center; margin-bottom: 2em; }
.vc-archive__title, .vc-single__title, .vc-page__title { margin-bottom: .3em; }
.vc-archive__desc, .vc-single__meta { color: var(--vc-text-muted); }
.vc-single__featured, .vc-page__featured { margin: 0 auto 2em; max-width: 900px; }
.vc-single__featured img, .vc-page__featured img { border-radius: var(--vc-radius); }
.vc-prose { max-width: 820px; margin: 0 auto; font-size: 1.05rem; }
.vc-prose img { border-radius: var(--vc-radius); margin: 1em 0; }
.vc-prose h2, .vc-prose h3 { margin-top: 1.4em; }
.vc-prose ul, .vc-prose ol { padding-left: 1.4em; }
.vc-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 3em; }
.vc-pagination .page-numbers { padding: 8px 14px; border-radius: var(--vc-radius); border: 1px solid var(--vc-border); color: var(--vc-text); }
.vc-pagination .current { background: var(--vc-red); color: #fff; border-color: var(--vc-red); }
.vc-pagination .page-numbers:hover:not(.current) { background: var(--vc-bg-soft); }
.vc-404 { text-align: center; }
.vc-404__code { font-size: clamp(5rem, 14vw, 9rem); color: var(--vc-red); margin-bottom: 0; }
.vc-404__msg  { color: var(--vc-text-muted); font-size: 1.15rem; }
.vc-ing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; margin-bottom: 3em; }
.vc-ing-header__media img { border-radius: var(--vc-radius); }
.vc-related { margin-top: 4em; padding-top: 3em; border-top: 1px solid var(--vc-border); }
.vc-doc-header { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; margin-bottom: 2em; }
.vc-doc-header__pic img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; }
.vc-back { margin-top: 2em; }
.vc-cv-list { max-width: 720px; margin: 0 auto; list-style: none; padding: 0; display: grid; gap: 8px; }
.vc-cv-list__item { background: #fff; border: 1px solid var(--vc-border); border-left: 3px solid var(--vc-red); padding: 12px 18px; border-radius: var(--vc-radius); }
.vc-cv-list__src { color: var(--vc-text-muted); font-size: .9rem; }
.vc-doctors { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.vc-doctor { margin: 0; text-align: center; }
.vc-doctor__pic { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin: 0 auto 14px; box-shadow: var(--vc-shadow); }
.vc-doctor__name { font-size: 1.15rem; margin-bottom: .2em; }
.vc-doctor__name a { color: inherit; }
.vc-doctor__bio { color: var(--vc-text-muted); font-size: .92rem; }

/* ---------- 11. WooCommerce overrides ---------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-radius: var(--vc-radius); border-left: 4px solid var(--vc-red); background: var(--vc-bg-soft); padding: 14px 18px; margin-bottom: 16px; list-style: none; }
.woocommerce-error { border-left-color: #d62828; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; padding: 0; list-style: none; margin: 0; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; background: #fff; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); padding: 18px; text-align: center; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 1.1rem; padding: 8px 0; }
.woocommerce ul.products li.product .price { color: var(--vc-red); font-weight: 700; }
.woocommerce .button, .woocommerce a.button, .woocommerce-page .button { background: var(--vc-red-button) !important; color: #fff !important; border-radius: var(--vc-radius-pill) !important; padding: 12px 26px !important; font-weight: 800 !important; }
.woocommerce .button:hover { background: var(--vc-red-dark) !important; }
.woocommerce div.product .product_title { margin-bottom: .4em; }
.woocommerce div.product .price { color: var(--vc-red); font-size: 1.6rem; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 10px 12px; border-radius: var(--vc-radius); color: var(--vc-text); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--vc-red); color: #fff; }

/* ---------- 11a. Reference-matched sections (#dr-lamm → #clinical-studies) ---------- */

/* shared row pattern (alternating img-left / img-right) */
.vc-row { padding: 60px 0; background: var(--vc-bg-soft); }
.vc-row--soft { background: var(--vc-bg-soft); }
.vc-row.vc-row--img-left + .vc-row.vc-row--img-right { background: var(--vc-bg-soft); }
/* #enhanced-formula is white in the reference */
#enhanced-formula.vc-row { background: #fff; }
.vc-row__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.vc-row__img img { width: 100%; height: auto; border-radius: var(--vc-radius); display: block; }
.vc-row__copy h2 { font-size: clamp(1.6rem, 1.8vw + 1rem, 2.4rem); margin-bottom: .6em; line-height: 1.15; }
.vc-row__copy p  { color: var(--vc-text-muted); font-size: 1.05rem; margin-bottom: 1em; max-width: 560px; }
.vc-row--img-right .vc-row__copy { order: 1; }
.vc-row--img-right .vc-row__img  { order: 2; }
.vc-text-red { color: var(--vc-red); }

/* Hero — reference layout (copy LEFT, image RIGHT). Real bg: solid #dae6eb. */
.vc-hero { background: var(--vc-bg-hero); padding: 40px 0 50px; border-bottom: 5px solid var(--vc-border); }
.vc-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vc-hero__title { font-size: clamp(2.2rem, 3.6vw + .6rem, 3.6rem); font-weight: 900; line-height: 1.05; margin-bottom: 18px; color: var(--vc-text); letter-spacing: -.02em; }
.vc-hero__title span { display: block; }
.vc-hero__sub { font-size: 1rem; color: var(--vc-text-muted); margin-bottom: 22px; max-width: 540px; }
.vc-hero__bullets-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.vc-hero__bullets { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.vc-hero__bullets li { font-size: 1.02rem; color: var(--vc-text); padding-left: 28px; position: relative; }
.vc-hero__bullets li::before { content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 9px; border-left: 3px solid var(--vc-red); border-bottom: 3px solid var(--vc-red); transform: rotate(-45deg); }
.vc-hero__cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 14px; }
.vc-hero__seal { width: 110px; height: auto; }
.vc-hero__guarantee { color: var(--vc-text-muted); display: block; }
.vc-hero__media { text-align: center; }
.vc-hero__product { max-width: 100%; height: auto; filter: drop-shadow(0 16px 32px rgba(0,0,0,.18)); }
.vc-hero__tp { margin: 24px auto 0; max-width: 320px; }

/* 02 dr-lamm */
#dr-lamm { background: #fff; padding: 60px 0 0; }
.vc-dr-lamm__title { text-align: center; font-size: clamp(1.7rem, 1.6vw + 1rem, 2.4rem); font-weight: 700; line-height: 1.3; max-width: 900px; margin: 0 auto 40px; color: var(--vc-text); }
.vc-dr-lamm__cols { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.vc-dr-lamm__left { text-align: center; }
.vc-dr-lamm__photo { width: 100%; max-width: 460px; height: auto; margin: 0 auto; display: block; }
.vc-dr-lamm__cred { display: block; max-width: 360px; margin: 18px auto 0; font-family: var(--vc-font); font-size: .95rem; font-weight: 700; line-height: 1.45; color: var(--vc-text); text-align: center; }
.vc-dr-lamm__right { position: relative; padding-left: 8px; }
.vc-dr-lamm__box { width: 100%; max-width: 540px; height: auto; margin: 0 auto 8px; display: block; }
.vc-dr-lamm__quote {
	position: relative;
	margin: 0;
	padding: 36px 40px 32px;
	font-family: 'Times New Roman', Georgia, serif;
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.45;
	color: var(--vc-text);
	/* Brushstroke effect — light blue irregular background */
	background: linear-gradient(135deg, transparent 0%, transparent 4%, #d4dde3 6%, #c7d3da 12%, #d4dde3 20%, #c7d3da 30%, #d4dde3 50%, #c7d3da 75%, #d4dde3 90%, transparent 96%, transparent 100%);
	border-radius: 4px 30px 60% 8px / 8px 60% 30px 4px;
	transform: rotate(-0.3deg);
}
.vc-dr-lamm__quotemark { position: absolute; top: 10px; left: 14px; font-family: Georgia, serif; font-size: 3.6rem; line-height: 1; color: #5a6770; font-style: normal; }
.vc-dr-lamm__quote cite { display: block; margin-top: 18px; text-align: right; font-style: normal; }
.vc-dr-lamm__quote cite img { display: inline-block; max-height: 36px; width: auto; }
.vc-dr-lamm__aso { background: var(--vc-bg-soft); padding: 28px 0; margin-top: 56px; text-align: center; }
.vc-dr-lamm__aso img { max-width: 1000px; width: 100%; height: auto; margin: 0 auto; }

/* 04 clinically tested */
#clinically-tested { background: #fff; padding: clamp(56px, 6vw, 88px) 0; }
.vc-clinical { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.vc-clinical__copy h2 { text-align: left; }
.vc-clinical__copy .vc-section__sub { text-align: left; max-width: none; margin: 0 0 1.5em; }
.vc-clinical__report { text-align: center; }
.vc-clinical__report img { max-width: 100%; }
.vc-clinical__icons { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2em; }
.vc-cs-icon { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px; border-radius: var(--vc-radius); background: var(--vc-bg-soft); }
.vc-cs-icon img { height: 56px; width: auto; }
.vc-cs-icon span { font-weight: 700; font-size: .92rem; }

/* 08 how it works (3 image cards) */
#how-it-works { background: var(--vc-bg-soft); padding: clamp(56px, 6vw, 88px) 0; text-align: center; }
.vc-hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 2em; }
.vc-hiw-card { background: #fff; border-radius: var(--vc-radius); overflow: hidden; box-shadow: var(--vc-shadow); }
.vc-hiw-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vc-hiw-card__title { padding: 18px 16px; margin: 0; font-size: 1.1rem; }

/* 09 ingredients (circle cards) */
#ingredients { background: #fff; padding: clamp(56px, 6vw, 88px) 0; text-align: center; }
.vc-ing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 2em; }
.vc-ing-card { text-align: center; }
.vc-ing-card__img { width: 160px; height: 160px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; box-shadow: var(--vc-shadow); }
.vc-ing-card__img img { width: 100%; height: 100%; object-fit: cover; }
.vc-ing-card__name { margin: 0; font-size: 1.05rem; }

/* 10 demographic (4 with man-N.png portraits) */
#for-men { background: var(--vc-bg-soft); padding: clamp(56px, 6vw, 88px) 0; text-align: center; }
.vc-demo-grid--ref { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2em; }
.vc-demo-card--ref { background: #fff; border-radius: var(--vc-radius); padding: 24px 18px; text-align: center; box-shadow: var(--vc-shadow); border-top: none; }
.vc-demo-card__img { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; }
.vc-demo-card__img img { width: 100%; height: 100%; object-fit: cover; }
.vc-demo-card--ref h3 { font-size: 1.02rem; margin: 0; }

/* 11 user reviews (Trustpilot grid + fans) */
#user-reviews { background: #fff; padding: clamp(56px, 6vw, 88px) 0; text-align: center; }
.vc-tp__header { display: block; margin: 0 auto 24px; max-width: 240px; }
.vc-tp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 2em 0; text-align: left; }
.vc-tp-card { background: var(--vc-bg-soft); border-radius: var(--vc-radius); padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.vc-tp-card__stars { width: 110px; height: auto; }
.vc-tp-card__title { margin: 0; font-size: 1.05rem; line-height: 1.25; }
.vc-tp-card__quote { color: var(--vc-text-muted); margin: 0; font-size: .94rem; flex: 1; }
.vc-tp-card__verified { width: 100px; height: auto; }
.vc-tp__fans { margin-top: 3em; padding-top: 2em; border-top: 1px solid var(--vc-border); }
.vc-tp__fans h3 { font-size: 1.6rem; margin-bottom: .3em; }
.vc-tp__fans h4 { font-size: 1.1rem; color: var(--vc-text-muted); display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 2em; }
.vc-fan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 1em; }
.vc-fan-tile { aspect-ratio: 1; overflow: hidden; border-radius: var(--vc-radius); background: var(--vc-bg-soft); }
.vc-fan-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--vc-ease); }
.vc-fan-tile:hover img { transform: scale(1.05); }

/* 12 authenticity */
#authenticity { background: #fff8e5; padding: clamp(48px, 5vw, 72px) 0; border-top: 1px solid #f0e3b4; border-bottom: 1px solid #f0e3b4; }
.vc-authenticity { display: grid; grid-template-columns: 120px 1fr; gap: 32px; align-items: center; }
.vc-authenticity h2 { font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem); margin-bottom: .5em; }
.vc-authenticity h2 strong { color: var(--vc-red); }
.vc-authenticity p { color: var(--vc-text-muted); margin-bottom: 1.2em; }

/* 13 competition */
#competition { background: var(--vc-bg-soft); padding: clamp(56px, 6vw, 88px) 0; text-align: center; }

/* 14 best results (3 steps) */
#best-results { background: #fff; padding: clamp(56px, 6vw, 88px) 0; text-align: center; }
.vc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2em; }
.vc-step { background: var(--vc-bg-soft); border-radius: var(--vc-radius); padding: 28px 22px; text-align: center; }
.vc-step__num { display: inline-block; background: var(--vc-red); color: #fff; padding: 6px 16px; border-radius: var(--vc-radius-pill); font-weight: 800; font-size: .9rem; margin-bottom: 14px; letter-spacing: .04em; }
.vc-step h3 { margin-bottom: .5em; font-size: 1.1rem; }
.vc-step p  { color: var(--vc-text-muted); margin: 0; }

/* 15 daily routine */
#daily-routine { background: var(--vc-bg-soft); padding: clamp(56px, 6vw, 88px) 0; text-align: center; }
.vc-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 2em 0; position: relative; }
.vc-days::before { content: ''; position: absolute; left: 8%; right: 8%; top: 22px; height: 2px; background: linear-gradient(90deg, var(--vc-red), #f5a623 60%, var(--vc-red)); z-index: 0; }
.vc-day { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.vc-day__pin { display: inline-block; background: var(--vc-red); color: #fff; padding: 10px 18px; border-radius: var(--vc-radius-pill); font-weight: 800; font-size: .92rem; margin-bottom: 14px; }
.vc-day p { color: var(--vc-text-muted); font-size: .94rem; margin: 0; }

/* 16 guarantee giant seal */
.vc-row__img--seal { display: flex; justify-content: center; }
.vc-seal--giant { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.vc-seal--giant svg { position: absolute; inset: 0; }
.vc-seal--giant .vc-seal__txt { position: relative; z-index: 1; text-align: center; }
.vc-seal--giant .vc-seal__txt strong { display: block; font-size: 2.6rem; color: var(--vc-red); line-height: 1; margin-bottom: 8px; font-weight: 900; letter-spacing: .02em; }
.vc-seal--giant .vc-seal__txt small  { display: block; font-size: .78rem; letter-spacing: .04em; color: var(--vc-text-muted); font-weight: 700; }

/* 18 clinical studies (references) */
#clinical-studies { background: #fff; padding: clamp(48px, 5vw, 72px) 0; text-align: center; }
.vc-refs-row { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; margin: 2em 0 1.5em; }
.vc-ref { font-family: 'Times New Roman', Georgia, serif; font-style: italic; font-weight: 700; color: var(--vc-text-muted); font-size: 1.02rem; padding: 8px 18px; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); background: var(--vc-bg-soft); }
.vc-strip__footnote { color: var(--vc-text-muted); margin: 0; max-width: 720px; margin: 0 auto; }

/* ---------- 11b. Extended sections (reference 17-section parity) ---------- */
.vc-text-center { text-align: center; }
.vc-text-muted  { color: var(--vc-text-muted); }
.vc-section__more { text-align: center; margin-top: 2.5em; }
.vc-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--vc-red); font-weight: 800; margin-bottom: .6em; }

/* Strip: guarantee */
.vc-strip { padding: clamp(48px, 5vw, 80px) 0; }
.vc-strip--guarantee { background: var(--vc-bg-soft); }
.vc-strip__inner { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; }
.vc-strip__copy h2 { margin-bottom: .5em; }
.vc-strip__copy p { color: var(--vc-text-muted); margin-bottom: 1.2em; max-width: 640px; }
.vc-seal--lg { width: 140px; height: 140px; position: relative; }
.vc-seal--lg svg { position: absolute; inset: 0; margin: auto; opacity: 1; }
.vc-seal--lg .vc-seal__txt { position: relative; z-index: 1; text-align: center; padding: 18px 12px; }
.vc-seal--lg .vc-seal__txt strong { display: block; font-size: 1.4rem; color: var(--vc-red); line-height: 1; margin-bottom: 4px; letter-spacing: .02em; }
.vc-seal--lg .vc-seal__txt small  { display: block; font-size: .58rem; letter-spacing: .04em; color: var(--vc-text-muted); font-weight: 700; }

/* Doctor endorsement */
.vc-doc-endorse { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; }
.vc-doc-endorse__photo img { width: 260px; height: 260px; object-fit: cover; border-radius: 50%; border: 6px solid var(--vc-bg-soft); box-shadow: var(--vc-shadow); }
.vc-doc-endorse__photo-placeholder { width: 260px; height: 260px; border-radius: 50%; background: linear-gradient(135deg, #f7f6f2, #e1e3e8); display: flex; align-items: center; justify-content: center; font-family: var(--vc-font-display); font-size: 4rem; font-weight: 900; color: var(--vc-text-muted); }
.vc-doc-endorse__copy h2 { margin-bottom: .3em; }
.vc-doc-endorse__credentials { color: var(--vc-text-muted); font-style: italic; margin-bottom: 1.2em; }
.vc-doc-endorse__quote { border-left: 4px solid var(--vc-red); padding: 8px 0 8px 18px; margin: 0 0 .8em; font-size: 1.12rem; font-style: italic; color: var(--vc-text); }
.vc-doc-endorse__sig { font-weight: 700; color: var(--vc-text); margin: 0; }

/* Media logos strip */
.vc-strip--media { background: var(--vc-bg-soft); padding: 44px 0; }
.vc-strip__eyebrow { display: block; text-align: center; margin-bottom: 1.4em; }
.vc-media-row { display: flex; gap: 56px; align-items: center; justify-content: center; flex-wrap: wrap; }
.vc-media-row img { height: 44px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1) opacity(.65); transition: filter .15s var(--vc-ease); }
.vc-media-row img:hover { filter: grayscale(0) opacity(1); }
.vc-media-row__placeholder { font-family: 'Times New Roman', Georgia, serif; font-weight: 700; font-size: 1.35rem; color: var(--vc-text-muted); letter-spacing: .02em; font-style: italic; }

/* Clinical proof — big stats */
.vc-section--proof { background: #fff; }
.vc-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin: 2em 0; }
.vc-stat { text-align: center; padding: 24px 16px; }
.vc-stat__num { font-family: var(--vc-font-display); font-weight: 900; font-size: clamp(2.6rem, 4.5vw, 4rem); color: var(--vc-red); line-height: 1; letter-spacing: -.02em; }
.vc-stat__num sup { font-size: .5em; font-weight: 800; color: var(--vc-red); vertical-align: top; line-height: 1; }
.vc-stat__lbl { color: var(--vc-text); font-size: 1rem; margin-top: 10px; line-height: 1.35; }
.vc-stat__lbl strong { display: block; }

/* How it works */
.vc-section--how { background: var(--vc-bg-soft); }
.vc-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 2em; }
.vc-how-card { background: #fff; border-radius: var(--vc-radius); padding: 32px 24px; text-align: center; box-shadow: var(--vc-shadow); }
.vc-how-card__icon { margin-bottom: 16px; display: flex; justify-content: center; }
.vc-how-card h3 { margin-bottom: .5em; }
.vc-how-card p { color: var(--vc-text-muted); margin: 0; }

/* Demographic 4-col */
.vc-section--demo { background: #fff; }
.vc-demo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2em; }
.vc-demo-card { background: var(--vc-bg-soft); border-radius: var(--vc-radius); padding: 28px 22px; text-align: center; border-top: 4px solid var(--vc-red); }
.vc-demo-card__ico { font-size: 2.2rem; margin-bottom: 12px; }
.vc-demo-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.vc-demo-card p { color: var(--vc-text-muted); font-size: .94rem; margin: 0; }

/* Testimonials extended */
.vc-section--testi { background: var(--vc-bg-soft); }
.vc-testi--card { background: #fff; }
.vc-testi__stars { color: #f5a623; font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 10px; }
.vc-testi__by { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.vc-testi__verified { font-size: .75rem; color: var(--vc-success); font-weight: 700; }

/* Fan photos grid */
.vc-section--fans { background: #fff; padding: 56px 0; }
.vc-fan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 2em; }
.vc-fan-tile { aspect-ratio: 1; overflow: hidden; border-radius: var(--vc-radius); background: var(--vc-bg-soft); }
.vc-fan-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--vc-ease); }
.vc-fan-tile:hover img { transform: scale(1.05); }

/* Counterfeit warning */
.vc-strip--counterfeit { background: #fff8e5; border-top: 1px solid #f0e3b4; border-bottom: 1px solid #f0e3b4; }
.vc-strip--counterfeit .vc-strip__inner { grid-template-columns: 100px 1fr; gap: 32px; }
.vc-strip--counterfeit .vc-strip__copy h2 { color: var(--vc-text); margin-bottom: .4em; }

/* Comparison table */
.vc-section--compare { background: var(--vc-bg-soft); }
.vc-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2em; }
.vc-compare__col { background: #fff; border-radius: var(--vc-radius); padding: 32px 28px; box-shadow: var(--vc-shadow); }
.vc-compare__col--us   { border-top: 4px solid var(--vc-red); }
.vc-compare__col--them { border-top: 4px solid #b8b8b8; opacity: .92; }
.vc-compare__col h3 { margin-bottom: 1em; }
.vc-compare__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.vc-compare__col ul li { font-size: 1.02rem; }
.vc-compare__col--us  ul li::first-letter { color: var(--vc-success); font-weight: 800; }
.vc-compare__col--them ul li { color: var(--vc-text-muted); }
.vc-compare__col--them ul li::first-letter { color: #d62828; font-weight: 800; }

/* Usage steps */
.vc-section--usage { background: #fff; }
.vc-usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 2em; }
.vc-usage-step { text-align: center; padding: 20px; }
.vc-usage-step__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--vc-red); color: #fff; font-weight: 900; font-size: 1.4rem; margin-bottom: 14px; }
.vc-usage-step h3 { margin-bottom: .4em; }
.vc-usage-step p { color: var(--vc-text-muted); margin: 0; }

/* Results timeline */
.vc-section--timeline { background: var(--vc-bg-soft); }
.vc-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 2em; position: relative; }
.vc-timeline::before { content: ''; position: absolute; left: 12.5%; right: 12.5%; top: 24px; height: 2px; background: linear-gradient(90deg, var(--vc-red), #f5a623 60%, var(--vc-red)); z-index: 0; }
.vc-timeline__step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.vc-timeline__pin { display: inline-block; background: var(--vc-red); color: #fff; padding: 10px 18px; border-radius: var(--vc-radius-pill); font-weight: 800; font-size: .9rem; margin-bottom: 18px; }
.vc-timeline__step h3 { margin-bottom: .4em; font-size: 1.05rem; }
.vc-timeline__step p  { color: var(--vc-text-muted); font-size: .9rem; margin: 0; }
.vc-timeline__step--final .vc-timeline__pin { background: var(--vc-red-dark); }

/* Guarantee CTA band (dark) */
.vc-band { padding: clamp(48px, 6vw, 80px) 0; }
.vc-band--dark { background: linear-gradient(135deg, #1a1d23 0%, #2c3138 100%); color: #fff; }
.vc-band__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.vc-band--dark h2 { color: #fff; margin-bottom: .5em; }
.vc-band--dark p { color: #c9cdd4; margin-bottom: 1.6em; font-size: 1.1rem; }
.vc-band__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.vc-band__sub { color: #9aa0a8; margin: 0; }
.vc-band__sub strong { color: #fff; }

/* References */
.vc-strip--refs { background: #fff; padding: 48px 0; }
.vc-refs-row { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; justify-content: center; margin-bottom: 1.4em; }
.vc-ref { font-family: 'Times New Roman', Georgia, serif; font-style: italic; font-weight: 700; color: var(--vc-text-muted); font-size: 1.05rem; padding: 6px 16px; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); }
.vc-strip__footnote { text-align: center; color: var(--vc-text-muted); margin: 0; max-width: 720px; margin: 0 auto; }

/* ---------- 11d. /cart/ page — product configurator landing ---------- */
.vc-cart-page { background: #fff; }

/* promo header */
.vc-cart-promo { background: linear-gradient(180deg, #fff 0%, var(--vc-bg-soft) 100%); padding: 40px 0 24px; border-bottom: 1px solid var(--vc-border); }
.vc-cart-promo__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; }
.vc-cart-promo__img img { width: 100%; max-width: 560px; display: block; margin: 0 auto; }
.vc-cart-promo__copy { padding-left: 8px; }
.vc-cart-promo__title { font-size: clamp(1.6rem, 1.6vw + 1rem, 2.4rem); line-height: 1.15; margin-bottom: 16px; font-weight: 800; }
.vc-cart-promo__title span { display: inline-block; }
.vc-cart-promo__title .d-block { display: block; }
.vc-cart-promo__sub { background: #f0f0f0; padding: 12px 18px; border-radius: var(--vc-radius); color: var(--vc-text); font-size: 1.05rem; margin-bottom: 10px; }
.vc-cart-promo__cta { background: var(--vc-red); color: #fff; padding: 12px 18px; border-radius: var(--vc-radius); font-weight: 800; letter-spacing: .02em; margin: 0; text-align: center; }

/* options bar */
.vc-cart-options { padding: 16px 0; }
.vc-cart-options__inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 14px 20px; background: var(--vc-bg-soft); border-radius: var(--vc-radius); }
.vc-cart-options__lbl { font-weight: 700; }
.vc-cart-options__country { padding: 8px 12px; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); font: inherit; background: #fff; }
.vc-cart-options__guarantee { margin-left: auto; color: var(--vc-text-muted); font-size: .94rem; }
.vc-cart-options__guarantee strong { color: var(--vc-red); }

/* package cards */
.vc-pp-entries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 48px 24px; }
.vc-pp { background: #fff; border: 2px solid var(--vc-border); border-radius: var(--vc-radius); padding: 28px 24px 30px; position: relative; display: flex; flex-direction: column; text-align: center; transition: transform .15s var(--vc-ease), box-shadow .15s, border-color .15s; }
.vc-pp:hover { transform: translateY(-4px); box-shadow: var(--vc-shadow-lg); }
.vc-pp--popular { border-color: var(--vc-red); }
.vc-pp--best    { border-color: var(--vc-red); box-shadow: var(--vc-shadow); }
.vc-pp__badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--vc-red); color: #fff; font-size: .78rem; font-weight: 800; padding: 6px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.vc-pp--best .vc-pp__badge { background: #f5a623; color: var(--vc-text); }
.vc-pp__title { margin-bottom: 18px; }
.vc-pp__pack { display: block; font-family: var(--vc-font-display); font-weight: 800; font-size: 1.6rem; color: var(--vc-text); line-height: 1; }
.vc-pp__supply { display: block; color: var(--vc-text-muted); font-size: .94rem; margin-top: 4px; }
.vc-pp__img { margin: 8px auto 18px; }
.vc-pp__img img { max-width: 220px; height: auto; filter: drop-shadow(0 8px 16px rgba(0,0,0,.12)); }
.vc-pp__savings { background: #fffbe6; color: #8a6d1f; font-weight: 800; font-size: .92rem; padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 12px; letter-spacing: .04em; }
.vc-pp__price { margin-bottom: 4px; line-height: 1; }
.vc-pp__regular { color: var(--vc-text-muted); font-size: 1.05rem; text-decoration: line-through; margin-right: 8px; }
.vc-pp__regular .woocommerce-Price-amount { color: inherit; }
.vc-pp__current { font-family: var(--vc-font-display); font-weight: 900; font-size: 2.4rem; color: var(--vc-red); }
.vc-pp__current .woocommerce-Price-amount { color: inherit; }
.vc-pp__perbox { color: var(--vc-text-muted); font-size: .9rem; margin: 6px 0 18px; }
.vc-pp .vc-btn { margin-bottom: 14px; }
.vc-pp__perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; text-align: left; }
.vc-pp__perks li { font-size: .92rem; color: var(--vc-text); }

/* trust strip */
.vc-cart-trust { background: var(--vc-bg-soft); padding: 36px 0 28px; border-top: 1px solid var(--vc-border); }
.vc-cart-trust__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; margin-bottom: 24px; }
.vc-cart-trust__item strong { display: block; color: var(--vc-text); font-size: 1rem; margin-bottom: 2px; }
.vc-cart-trust__item span { color: var(--vc-text-muted); font-size: .88rem; }
.vc-cart-trust__pay { display: flex; gap: 10px; justify-content: center; margin-bottom: 12px; }
.vc-cart-trust__login { text-align: center; color: var(--vc-text-muted); margin: 0; }
.vc-cart-trust__login a { font-weight: 700; }

/* ---------- 11c. Menu pages (counterfeit-check, contact) ---------- */
.vc-narrow-page { max-width: 880px; margin: 0 auto; padding: 56px 0 80px; }
.vc-narrow-page h1 { text-align: center; margin-bottom: .4em; font-size: clamp(2rem, 2vw + 1.4rem, 2.8rem); }
.vc-narrow-page .vc-eyebrow { display: block; text-align: center; margin-bottom: 12px; }
.vc-narrow-page .vc-lead { text-align: center; color: var(--vc-text-muted); margin-bottom: 2.4em; font-size: 1.08rem; }

/* counterfeit-check */
.vc-cf-card { background: #fff; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); padding: 36px 32px; box-shadow: var(--vc-shadow); margin-bottom: 2.5em; }
.vc-cf-card__title { font-size: 1.4rem; margin-bottom: .3em; }
.vc-cf-card__hint  { color: var(--vc-text-muted); margin-bottom: 1.4em; }
.vc-cf-card .leh-cf-form { margin: 0; max-width: none; }
.vc-cf-howto { background: var(--vc-bg-soft); border-radius: var(--vc-radius); padding: 26px 28px; margin-bottom: 2em; }
.vc-cf-howto h3 { font-size: 1.15rem; margin-bottom: .6em; }
.vc-cf-howto ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.vc-cf-howto ul li { padding-left: 24px; position: relative; }
.vc-cf-howto ul li::before { content: '•'; position: absolute; left: 4px; color: var(--vc-red); font-weight: 800; }
.vc-cf-disclaimer { text-align: center; color: var(--vc-text-muted); }

/* contact page */
.vc-contact-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; margin-bottom: 3em; align-items: start; }
.vc-contact-cols__phones { background: var(--vc-bg-soft); border-radius: var(--vc-radius); padding: 28px 28px; }
.vc-contact-cols__phones h3 { font-size: 1.05rem; margin-bottom: .6em; text-transform: uppercase; letter-spacing: .04em; color: var(--vc-red); }
.vc-phone-list { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 10px; }
.vc-phone-list li { font-size: 1.05rem; }
.vc-phone-list li span { color: var(--vc-text-muted); display: inline-block; min-width: 110px; }
.vc-phone-list li a { color: var(--vc-text); }
.vc-phone-list li a:hover { color: var(--vc-red); }
.vc-contact-hours { color: var(--vc-text-muted); margin-bottom: 1.4em; }
.vc-contact-cols__form h3 { font-size: 1.15rem; margin-bottom: 1em; }

.vc-contact-form { display: grid; gap: 16px; }
.vc-contact-form__row { display: grid; gap: 6px; }
.vc-contact-form__row label { font-weight: 700; font-size: .95rem; }
.vc-contact-form__row input,
.vc-contact-form__row textarea { font: inherit; padding: 12px 16px; border: 1px solid var(--vc-border); border-radius: var(--vc-radius); background: #fff; }
.vc-contact-form__row input:focus,
.vc-contact-form__row textarea:focus { outline: 2px solid var(--vc-red); outline-offset: 0; border-color: var(--vc-red); }
.vc-contact-form__row textarea { resize: vertical; min-height: 140px; }
.vc-req { color: var(--vc-red); }
.vc-contact-form__hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.vc-contact-form__submit { margin-top: 8px; }
.vc-contact-form__submit button { padding: 14px 32px; }
.vc-contact-result { padding: 12px 18px; border-radius: var(--vc-radius); min-height: 24px; }
.vc-contact-result--loading { background: #f4f4f4; color: #555; }
.vc-contact-result--ok      { background: #e6f7ed; color: #1d6e3b; border-left: 4px solid #1d6e3b; }
.vc-contact-result--err     { background: #fdecec; color: #b00020; border-left: 4px solid #b00020; }

.vc-quick-answers { background: #fff; border-top: 1px solid var(--vc-border); padding-top: 2em; }
.vc-quick-answers h2 { font-size: 1.4rem; margin-bottom: .5em; }
.vc-quick-answers ul { padding-left: 1.2em; }
.vc-quick-answers ul li { margin-bottom: 8px; }

/* ---------- 12. Responsive ---------- */
@media (max-width: 1200px) {
	.vc-menu { gap: 16px; }
	.vc-menu__link, .vc-menu a { font-size: .9rem; }
	.vc-header__inner { gap: 16px; }
}
@media (max-width: 1024px) {
	.vc-menu { gap: 12px; }
	.vc-header__inner { gap: 12px; }
	.vc-brand__img { max-height: 48px; max-width: 170px; }
	.vc-btn { padding: 14px 22px; font-size: .95rem; letter-spacing: .04em; }
}
@media (max-width: 900px) {
	.vc-hero__inner { grid-template-columns: 1fr; gap: 32px; }
	.vc-hero__copy { padding-right: 0; }
	.vc-footer__grid { grid-template-columns: 1fr 1fr; }
	.vc-ing-header { grid-template-columns: 1fr; }
	.vc-doc-header { grid-template-columns: 1fr; text-align: center; }
	.vc-doc-header__pic { max-width: 200px; margin: 0 auto; }
	.vc-doc-endorse { grid-template-columns: 1fr; text-align: center; }
	.vc-doc-endorse__photo img,
	.vc-doc-endorse__photo-placeholder { margin: 0 auto; }
	.vc-doc-endorse__quote { border-left: 0; border-top: 4px solid var(--vc-red); padding: 18px 0 0; }
	.vc-strip__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
	.vc-strip__seal, .vc-strip__icon { margin: 0 auto; }
	.vc-how-grid { grid-template-columns: 1fr; }
	.vc-demo-grid { grid-template-columns: repeat(2, 1fr); }
	.vc-fan-grid { grid-template-columns: repeat(3, 1fr); }
	.vc-compare { grid-template-columns: 1fr; }
	.vc-usage-grid { grid-template-columns: 1fr; }
	.vc-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
	.vc-timeline::before { display: none; }
}
@media (max-width: 600px) {
	.vc-demo-grid { grid-template-columns: 1fr; }
	.vc-fan-grid  { grid-template-columns: repeat(2, 1fr); }
	.vc-timeline  { grid-template-columns: 1fr; }
	.vc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.vc-cart-promo__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
	.vc-pp-entries { grid-template-columns: 1fr; padding: 32px 16px; }
	.vc-cart-trust__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
	.vc-contact-cols { grid-template-columns: 1fr; gap: 32px; }
	.vc-narrow-page { padding: 36px 0 56px; }
}
@media (max-width: 720px) {
	.vc-header__inner { grid-template-columns: auto 1fr auto; }
	.vc-nav-toggle { display: inline-flex; align-items: center; justify-content: center; order: 3; }
	.vc-header__cta { display: none; }
	.vc-header__nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--vc-shadow-lg); padding: 16px var(--vc-gutter); z-index: 49; }
	.vc-header__nav.is-open { display: block; }
	.vc-menu--primary { flex-direction: column; align-items: stretch; gap: 0; }
	.vc-menu--primary > li { border-bottom: 1px solid var(--vc-border); }
	.vc-menu--primary > li:last-child { border-bottom: 0; }
	.vc-menu--primary a { padding: 14px 4px; display: block; }
	.vc-menu .sub-menu { position: static; box-shadow: none; padding-left: 16px; display: flex; }
	.vc-announce__inner { flex-direction: column; gap: 4px; padding: 8px var(--vc-gutter); font-size: .75rem; }
	.vc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.vc-footer__bottom-inner { flex-direction: column; text-align: center; }
	.vc-section { padding: 48px 0; }
	.vc-hero__title { font-size: 2rem; }
	.vc-hero__cta-row { flex-direction: column; align-items: stretch; }
	.vc-btn--xl { padding: 16px 28px; }
}
