/*
Theme Name: NovaHelix Labs
Theme URI: https://www.novahelixlabs.com/
Author: Vitalis
Description: Custom WooCommerce theme for NovaHelix Labs — a clean white-and-blue design for research peptide retail. Reskins the storefront without altering cart, checkout, or payment behaviour.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: novahelix
Tags: e-commerce, custom-menu, featured-images, translation-ready
WC requires at least: 7.0
WC tested up to: 9.4
*/

/* ============================================================
   NovaHelix Labs — design system
   Colour, type and spacing tokens. Change the brand here.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f2f6fc;
  --bg-softer: #f8fafd;
  --ink: #0b1c33;
  --ink-2: #3c4c63;
  --ink-3: #7b8aa0;
  --blue: #1d5eff;
  --blue-deep: #0a2540;
  --blue-tint: #e7efff;
  --line: #e3eaf5;
  --card: #ffffff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 1px 2px rgba(11,28,51,.04), 0 12px 32px -12px rgba(11,28,51,.10);
  --shadow-lg: 0 2px 4px rgba(11,28,51,.05), 0 24px 60px -20px rgba(11,28,51,.18);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
  --wrap-wide: 1320px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -.02em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 24px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  background: #fff; padding: 12px 20px; border-radius: 8px; box-shadow: var(--shadow-lg);
}

/* ---------- buttons ---------- */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: #c6d4ea; background: var(--bg-softer); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-deep); color: #fff; border: none;
  padding: 11px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-dark:hover { background: #0e3357; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #0d4de8; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.link-arrow {
  font-weight: 600; font-size: 15px; color: var(--ink);
  border-bottom: 1.5px solid var(--ink-3); padding-bottom: 2px;
}
.link-arrow:hover { color: var(--blue); border-color: var(--blue); }

/* ---------- announcement ---------- */
.announce {
  background: var(--blue-deep); color: #cfe0ff; text-align: center;
  font-size: 13.5px; padding: 9px 16px;
}
.announce strong { color: #fff; font-weight: 600; }
.announce a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); margin-left: 6px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; gap: 28px; height: 68px; }
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--ink); white-space: nowrap;
}
.site-logo svg { width: 30px; height: 30px; }
.site-logo .lab { color: var(--blue); }
.site-logo img { max-height: 40px; width: auto; }

.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 8px 13px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { background: var(--bg-soft); color: var(--ink); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -6px; background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; }

@media (max-width: 980px) {
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 11px 12px; font-size: 16px; }
  .menu-toggle { display: block; }
}
@media (max-width: 620px) {
  .wrap, .wrap-wide { padding: 0 18px; }
  .site-header .bar { gap: 12px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-dark { display: none; }
  .site-logo { font-size: 18px; }
  .announce { font-size: 12.5px; padding: 8px 14px; }
}

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 72px 0 64px; }
.eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--line); color: var(--ink-2); font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; padding: 8px 16px;
  border-radius: 999px; box-shadow: var(--shadow);
}
.eyebrow-chip .dot { width: 7px; height: 7px; border-radius: 99px; background: var(--blue); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04; letter-spacing: -.03em; margin: 22px 0 20px;
}
.hero h1 .alt { color: var(--blue); }
.hero .sub { font-size: 18.5px; color: var(--ink-2); max-width: 46ch; margin: 0 0 30px; }
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img .ph {
  border-radius: 26px; box-shadow: var(--shadow-lg); width: 100%;
  aspect-ratio: 4/4.1; object-fit: cover; object-position: center 22%;
}
.hero-float {
  position: absolute; left: -22px; bottom: 26px; background: #fff;
  border-radius: 16px; box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; gap: 12px; align-items: center; border: 1px solid var(--line);
}
.hero-float .pct { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--blue); }
.hero-float small { color: var(--ink-2); font-size: 12.5px; line-height: 1.35; display: block; max-width: 170px; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: 44px 0 40px; gap: 36px; }
  .hero-float { left: 10px; }
}

/* ---------- ticker ---------- */
.ticker { border-block: 1px solid var(--line); background: #fff; overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; gap: 44px; width: max-content; animation: nh-ticker 32s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.ticker-track .tick { color: var(--blue); font-weight: 700; }
@keyframes nh-ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- sections ---------- */
.block { padding: 84px 0; }
.block.soft { background: var(--bg-soft); }
.block.softer { background: var(--bg-softer); }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.display { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; max-width: 22ch; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head .lede { color: var(--ink-2); max-width: 52ch; margin: 12px 0 0; font-size: 16.5px; }
.fine { font-size: 12.5px; color: var(--ink-3); line-height: 1.55; max-width: 88ch; margin-top: 34px; }
.center { text-align: center; }
.center .display, .center .lede { margin-left: auto; margin-right: auto; }

/* ---------- grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1020px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3 { grid-template-columns: 1fr; } }

/* ---------- chips / perks / steps / stacks ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px;
  font-weight: 600; font-size: 14.5px; box-shadow: var(--shadow);
}
.chip svg { width: 17px; height: 17px; color: var(--blue); }

.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk { display: flex; gap: 14px; align-items: flex-start; }
.perk .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.perk b { display: block; font-size: 15px; }
.perk small { color: var(--ink-2); font-size: 13.5px; }
@media (max-width: 980px) { .perks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .perks { grid-template-columns: 1fr; } }

.step-card, .feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); }
.step-num, .feature-card .ic {
  width: 42px; height: 42px; border-radius: 12px; background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 18px;
}
.step-card h3, .feature-card h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 8px; }
.step-card p, .feature-card p { color: var(--ink-2); font-size: 15px; margin: 0; }

.stack-card {
  border-radius: var(--radius); padding: 30px 28px;
  background: linear-gradient(160deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
}
.stack-card .combo { font-weight: 600; color: var(--blue); font-size: 14px; }
.stack-card h3 { font-family: var(--font-display); font-size: 21px; }
.stack-card p { color: var(--ink-2); font-size: 15px; margin: 0; }

/* ---------- navy banner ---------- */
.banner {
  background: radial-gradient(120% 160% at 20% 0%, #14406e 0%, var(--blue-deep) 55%);
  color: #fff; border-radius: 28px; padding: 64px 56px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
.banner h2 { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; margin-bottom: 14px; }
.banner p { color: #b9cbe4; font-size: 16.5px; max-width: 50ch; }
.banner .eyebrow { color: #7fa8ff; }
.banner-media img { border-radius: 20px; width: 100%; aspect-ratio: 4/3.6; object-fit: cover; object-position: center 30%; box-shadow: var(--shadow-lg); }
.banner-stats { display: flex; gap: 28px; margin-top: 22px; padding: 20px 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; }
.banner .stat { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; }
.banner .stat small { display: block; font-size: 13px; font-weight: 500; font-family: var(--font-body); color: #b9cbe4; margin-top: 7px; }
.banner .btn-light { background: #fff; color: var(--blue-deep); }
.banner .btn-light:hover { background: #e8efff; color: var(--blue-deep); }
@media (max-width: 860px) { .banner { grid-template-columns: 1fr; padding: 44px 30px; } }

/* ---------- testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; }
.quote-card .stars { color: var(--blue); letter-spacing: 3px; font-size: 14px; }
.quote-card blockquote { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; margin: 0; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-card .who img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; }
.quote-card .who b { font-size: 14.5px; display: block; }
.quote-card .who small { color: var(--ink-3); font-size: 13px; }

/* ---------- newsletter ---------- */
.newsletter {
  border-radius: 28px; background: linear-gradient(160deg, var(--blue-tint), #f6f9ff 70%);
  border: 1px solid #d8e5fb; padding: 60px 48px; text-align: center;
}
.newsletter h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.newsletter p { color: var(--ink-2); max-width: 54ch; margin: 0 auto 28px; }
.newsletter form, .news-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter input[type=email], .news-form input {
  flex: 1; border: 1px solid #c9d8ef; border-radius: 999px; padding: 13px 20px;
  font-size: 15px; font-family: inherit; background: #fff; color: var(--ink); outline: none;
}
.newsletter input[type=email]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,94,255,.12); }
@media (max-width: 560px) { .newsletter form, .news-form { flex-direction: column; } }

/* ---------- page hero ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); padding: 64px 0 48px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 52px); line-height: 1.06; max-width: 20ch; }
.page-hero .lede { color: var(--ink-2); font-size: 17.5px; max-width: 58ch; margin-top: 16px; }

/* ---------- prose / editor content ---------- */
.prose { max-width: 780px; padding: 40px 0 60px; }
.prose h2 { font-family: var(--font-display); font-size: 24px; margin: 34px 0 10px; }
.prose h3 { font-family: var(--font-display); font-size: 19px; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-2); font-size: 15.5px; margin-bottom: 10px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose img { border-radius: var(--radius-sm); margin: 20px 0; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; }

/* ---------- accordions (FAQ shortcode) ---------- */
.acc-section { margin-bottom: 44px; }
.acc-section h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 18px; }
details.acc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
details.acc summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 15.5px;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary .plus { color: var(--blue); font-size: 20px; transition: transform .18s; flex: none; }
details.acc[open] summary .plus { transform: rotate(45deg); }
details.acc .acc-body { padding: 0 22px 20px; color: var(--ink-2); font-size: 15px; }

/* ---------- COA table shortcode ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
table.coa { border-collapse: collapse; width: 100%; min-width: 760px; font-size: 14px; }
table.coa th {
  text-align: left; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--bg-softer);
}
table.coa td { padding: 13px 18px; border-bottom: 1px solid var(--line); }
table.coa tr:last-child td { border-bottom: none; }
table.coa .purity { color: var(--blue); font-weight: 600; white-space: nowrap; }
table.coa a { color: var(--blue); font-weight: 600; }
table.coa a:hover { text-decoration: underline; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: 24px; box-shadow: var(--shadow-lg); }
.split .body p { color: var(--ink-2); margin-top: 14px; font-size: 16px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   WooCommerce
   Layout templates are restyled. Cart, checkout and payment
   markup is styled only — never structurally overridden.
   ============================================================ */

.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--bg-soft); color: var(--ink); padding: 15px 20px;
  list-style: none; margin: 0 0 22px; font-size: 14.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.woocommerce-error { background: #fdf2f2; border-color: #f5c6c6; }
.woocommerce-message .button, .woocommerce-info .button { order: 2; }

/* --- shop toolbar --- */
.shop-tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 34px 0 30px; }
.woocommerce-result-count { color: var(--ink-3); font-size: 14px; margin: 0 auto 0 0; order: 1; }
.woocommerce-ordering { order: 2; }
.woocommerce-ordering select, .shop-select {
  border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px;
  font-size: 14.5px; font-family: inherit; background: #fff; color: var(--ink);
}

/* --- product grid --- */
.woocommerce ul.products, ul.products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
@media (max-width: 1020px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .woocommerce ul.products, ul.products { grid-template-columns: 1fr; } }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }

ul.products li.product {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; margin: 0; width: auto; float: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cdd9ec; }
ul.products li.product .pimg { background: linear-gradient(180deg, #f6f9fe, #eef3fb); padding: 20px; display: block; }
ul.products li.product .pimg img { aspect-ratio: 1/1; object-fit: contain; mix-blend-mode: multiply; width: 100%; }
ul.products li.product .pbody { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
ul.products li.product .pcat { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h3 { font-family: var(--font-display); font-size: 18.5px; font-weight: 700; line-height: 1.25; padding: 0; margin: 0; }
ul.products li.product .price { color: var(--ink-2); font-size: 14.5px; font-weight: 500; }
ul.products li.product .price .amount, ul.products li.product .price ins { color: var(--ink); font-size: 16px; font-weight: 700; text-decoration: none; }
ul.products li.product .price del { color: var(--ink-3); font-size: 13.5px; margin-right: 6px; }
ul.products li.product .pgo {
  margin-top: auto; padding-top: 14px; display: flex; align-items: center;
  justify-content: space-between; font-weight: 600; font-size: 14.5px; color: var(--blue);
}
ul.products li.product .pgo .arr { transition: transform .18s; }
ul.products li.product:hover .pgo .arr { transform: translateX(4px); }
ul.products li.product .onsale {
  position: absolute; margin: 0; top: 14px; left: 14px; z-index: 2;
  background: var(--blue-tint); color: var(--blue); border-radius: 999px;
  padding: 4px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
ul.products li.product { position: relative; }
/* hide the default loop add-to-cart; the card links through to the product */
ul.products li.product .add_to_cart_button,
ul.products li.product .added_to_cart { display: none !important; }

/* --- breadcrumb --- */
.woocommerce-breadcrumb { font-size: 13.5px; color: var(--ink-3); padding: 22px 0 0; margin: 0; }
.woocommerce-breadcrumb a:hover { color: var(--blue); }

/* --- single product --- */
.single-product div.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 30px 0 70px; align-items: start;
}
@media (max-width: 980px) { .single-product div.product { grid-template-columns: 1fr; gap: 30px; } }
.single-product div.product .woocommerce-product-gallery {
  background: linear-gradient(180deg, #f6f9fe, #eef3fb); border: 1px solid var(--line);
  border-radius: 26px; padding: 40px; position: sticky; top: 92px; width: auto !important; float: none !important; margin: 0;
}
.single-product .woocommerce-product-gallery img { mix-blend-mode: multiply; }
.single-product div.product .summary { margin: 0 !important; width: auto !important; float: none !important; }
.single-product div.product .product_title {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; margin-bottom: 14px;
}
.single-product .product_meta { font-size: 13px; color: var(--ink-3); margin-top: 22px; }
.single-product .product_meta a { color: var(--ink-2); }
.pdp-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.single-product div.product p.price, .single-product div.product span.price {
  font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); margin: 10px 0 4px;
}
.single-product div.product p.price del { color: var(--ink-3); font-size: 18px; font-weight: 500; }
.single-product div.product p.price ins { text-decoration: none; }
.woocommerce-product-details__short-description { color: var(--ink-2); font-size: 15.5px; margin: 12px 0 6px; }

/* variation form — styled only, structure left to WooCommerce
   so variation-swatch and bundle plugins keep working */
.single-product form.cart { margin: 22px 0 0; }
.single-product table.variations { border: none; margin-bottom: 18px; width: 100%; }
.single-product table.variations td, .single-product table.variations th { border: none; padding: 6px 0; vertical-align: middle; }
.single-product table.variations label {
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink-2); margin: 0;
}
.single-product table.variations select {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 18px;
  font-size: 14.5px; font-family: inherit; background: #fff; color: var(--ink); min-width: 200px;
}
.single-product .reset_variations { font-size: 13px; color: var(--ink-3); }
.single-product .woocommerce-variation-price { margin-bottom: 14px; }
.single-product .woocommerce-variation-price .price { font-family: var(--font-display); font-size: 24px; font-weight: 700; }

.single-product form.cart .quantity { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; margin-right: 12px; }
.single-product form.cart .quantity input.qty {
  width: 62px; text-align: center; border: none; font-size: 15px; font-weight: 600;
  font-family: inherit; color: var(--ink); outline: none; padding: 13px 0; background: #fff;
}
.single-product form.cart button.single_add_to_cart_button {
  background: var(--blue-deep); color: #fff; border: none; border-radius: 999px;
  padding: 15px 34px; font-size: 15.5px; font-weight: 600; transition: background .15s, transform .15s;
}
.single-product form.cart button.single_add_to_cart_button:hover { background: #0e3357; transform: translateY(-1px); }
.single-product form.cart button.single_add_to_cart_button.disabled { opacity: .45; transform: none; }

.pdp-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 22px; font-size: 13.5px; color: var(--ink-2); }
.pdp-trust span { display: inline-flex; gap: 7px; align-items: center; }
.pdp-trust svg { width: 15px; height: 15px; color: var(--blue); }
.ruo-note {
  margin-top: 30px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: 13px; color: var(--ink-2);
}

/* tabs + related */
.woocommerce-tabs { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 10px; }
.woocommerce-tabs ul.tabs { list-style: none; padding: 0; margin: 22px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce-tabs ul.tabs li { margin: 0; background: none; border: none; padding: 0; }
.woocommerce-tabs ul.tabs li a {
  display: block; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.woocommerce-tabs ul.tabs li.active a { background: var(--blue-tint); border-color: var(--blue); color: var(--blue); }
.woocommerce-tabs .panel h2 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.woocommerce-tabs .panel { color: var(--ink-2); font-size: 15px; }
.woocommerce-tabs .panel h4 { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin: 22px 0 6px; }
.woocommerce-tabs .panel hr { display: none; }
.related.products, .upsells.products { grid-column: 1 / -1; padding-top: 20px; }
.related.products > h2, .upsells.products > h2 { font-family: var(--font-display); font-size: 30px; margin-bottom: 26px; }

/* --- cart & checkout: styling only --- */
.woocommerce-cart-form table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce table.shop_table {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  border-collapse: separate; border-spacing: 0; overflow: hidden; background: #fff;
}
.woocommerce table.shop_table th { background: var(--bg-softer); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); padding: 14px 18px; }
.woocommerce table.shop_table td { padding: 16px 18px; border-top: 1px solid var(--line); }
.woocommerce .cart_totals h2, .woocommerce-checkout h3, .woocommerce-billing-fields h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 14px; }
.woocommerce .cart-collaterals .cart_totals { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background: var(--blue-deep); color: #fff; border-radius: 999px;
  padding: 13px 26px; font-size: 14.5px; font-weight: 600; border: none; transition: background .15s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: #0e3357; color: #fff; }
.woocommerce .checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; background: #fff;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row .select2-container .select2-selection {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px;
  font-size: 15px; font-family: inherit; background: var(--bg-softer); color: var(--ink);
}
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus {
  border-color: var(--blue); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(29,94,255,.12);
}
.woocommerce form .form-row label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
}
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--line); padding: 18px; }
.woocommerce-checkout #payment div.form-row { padding: 18px; }
.woocommerce-checkout #payment div.payment_box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink-2); font-size: 14px; }
.woocommerce-checkout #payment div.payment_box::before { display: none; }

/* --- my account --- */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 11px 16px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--blue-tint); color: var(--blue); }

/* --- pagination --- */
.woocommerce nav.woocommerce-pagination ul { border: none; display: flex; gap: 8px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: 14px; color: var(--ink-2);
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--blue-tint); border-color: var(--blue); color: var(--blue); }

/* ---------- footer ---------- */
.site-footer { background: var(--blue-deep); color: #b9cbe4; margin-top: 90px; }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
.foot-main h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.foot-main ul { list-style: none; margin: 0; padding: 0; }
.foot-main a { display: block; padding: 5px 0; font-size: 14.5px; color: #b9cbe4; }
.foot-main a:hover { color: #fff; }
.foot-brand p { font-size: 14px; max-width: 34ch; margin-top: 14px; }
.foot-brand .site-logo { color: #fff; }
.foot-disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding: 26px 0; font-size: 12px; color: #8ba3c4; line-height: 1.6; }
.foot-disclaimer strong { color: #cfe0ff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0 30px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.foot-bottom img { height: 26px; filter: brightness(1.4); }
@media (max-width: 980px) { .foot-main { grid-template-columns: 1fr 1fr; } }

/* ---------- 404 / search ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); margin-bottom: 16px; }
.post-card h2 { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; }
.post-card .meta { color: var(--ink-3); font-size: 13px; }
.search-form { display: flex; gap: 10px; max-width: 440px; }
.search-form input[type=search] { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; font-size: 15px; font-family: inherit; outline: none; }
.search-form input[type=search]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,94,255,.12); }
