/* Genix v1.0.5 */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@500;600;700;800;900&display=swap');

/* ── RESET STOREFRONT ── */
.site-header { display: none !important; }
.storefront-handheld-footer-bar { display: none !important; }
#content { padding-top: 0 !important; }
.site-main { margin: 0 !important; padding: 0 !important; }
.site-content .col-full { padding: 0 !important; }
.col-full { max-width: 100% !important; padding: 0 !important; }
.hentry { margin: 0 !important; }

/* ── VARIABLES & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
:root {
    --green: #2CBA5F;
    --green-mid: #25a352;
    --green-pale: rgba(44,186,95,0.08);
    --green-line: rgba(44,186,95,0.22);
    --bg: #0A0A0A;
    --bg2: #111111;
    --bg3: #171717;
    --surface: #1C1C1C;
    --border: rgba(255,255,255,0.06);
    --border-l: rgba(255,255,255,0.1);
    --text: #EFEFEF;
    --muted: #888;
    --muted2: #555;
    --ff: 'Barlow', sans-serif;
    --ffc: 'Barlow Condensed', sans-serif;
}
html { scroll-behavior: smooth; }
body {
    background: var(--bg) !important;
    color: var(--text) !important;
    font-family: var(--ff) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 2px; }

/* ── GENIX NAV ── */
.genix-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 64px;
    width: 100%;
}
.genix-nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.genix-nav-logo img {
    height: 36px !important;
    width: auto !important;
    display: block !important;
}
.genix-nav-links { display: flex; align-items: center; }
.genix-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.genix-menu li a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.2s;
    font-family: var(--ffc);
}
.genix-menu li a:hover { color: #fff !important; }
.genix-menu li.current-menu-item > a,
.genix-menu li.current_page_item > a { color: #2CBA5F !important; }
.genix-nav-right { display: flex; align-items: center; gap: 0.75rem; }
.genix-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border-l);
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--ffc);
    white-space: nowrap;
}
.genix-cart-btn:hover { border-color: var(--green-line) !important; background: var(--bg3) !important; color: #fff !important; }

/* ── BREADCRUMB ── */
.woocommerce-breadcrumb {
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 1.25rem 2.5rem 0 !important;
    font-size: 0.75rem;
    color: var(--muted2) !important;
    background: none !important;
}
.woocommerce-breadcrumb a { color: #fff !important; text-decoration: none !important; }
.woocommerce-breadcrumb a:hover { color: #fff !important; }

/* ── WOOCOMMERCE SINGLE PRODUCT WRAPPER ── */
.woocommerce div.product,
.single-product .woocommerce,
.woocommerce-page .woocommerce {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 2rem 2.5rem 5rem !important;
}

/* ── PRODUCT LAYOUT ── */
.genix-product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* ── IMAGE PANEL ── */
.genix-img-main {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.genix-img-main img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}
.genix-img-main:hover img { transform: scale(1.04); }
.genix-img-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--ffc);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 4px 10px;
}
.badge-instock { background: rgba(44,186,95,0.12); color: var(--green); border: 1px solid var(--green-line); }
.badge-soldout { background: rgba(224,82,82,0.1); color: #e05252; border: 1px solid rgba(224,82,82,0.25); }
.genix-img-thumbs { display: flex; gap: 0.75rem; margin-top: 0.85rem; flex-wrap: wrap; }
.genix-img-thumb {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.genix-img-thumb img { width: 88%; height: 88%; object-fit: contain; }
.genix-img-thumb.active, .genix-img-thumb:hover { border-color: var(--green-line); }

/* ── INFO PANEL ── */
.genix-prod-category { font-family: var(--ff); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.genix-prod-title { font-family: var(--ffc); font-size: clamp(2rem,4vw,2.8rem); font-weight: 900; text-transform: uppercase; color: #fff; letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.5rem; }
.genix-prod-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.genix-prod-tag { font-family: var(--ff); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--bg3); border: 1px solid var(--border); border-radius: 100px; padding: 4px 10px; }
.genix-prod-desc { font-size: 0.88rem; color: #fff; line-height: 1.75; margin-bottom: 1.75rem; border-bottom: 1px solid var(--border); padding-bottom: 1.75rem; }
.genix-opt-label { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 0.65rem; }
.genix-dosage-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.genix-dosage-btn { background: var(--bg3); border: 1px solid var(--border-l); color: #fff; font-family: var(--ffc); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.55rem 1.3rem; border-radius: 7px; cursor: pointer; transition: all 0.2s; }
.genix-dosage-btn:hover { border-color: var(--green-line); color: #fff; }
.genix-dosage-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Hide default WC variation dropdown */
.woocommerce div.product form.cart .variations { display: none !important; }
.woocommerce div.product form.cart div.quantity { display: none !important; }
.woocommerce .quantity { display: none !important; }

/* ── QTY + PRICE ── */
.genix-qty-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.genix-qty-label { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-right: 1rem; }
.genix-qty-wrap { display: flex; align-items: center; }
.genix-qty-ctrl { display: flex; align-items: center; background: var(--bg3); border: 1px solid var(--border-l); border-radius: 8px; overflow: hidden; }
.genix-qty-btn { background: none; border: none; color: #fff; cursor: pointer; width: 38px; height: 38px; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: color 0.2s, background 0.2s; font-family: var(--ff); }
.genix-qty-btn:hover { color: #fff; background: var(--surface); }
.genix-qty-num { font-family: var(--ffc); font-size: 0.95rem; font-weight: 700; color: #fff; min-width: 36px; text-align: center; }
.genix-prod-price { font-family: var(--ffc); font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: 0.02em; }

/* ── ADD TO CART ── */
.genix-btn-atc {
    width: 100%;
    padding: 1rem !important;
    background: var(--green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 9px !important;
    font-family: var(--ffc) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.1s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    margin-bottom: 1.25rem !important;
}
.genix-btn-atc:hover { background: var(--green-mid) !important; }
.genix-btn-atc:active { transform: scale(0.99); }
.genix-btn-atc:disabled { background: var(--surface) !important; color: var(--muted) !important; cursor: not-allowed !important; border: 1px solid var(--border) !important; }

/* ── TRUST STRIP ── */
.genix-trust-strip { display: grid; grid-template-columns: repeat(3,1fr); background: var(--bg3); border: 1px solid var(--border); border-radius: 9px; overflow: hidden; margin-bottom: 1.5rem; }
.genix-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0.9rem 0.5rem; border-right: 1px solid var(--border); }
.genix-trust-item:last-child { border-right: none; }
.genix-trust-item svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; margin-bottom: 0.35rem; }
.genix-trust-item-title { font-family: var(--ffc); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; color: #fff; text-transform: uppercase; }
.genix-trust-item-sub { font-size: 0.68rem; color: #fff; margin-top: 0.1rem; }

/* ── PAYMENT ROW ── */
.genix-payment-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.genix-payment-label { font-size: 0.72rem; color: #fff; font-weight: 500; }
.genix-pay-icon { background: var(--bg3); border: 1px solid var(--border); border-radius: 5px; padding: 4px 10px; font-size: 0.7rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; font-family: var(--ffc); text-transform: uppercase; }

/* ── DISCLAIMER ── */
.genix-disclaimer { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem 5rem; }
.genix-disclaimer-box { background: rgba(224,82,82,0.04); border: 1px solid rgba(224,82,82,0.18); border-radius: 10px; padding: 1.5rem 1.75rem; }
.genix-disclaimer-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.genix-disclaimer-head svg { width: 18px; height: 18px; stroke: #e05252; fill: none; stroke-width: 2; flex-shrink: 0; }
.genix-disclaimer-title { font-family: var(--ffc); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #e05252; }
.genix-disclaimer-box p { font-size: 0.82rem; color: #fff; line-height: 1.75; margin-bottom: 0.6rem; }
.genix-disclaimer-box p:last-child { margin-bottom: 0; }
.genix-disclaimer-box strong { color: var(--text); font-weight: 600; }

/* ── SHOP / ARCHIVE – WOOSH-STYLE REDESIGN ── */

/* Remove sidebar, full-width layout */
.shop-body { display: block !important; padding: 0 !important; }
.shop-body .sidebar { display: none !important; }
.shop-body main { max-width: 100% !important; width: 100% !important; padding: 0 !important; }
.filter-tabs { display: none !important; }

/* Shop controls wrapper */
.genix-shop-controls { max-width: 1200px; margin: 0 auto; padding: 1.5rem 2.5rem 0.75rem; }
.genix-shop-search-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.genix-shop-search { flex: 1; position: relative; }
.genix-search-input { width: 100%; background: #181818; border: 1px solid var(--border); border-radius: 50px; padding: 0.72rem 1.25rem 0.72rem 2.75rem; color: #fff; font-family: var(--ff); font-size: 0.9rem; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.genix-search-input::placeholder { color: var(--muted); }
.genix-search-input:focus { border-color: var(--green); }
.genix-search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #fff; pointer-events: none; }
.genix-sort-wrap { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.genix-sort-wrap label,
.genix-sort-label { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.genix-sort-wrap .woocommerce-ordering,
.woocommerce-ordering { margin: 0 !important; float: none !important; }
.woocommerce-ordering select { background: #181818 !important; border: 1px solid var(--border) !important; border-radius: 8px !important; color: #fff !important; font-family: var(--ff) !important; font-size: 0.85rem !important; padding: 0.6rem 1rem !important; cursor: pointer !important; outline: none !important; }

/* Category pills */
.genix-cat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.25rem; }
.genix-cat-pill { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 50px; padding: 0.55rem 1.25rem; border: 1px solid var(--border); color: #fff; background: transparent; text-decoration: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.genix-cat-pill:hover { border-color: var(--green); color: var(--green); }
.genix-cat-pill.active { background: var(--green); border-color: var(--green); color: #000; }

/* Result count */
.genix-shop-count { font-family: var(--ff); font-size: 0.8rem; color: #fff; padding: 0.5rem 2.5rem 0; max-width: 1200px; margin: 0 auto; }

/* Product grid – full width, 4 columns */
.woocommerce-shop .woocommerce { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 1rem !important; max-width: 1200px !important; margin: 1rem auto 3rem !important; padding: 0 2.5rem !important; list-style: none !important; }

/* Product card */
.woocommerce ul.products li.product { background: #141414 !important; border: 1px solid var(--border) !important; border-radius: 12px !important; overflow: hidden !important; transition: border-color 0.25s, transform 0.25s !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; position: relative; }
.woocommerce ul.products li.product:hover { border-color: var(--green-line) !important; transform: translateY(-4px) !important; }

/* Card image */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link { display: flex !important; flex-direction: column !important; flex: 1 !important; text-decoration: none !important; padding: 0 !important; }
.woocommerce ul.products li.product a img { width: 80% !important; height: 200px !important; object-fit: contain !important; margin: 1.75rem auto 0 !important; display: block !important; background: transparent !important; transition: transform 0.35s !important; }
.woocommerce ul.products li.product:hover a img { transform: scale(1.06) !important; }

/* Name + Price row inside card */
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--ffc) !important; font-weight: 900 !important; font-size: 1rem !important; color: #fff !important; padding: 1rem 1.2rem 0.2rem !important; margin: 0 !important; text-transform: uppercase !important; letter-spacing: 0.02em !important; line-height: 1.15 !important; }
.woocommerce ul.products li.product .price { font-family: var(--ff) !important; font-size: 0.95rem !important; font-weight: 700 !important; color: #fff !important; padding: 0 1.2rem 1.2rem !important; display: block !important; line-height: 1.4 !important; }
.woocommerce ul.products li.product .price ins { color: #e8e8e8 !important; font-weight: 700 !important; text-decoration: none !important; font-style: normal !important; }
.woocommerce ul.products li.product .price del { display: none !important; }
.woocommerce ul.products li.product .onsale { display: none !important; }

/* VIEW → button */
.genix-view-btn { display: block !important; width: 100% !important; background: transparent !important; border: none !important; border-top: 1px solid var(--border) !important; color: #c0c0c0 !important; font-family: var(--ffc) !important; font-weight: 700 !important; font-size: 0.72rem !important; letter-spacing: 0.14em !important; text-transform: uppercase !important; text-align: center !important; text-decoration: none !important; padding: 1rem !important; cursor: pointer !important; transition: background 0.2s, color 0.2s, border-color 0.2s !important; box-sizing: border-box !important; }
.genix-view-btn:hover { background: var(--green) !important; color: #000 !important; border-top-color: var(--green) !important; }

/* Hide default Add to Cart on loop */
.woocommerce ul.products li.product a.button.add_to_cart_button { display: none !important; }
/* ── NOTICES ── */
.woocommerce-notices-wrapper { max-width: 1100px; margin: 1rem auto 0; padding: 0 2.5rem; }
.woocommerce-message, .woocommerce-info { background: var(--bg3) !important; border-top-color: var(--green) !important; color: var(--text) !important; }
.woocommerce-message a, .woocommerce-info a { color: var(--green) !important; }

/* ── CART & CHECKOUT ── */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce { max-width: 1100px; margin: 2rem auto; padding: 0 2.5rem 5rem; }
.woocommerce table.shop_table { background: var(--bg2) !important; border: 1px solid var(--border) !important; border-radius: 10px !important; color: var(--text) !important; }
.woocommerce table.shop_table th { background: var(--bg3) !important; color: #fff !important; font-family: var(--ffc) !important; font-size: 0.7rem !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; border-bottom: 1px solid var(--border) !important; }
.woocommerce table.shop_table td { border-bottom: 1px solid var(--border) !important; color: var(--text) !important; }
.woocommerce .cart_totals, .woocommerce #order_review { background: var(--bg2) !important; border: 1px solid var(--border) !important; border-radius: 10px !important; padding: 1.5rem !important; }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-family: var(--ffc) !important; color: #fff !important; text-transform: uppercase !important; letter-spacing: 0.08em !important; font-size: 1rem !important; }
.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce #payment #place_order { background: var(--green) !important; color: #fff !important; border: none !important; border-radius: 9px !important; font-family: var(--ffc) !important; font-weight: 800 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; padding: 1rem !important; width: 100% !important; font-size: 0.9rem !important; }
.woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce #payment #place_order:hover { background: var(--green-mid) !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { background: var(--bg3) !important; border: 1px solid var(--border-l) !important; color: var(--text) !important; border-radius: 7px !important; padding: 0.75rem 1rem !important; font-family: var(--ff) !important; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--green-line) !important; outline: none !important; box-shadow: none !important; }
.woocommerce form .form-row label { color: #fff !important; font-size: 0.8rem !important; }

/* ── FOOTER ── */
.site-footer {
    background: var(--bg2) !important;
    border-top: 1px solid var(--border) !important;
    color: #fff !important;
    padding: 0 !important;
    margin-top: 0 !important;
}
.site-footer .col-full { padding: 0 !important; max-width: 100% !important; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; padding: 3rem 2.5rem; border-bottom: 1px solid var(--border); }
.footer-col-h { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .site-footer a { color: var(--muted2) !important; font-size: 0.82rem; text-decoration: none !important; transition: color 0.2s; }
.footer-links a:hover, .site-footer a:hover { color: #fff !important; }
.footer-bottom { text-align: center; padding: 1.5rem; font-size: 0.75rem; color: var(--muted2); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .genix-nav { padding: 0 1.25rem; }
    .genix-nav-links { display: none; }
    .genix-product-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 1.25rem 4rem !important; }
    .woocommerce div.product { padding: 1.5rem 1.25rem 4rem !important; }
    .genix-disclaimer { padding: 0 1.25rem 4rem; }
    .woocommerce ul.products { padding: 0 1.25rem !important; }
    .genix-qty-price-row { flex-wrap: wrap; gap: 1rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 1.25rem; }
}

/* ── STOREFRONT NAV OVERRIDE (extra aggressive) ── */
.site-header { display: none !important; visibility: hidden !important; height: 0 !important; }
header.site-header { display: none !important; }
.storefront-handheld-footer-bar { display: none !important; }

/* Fix page title showing on blank pages */
.page-title, .entry-title, h1.entry-title { display: none !important; }
.entry-header { display: none !important; }
.entry-content:empty { display: none !important; }
.page .entry-content p:empty { display: none !important; }

/* Fix nav font */
.genix-nav,
.genix-nav * { font-family: 'Barlow Condensed', sans-serif !important; }
.genix-menu li a {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: #fff !important;
    text-transform: uppercase !important;
}
.genix-cart-btn { font-family: 'Barlow Condensed', sans-serif !important; }

/* Remove purple/default link colors */
a { color: #fff !important; }
a:hover { color: #fff !important; }
.woocommerce a:not(.button):not(.genix-btn-atc):not(.genix-cart-btn) { color: #fff !important; }

/* Hide edit link on pages */
.post-edit-link { display: none !important; }

/* ── HERO ── */
.genix-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 6rem 2.5rem;
}
.genix-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(44,186,95,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(44,186,95,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.genix-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(44,186,95,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.genix-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.genix-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ffc);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}
.genix-hero-tag span {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
}
.genix-hero-h1 {
    font-family: var(--ffc) !important;
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
}
.genix-hero-h1 em { font-style: normal; color: var(--green); }
.genix-hero-dim { color: var(--muted2); }
.genix-hero-sub { font-size: 1rem; color: #fff; max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; }
.genix-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.genix-btn-primary {
    background: var(--green);
    color: #fff !important;
    font-family: var(--ffc);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 7px;
    text-decoration: none !important;
    transition: background 0.2s;
}
.genix-btn-primary:hover { background: var(--green-mid); color: #fff !important; }
.genix-btn-outline {
    background: transparent;
    color: #fff !important;
    font-family: var(--ffc);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 7px;
    border: 1px solid var(--border-l);
    text-decoration: none !important;
    transition: border-color 0.2s;
    display: inline-block;
}
.genix-btn-outline:hover { border-color: var(--green-line); color: #fff !important; }

/* ── TRUST BAR ── */
.genix-trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.genix-trust-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.genix-tbar-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1rem; border-right: 1px solid var(--border); }
.genix-tbar-item:last-child { border-right: none; }
.genix-tbar-num { font-family: var(--ffc); font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.genix-tbar-num span { color: var(--green); }
.genix-tbar-lbl { font-family: var(--ffc); font-size: 0.62rem; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ── PRODUCT SECTION ── */
.genix-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem; }
.genix-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
.genix-section-label { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.genix-section-title { font-family: var(--ffc); font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 900; text-transform: uppercase; color: #fff; letter-spacing: 0.01em; line-height: 1; }
.genix-section-sub { font-size: 0.88rem; color: #fff; margin-top: 0.5rem; }

/* ── PRODUCT CARDS ── */
.genix-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.25rem; }
.genix-pcard { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color 0.25s, transform 0.25s; text-decoration: none !important; display: block; cursor: pointer; }
.genix-pcard:hover { border-color: var(--green-line) !important; transform: translateY(-3px); }
.genix-pcard-img { background: transparent; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.genix-pcard-img img { width: 88%; height: 88%; object-fit: contain; }
.pcard-badge { position: absolute; top: 10px; right: 10px; font-family: var(--ffc); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 3px; padding: 3px 8px; }
.badge-instock { background: rgba(44,186,95,0.12); color: var(--green) !important; border: 1px solid var(--green-line); }
.badge-soldout { background: rgba(224,82,82,0.1); color: #e05252 !important; border: 1px solid rgba(224,82,82,0.25); }
.genix-pcard-body { padding: 1.1rem 1.2rem; }
.genix-pcard-type { font-family: var(--ffc); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.genix-pcard-name { font-weight: 600; font-size: 0.92rem; color: #fff !important; margin-bottom: 0.85rem; line-height: 1.4; }
.genix-pcard-foot { display: flex; align-items: center; justify-content: space-between; }
.genix-pcard-price { font-family: var(--ffc); font-size: 1.15rem; font-weight: 800; color: #fff !important; }
.genix-pcard-price .woocommerce-Price-amount { color: #fff !important; }
.genix-btn-add { background: var(--green-pale); color: var(--green) !important; border: 1px solid var(--green-line); border-radius: 5px; padding: 0.38rem 0.9rem; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; font-family: var(--ffc); transition: background 0.2s, color 0.2s; }
.genix-btn-add:hover { background: var(--green); color: #fff !important; }

@media (max-width: 768px) {
    .genix-hero { padding: 4rem 1.25rem; min-height: 60vh; }
    .genix-trust-bar-inner { grid-template-columns: repeat(2,1fr); }
    .genix-tbar-item:nth-child(2) { border-right: none; }
    .genix-section { padding: 3rem 1.25rem; }
}

/* Fix Add to Cart button text wrapping on product cards */
.genix-btn-add { white-space: nowrap !important; }
.genix-pcard-foot { gap: 0.5rem; }

/* Fix sale price display - hide original price strikethrough on cards */
.genix-pcard-price del { display: none !important; }
.genix-pcard-price ins { text-decoration: none !important; font-style: normal !important; }

/* WooCommerce shop archive price fix */
.woocommerce ul.products li.product .price del { display: none !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

/* ── BACKORDER BADGE & NOTICE ── */
.genix-backorder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251,191,36,0.08);
    border: 1px solid rgba(251,191,36,0.25);
    color: #fbbf24;
    font-family: var(--ffc);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 5px 12px;
    margin-bottom: 1rem;
}
.genix-backorder-badge svg {
    width: 13px;
    height: 13px;
    stroke: #fbbf24;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.genix-backorder-notice {
    background: rgba(251,191,36,0.05);
    border: 1px solid rgba(251,191,36,0.18);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: #fbbf24;
    line-height: 1.6;
}
.genix-backorder-notice strong { color: #fcd34d; }

/* Hide default WooCommerce backorder text */
.available-on-backorder { display: none !important; }

/* Backorder badge on product cards */
.pcard-badge.badge-backorder {
    background: rgba(251,191,36,0.1);
    color: #fbbf24 !important;
    border: 1px solid rgba(251,191,36,0.25);
}

/* Hide dosage section for simple products with no real attribute */
.genix-dosage-btns .genix-dosage-btn:only-child {
    pointer-events: none;
    opacity: 0.6;
    font-size: 0.72rem;
}

/* Fix $0.00 price — show sale price for backorder products */
.genix-prod-price { min-width: 80px; }


/* === ACTIVE NAV: WooCommerce page override === */
.woocommerce .genix-menu .menu-item.current-menu-item > a,
.woocommerce .genix-menu .menu-item.current_page_item > a { color: #2CBA5F !important; }


/* =====================================================
   Active nav highlight — all current-menu-item links
   Specificity (0,3,1) + body beats WC rule (0,4,1).
   JS in functions.php handles custom links (e.g. Affiliates).
   ===================================================== */
body .genix-menu li.current-menu-item > a,
body .genix-menu li.current-menu-item.current_page_item > a,
body .genix-menu li.current-menu-ancestor > a,
body.woocommerce .genix-menu li.current-menu-item > a,
body.woocommerce-page .genix-menu li.current-menu-item > a {
    color: #2CBA5F !important;
}


/* ============================================================
   GENIX HOME v2 — Woosh-inspired redesign
   ============================================================ */

/* ---- Hero ---- */
.gh-hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}
.gh-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.gh-hero-left {
  position: relative;
  z-index: 2;
  width: 63%;
  flex-shrink: 0;
}
.gh-hero-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 30px;
}
.gh-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
  animation: gh-pulse 2.2s ease-in-out infinite;
}
@keyframes gh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}
.gh-hero-h1 {
  font-family: var(--ffc);
  font-size: clamp(68px, 8.5vw, 128px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: -0.02em;
}
.gh-hero-h1 em {
  font-style: normal;
  color: var(--green);
}
.gh-hero-sub {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
  margin: 0 0 38px;
}
.gh-hero-cta { margin-bottom: 26px; }

.gh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #000 !important;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
  border: none;
}
.gh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(44,186,95,0.35);
  color: #000 !important;
}
.gh-btn-primary span { font-size: 18px; line-height: 1; }

.gh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.gh-btn-outline:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  color: #fff !important;
}
.gh-btn-outline span { font-size: 15px; }

.gh-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.gh-stars {
  color: #FBBF24;
  font-size: 15px;
  letter-spacing: 1px;
}
.gh-hero-right {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 58%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.gh-hero-img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  transform: rotate(-18deg) translateY(10px);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(44,186,95,0.15));
  opacity: 0.9;
}


/* ---- Ticker ---- */
.gh-ticker-wrap {
  background: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.gh-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: gh-ticker 32s linear infinite;
  white-space: nowrap;
}
.gh-ticker-track:hover { animation-play-state: paused; }
@keyframes gh-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.gh-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #111;
  padding: 0 26px;
}
.gh-ticker-sep {
  color: #ccc;
  font-size: 16px;
}

/* ---- Products Section ---- */
.gh-products {
  background: #000;
  padding: 100px 48px;
}
.gh-products-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}
.gh-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gh-section-label {
  display: block;
  font-family: var(--ff);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.gh-section-h2 {
  font-family: var(--ffc);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.93;
  letter-spacing: -0.01em;
  margin: 0;
}
.gh-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gh-product-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.gh-product-card:hover {
  border-color: rgba(44,186,95,0.28);
  transform: translateY(-5px);
}
.gh-badge-bestseller {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #000;
  font-family: var(--ff);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}
.gh-cat-tag {
  display: inline-block;
  font-family: var(--ff);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 14px;
  width: fit-content;
}
.gh-product-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  min-height: 170px;
}
.gh-product-img {
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
}
.gh-product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 170px;
}
.gh-product-info { margin-top: 6px; }
.gh-product-name {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.gh-product-name a {
  color: #fff;
  text-decoration: none;
}
.gh-product-name a:hover { color: var(--green); }
.gh-product-price {
  font-family: var(--ffc);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  line-height: 1;
}
.gh-product-price .woocommerce-Price-amount { color: var(--green) !important; }
.gh-product-price del .woocommerce-Price-amount { color: rgba(255,255,255,0.28) !important; }
.gh-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.gh-product-cta:hover { color: var(--green); }
.gh-product-cta span { font-size: 15px; }

/* ---- Guarantee ---- */
.gh-guarantee {
  background: #080808;
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.gh-guarantee-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gh-guarantee-h2 {
  font-family: var(--ffc);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.gh-guarantee-sub {
  font-family: var(--ff);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0 0 36px;
  max-width: 320px;
}
.gh-guarantee-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gh-guarantee-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gh-guarantee-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.gh-gi-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(44,186,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-gi-title {
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gh-gi-desc {
  font-family: var(--ff);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

/* ---- FAQ ---- */
.gh-faq {
  background: #000;
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.gh-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.gh-faq-list { margin-top: 52px; }
.gh-faq-item { border-bottom: 1px solid rgba(255,255,255,0.09); }
.gh-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.gh-faq-q:hover { color: var(--green); }
.gh-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.35);
}
.gh-faq-q[aria-expanded="true"] .gh-faq-arrow {
  transform: rotate(180deg);
  color: var(--green);
}
.gh-faq-a {
  font-family: var(--ff);
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.48);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.28s ease, padding-bottom 0.28s ease;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .gh-hero { padding: 100px 24px 60px; min-height: auto; }
  .gh-hero-inner { min-height: auto !important; }
  .gh-hero-left { width: 100% !important; }
  .gh-hero-right { display: none !important; }
  .gh-hero-img { max-height: 240px; }
  .gh-hero-h1 { font-size: 68px; }
  .gh-hero-sub { max-width: 100%; }
  .gh-products { padding: 60px 24px; }
  .gh-products-grid { grid-template-columns: 1fr; gap: 14px; }
  .gh-section-head { flex-direction: column; align-items: flex-start; }
  .gh-guarantee { padding: 60px 24px; }
  .gh-guarantee-inner { grid-template-columns: 1fr; gap: 40px; }
  .gh-guarantee-sub { max-width: 100%; }
  .gh-faq { padding: 60px 24px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .gh-products-grid { grid-template-columns: repeat(2, 1fr); }
  .gh-hero { padding: 100px 32px 70px; }
  .gh-products, .gh-guarantee, .gh-faq { padding-left: 32px; padding-right: 32px; }
}



/* ============================================================
   GNX NAV v2 — Woosh-style nav + mobile drawer + scroll reveal
   ============================================================ */

/* -- Nav inner wrapper -- */
.gnx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  gap: 16px;
}

/* -- Nav bar sizing & transitions -- */
.genix-nav {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  height: 68px !important;
  display: flex !important;
  align-items: center;
  transition: height 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.genix-nav.gnx-shrunk {
  height: 54px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* -- Nav links override -- */
.genix-nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}
.genix-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.genix-menu li a {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.genix-menu li a:hover,
.genix-menu li.current-menu-item a {
  color: #fff !important;
  background: rgba(255,255,255,0.07);
}

/* -- Right section -- */
.genix-nav-right {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* -- Cart icon -- */
.gnx-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none !important;
  padding: 7px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.gnx-cart-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.gnx-cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background: var(--green);
  color: #000;
  font-family: var(--ff);
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* -- Shop Now pill -- */
.gnx-shop-now {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  color: #fff !important;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.gnx-shop-now:hover {
  background: #fff;
  border-color: #fff;
  color: #000 !important;
}
.gnx-shop-now--full {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px 20px;
}

/* -- Hamburger -- */
.gnx-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  order: -1;
}
.gnx-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.gnx-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gnx-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gnx-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -- Mobile Drawer -- */
.gnx-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 88vw;
  height: 100dvh;
  background: #0c0c0c;
  border-right: 1px solid rgba(255,255,255,0.07);
  z-index: 100001;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.gnx-drawer.open { transform: translateX(0); }

.gnx-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.gnx-drawer-logo { text-decoration: none; }

.gnx-drawer-x {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  display: flex;
  transition: color 0.2s;
}
.gnx-drawer-x:hover { color: #fff; }

.gnx-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
  overflow-y: auto;
}
.gnx-drawer-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gnx-drawer-menu li a {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.18s, padding-left 0.18s;
}
.gnx-drawer-menu li a:hover {
  color: var(--green);
  padding-left: 28px;
}
.gnx-drawer-menu li.current-menu-item > a {
  color: var(--green);
}

.gnx-drawer-footer {
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.gnx-drawer-cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.gnx-drawer-cart-link:hover { color: rgba(255,255,255,0.8); }

/* -- Overlay -- */
.gnx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.gnx-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* No scroll when drawer open */
body.gnx-no-scroll { overflow: hidden !important; }

/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {
  .gnx-hamburger { display: flex; }
  .genix-nav-links { display: none !important; }
  .gnx-shop-now:not(.gnx-shop-now--full) { display: none; }
  .gnx-nav-inner { padding: 0 16px; }
  .genix-nav { height: 58px !important; }
  .genix-nav.gnx-shrunk { height: 50px !important; }
  .genix-nav-logo img { height: 30px !important; }
}
@media (max-width: 480px) {
  .gnx-nav-inner { padding: 0 14px; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   Elements are visible by default; animate in when .gnx-in is added by JS
   ============================================================ */

@keyframes gnx-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes gnx-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes gnx-in-right {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

/* Animate in when IntersectionObserver adds .gnx-in */
.gh-section-head.gnx-in,
.gh-product-card.gnx-in,
.gh-guarantee-left.gnx-in,
.gh-guarantee-item.gnx-in,
.gh-faq-item.gnx-in,
.gh-ticker-wrap.gnx-in {
  animation: gnx-in-up 0.6s ease both;
}

.gh-hero-left.gnx-in  { animation: gnx-in-left 0.6s ease both; }
.gh-hero-right.gnx-in { animation: gnx-in-right 0.6s ease both; }

/* Ticker animates faster */
.gh-ticker-wrap.gnx-in { animation-duration: 0.4s; }


/* ============================================================
   MOBILE: Fixed nav + 2-column product grid
   ============================================================ */
@media (max-width: 768px) {

  /* Fixed nav — reliable on iOS Safari, stays at top always */
  .genix-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  /* Push page content below fixed nav (58px nav height) */
  body {
    padding-top: 58px !important;
  }

  /* Products section: tighter padding on mobile */
  .gh-products {
    padding: 50px 12px 60px !important;
  }

  /* 2-column product grid */
  .gh-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Tighter card padding so content fits two columns */
  .gh-product-card {
    padding: 14px 12px !important;
    border-radius: 14px !important;
  }

  .gh-product-name {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .gh-product-price {
    font-size: 15px !important;
  }

  .gh-section-head {
    margin-bottom: 24px !important;
  }
}


/* ============================================================
   MOBILE: Fixed nav + 2-column product grid
   ============================================================ */
@media (max-width: 768px) {

  /* Fixed nav on mobile - reliable on iOS Safari */
  .genix-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  /* Push body content below fixed nav */
  body {
    padding-top: 58px !important;
  }

  /* Products section tighter on mobile */
  .gh-products {
    padding: 50px 12px 60px !important;
  }

  /* 2-column product grid */
  .gh-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Compact card for 2-col layout */
  .gh-product-card {
    padding: 14px 12px !important;
    border-radius: 14px !important;
  }

  .gh-product-name {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .gh-product-price {
    font-size: 15px !important;
  }

  .gh-section-head {
    margin-bottom: 24px !important;
  }
}

/* ============================================================
   MOBILE: Fixed nav + 2-column product grid
   ============================================================ */
@media (max-width: 768px) {

  /* Fixed nav on mobile - reliable on iOS Safari */
  .genix-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  /* Push body content below fixed nav */
  body {
    padding-top: 58px !important;
  }

  /* Products section tighter on mobile */
  .gh-products {
    padding: 50px 12px 60px !important;
  }

  /* 2-column product grid */
  .gh-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Compact card for 2-col layout */
  .gh-product-card {
    padding: 14px 12px !important;
    border-radius: 14px !important;
  }

  .gh-product-name {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .gh-product-price {
    font-size: 15px !important;
  }

  .gh-section-head {
    margin-bottom: 24px !important;
  }
}

/* ── HIDE FLOATING SIDE CART BASKET ─────────────────────────────────────── */
.xoo-wsc-basket,
.xoo-wsc-basket[style],
.xoo-wsc-basket[style*="block"],
.xoo-wsc-basket[style*="flex"] { display: none !important; }


/* ── DEFAULT PAGE TEMPLATE (About, Contact, etc.) ───────────────────────── */
.page-template-default #main {
  background: #0a0a0a;
  padding: 60px 0 80px;
}
.page-template-default .entry-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.page-template-default .entry-header {
  max-width: 780px;
  margin: 0 auto 32px;
  padding: 0 28px;
}
.page-template-default .entry-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.page-template-default .entry-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 36px 0 10px;
}
.page-template-default .entry-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 8px;
}
.page-template-default .entry-content p {
  margin-bottom: 16px;
}
.page-template-default .entry-content a {
  color: #3bff6e;
  text-decoration: none;
}
.page-template-default .entry-content a:hover {
  text-decoration: underline;
}
/* Contact form inputs on default pages */
.page-template-default .entry-content input[type=text],
.page-template-default .entry-content input[type=email],
.page-template-default .entry-content textarea,
.page-template-default .entry-content select {
  background: #141414 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
}

/* ── MOBILE FIXES: badges, tags, backorder ── */
@media (max-width: 768px) {
  /* Product card badges — prevent overlap on narrow screens */
  .gh-badge-bestseller {
    font-size: 9px !important;
    padding: 3px 8px !important;
    top: 10px !important;
    right: 10px !important;
    letter-spacing: 0.08em !important;
  }
  .gh-cat-tag {
    font-size: 9px !important;
    padding: 3px 8px !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.08em !important;
  }
  /* Backorder elements stack vertically */
  /* Product page info panel: restore badge to flow (overrides plugin's absolute pos) */
  .genix-info-panel .genix-backorder-badge {
    position: static !important;
    display: inline-flex !important;
    align-self: flex-start !important;
    width: auto !important;
    margin-bottom: 0.75rem !important;
  }
  .genix-backorder-badge {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.75rem;
  }
  .genix-backorder-notice {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
  }
  /* Hero: hide vial, full-width text */
  .gh-hero-right { display: none !important; }
  .gh-hero-left { width: 100% !important; max-width: 100% !important; }
  .gh-hero-inner { min-height: auto !important; }
}


/* ── SHOP MOBILE (max 768px) ── */
@media (max-width: 768px) {
  .genix-shop-controls { padding: 1rem 1rem 0.5rem; }
  .genix-shop-search-row { flex-wrap: wrap; gap: 0.6rem; }
  .genix-shop-search { width: 100%; flex: 1 1 100%; }
  .genix-sort-wrap { width: 100%; justify-content: flex-end; }
  .genix-sort-label { display: none; }
  .genix-cat-pills { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.4rem; scrollbar-width: none; }
  .genix-cat-pills::-webkit-scrollbar { display: none; }
  .genix-cat-pill { flex-shrink: 0; }
  .genix-shop-count { padding: 0.4rem 1rem 0; }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; gap: 0.75rem !important; padding: 0 1rem !important; margin: 0.75rem auto 2rem !important; }
  .woocommerce ul.products li.product a img { height: 140px !important; margin-top: 1.25rem !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 0.82rem !important; padding: 0.75rem 0.85rem 0.15rem !important; }
  .woocommerce ul.products li.product .price { font-size: 0.8rem !important; padding: 0 0.85rem 0.85rem !important; }
  .genix-view-btn { font-size: 0.65rem !important; padding: 0.75rem !important; }
}

/* ── PRODUCT PAGE v2 – WOOSH-STYLE ── */

/* Research indicator */
.genix-research-indicator { display: flex; align-items: center; gap: 0.5rem; font-family: var(--ff); font-size: 0.78rem; color: #fff; margin-bottom: 0.6rem; }
.genix-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; flex-shrink: 0; }

/* Star row */
.genix-star-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.genix-stars { color: #4ade80; font-size: 0.9rem; letter-spacing: 0.05em; }
.genix-star-text { font-family: var(--ff); font-size: 0.78rem; color: #fff; }

/* Hide old qty row when bundle is active */
.genix-qty-price-row.genix-hidden { display: none !important; }

/* Bundle & Save section */
.genix-bundle-section { margin: 1.5rem 0 1.25rem; }
.genix-bundle-label { font-family: var(--ffc); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 0.85rem; }
.genix-bundle-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.65rem; }

/* Bundle card */
.genix-bundle-card { background: #141414; border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem 0.6rem 0.9rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; min-height: 150px; }
.genix-bundle-card:hover { border-color: var(--green-line); }
.genix-bundle-card.active { border-color: var(--green); background: #0d1f14; }

/* Badge */
.genix-bundle-badge, .genix-bundle-badge-spacer { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--ffc); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; }
.genix-bundle-badge-spacer { visibility: hidden; }
.badge-green { background: var(--green); color: #000; }
.badge-gold { background: #d4a017; color: #000; }

/* Vial images inside cards */
.genix-bundle-imgs { display: flex; align-items: center; justify-content: center; gap: 2px; height: 52px; margin-top: 0.35rem; }
.genix-bundle-imgs .gbc-img { width: 28px; height: 48px; object-fit: contain; }
.genix-bundle-imgs .gbc-more { font-family: var(--ffc); font-size: 0.65rem; font-weight: 700; color: #fff; margin-left: 2px; }
.genix-bundle-imgs .gbc-icon { font-size: 1.4rem; }

/* Card labels */
.genix-bundle-qty-label { font-family: var(--ffc); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #ccc; }
.genix-bundle-price-row { font-family: var(--ff); font-size: 0.88rem; font-weight: 700; color: #fff; }
.genix-bundle-price-row s { font-weight: 400; color: #fff; font-size: 0.75rem; margin-left: 4px; }

/* Add to cart button override */
.genix-info-panel .cart .single_add_to_cart_button,
.genix-info-panel .cart button[type="submit"] { width: 100% !important; border-radius: 8px !important; font-family: var(--ffc) !important; font-weight: 700 !important; font-size: 0.85rem !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; padding: 1rem !important; background: var(--green) !important; color: #000 !important; border: none !important; cursor: pointer !important; transition: background 0.2s !important; }
.genix-info-panel .cart .single_add_to_cart_button:hover { background: #22c55e !important; }

/* Shipping line */
.genix-shipping-line { font-family: var(--ff); font-size: 0.78rem; color: #fff; text-align: center; margin: 0.6rem 0 1rem; }

/* Upgraded trust strip */
.genix-trust-strip.upgraded { display: flex !important; justify-content: space-around; align-items: center; background: #111; border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem 1rem; gap: 0.5rem; margin: 1rem 0; }
.genix-trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; font-family: var(--ffc); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; text-align: center; }
.genix-trust-item span { font-size: 1.1rem; }

/* Accordion */
.genix-accordion { margin: 1rem 0 0; border-top: 1px solid var(--border); }
.genix-acc-item { border-bottom: 1px solid var(--border); }
.genix-acc-trigger { width: 100%; background: none; border: none; color: #e8e8e8; font-family: var(--ffc); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.genix-acc-icon { font-size: 1.1rem; color: var(--green); transition: transform 0.2s; }
.genix-acc-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-family: var(--ff); font-size: 0.85rem; line-height: 1.65; color: #fff; }
.genix-acc-item.open .genix-acc-content { max-height: 600px; padding-bottom: 1rem; }
.genix-acc-content p { margin: 0 0 0.5rem; }

/* ── PRODUCT PAGE v2 MOBILE ── */
@media (max-width: 768px) {
  .genix-bundle-cards { grid-template-columns: repeat(3,1fr); gap: 0.45rem; }
  .genix-bundle-card { padding: 0.75rem 0.4rem; min-height: 130px; border-radius: 10px; }
  .genix-bundle-qty-label { font-size: 0.6rem; }
  .genix-bundle-price-row { font-size: 0.78rem; }
  .genix-bundle-imgs .gbc-img { width: 22px; height: 38px; }
  .genix-bundle-imgs { height: 42px; }
  .genix-trust-strip.upgraded { flex-wrap: wrap; gap: 0.75rem; }
}

/* === GSPV2 ATC BUTTON — OVERRIDE STOREFRONT button.alt === */
button.gspv2-atc,
.gspv2-atc.button,
.gspv2-atc.button.alt,
.single_add_to_cart_button.gspv2-atc {
  background: #111 !important;
  background-color: #111 !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 50px !important;
  padding: 1.1rem 2rem !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  width: 100% !important;
  display: block !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}
button.gspv2-atc:hover,
.gspv2-atc.button:hover,
.gspv2-atc.button.alt:hover {
  background: #1d1d1d !important;
  background-color: #1d1d1d !important;
  color: #fff !important;
}

/* ── MOBILE CART FIX – float and centering ── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; }
  .woocommerce-cart .woocommerce { padding: 1.25rem 1rem 4rem !important; overflow-x: hidden !important; max-width: 100vw !important; }
  .woocommerce-cart-form { float: none !important; width: 100% !important; clear: both !important; overflow-x: hidden !important; }
  .woocommerce .cart-collaterals { float: none !important; width: 100% !important; clear: both !important; display: block !important; justify-content: unset !important; }
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce .cart_totals { float: none !important; width: 100% !important; max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; box-sizing: border-box !important; }
  .woocommerce .cart_totals table { width: 100% !important; table-layout: fixed !important; }
  .woocommerce .cart_totals table td, .woocommerce .cart_totals table th { word-break: break-word !important; }
  .woocommerce table.shop_table { min-width: 0 !important; width: 100% !important; }
  .woocommerce .cross-sells { float: none !important; width: 100% !important; clear: both !important; }
}

/* ── CART GRID MOBILE FIX (minmax to beat min-content sizing) ── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; }
  .gcv2-wrap { padding: 0 16px !important; box-sizing: border-box !important; overflow-x: hidden !important; }
  .gcv2-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .gcv2-left, .gcv2-right { min-width: 0 !important; overflow-x: hidden !important; }
  .gcv2-card { width: 100% !important; box-sizing: border-box !important; }
}

/* ── PRODUCT PAGE: SIDE-BY-SIDE LAYOUT ── */
@media (min-width: 769px) {
  .gspv2-wrap {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    align-items: start !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .gspv2-hero {
    position: sticky !important;
    top: 80px !important;
    border-bottom: none !important;
    border-right: 1px solid var(--border) !important;
    min-height: 500px !important;
  }
  .gspv2-img-wrap {
    min-height: 400px !important;
    padding: 3.5rem 2rem 2rem !important;
  }
  .gspv2-img {
    max-height: 360px !important;
    max-width: 90% !important;
  }
  .gspv2-trust-row {
    border-top: 1px solid var(--border) !important;
    padding: 1.25rem 1.5rem !important;
  }
  .gspv2-body {
    max-width: none !important;
    padding: 2.5rem 2.5rem 3rem !important;
  }

  /* === LAYOUT FIXES === */
  /* Backorder alert spans full width so image+info stay side-by-side */
  .gspv2-backorder-alert {
    grid-column: 1 / -1 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  /* Crosssell (bac water) spans full width below both columns */
  .gnx-crosssell {
    grid-column: 1 / -1 !important;
    border-top: 1px solid var(--border) !important;
    border-right: none !important;
  }
  /* Ensure image fills the hero panel better */
  .gspv2-img {
    max-height: 420px !important;
    max-width: 80% !important;
    width: auto !important;
  }
  .gspv2-img-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* ── SHOP CARD ADD TO CART BUTTON ── */
.gnx-view-btn {
  display: block !important;
  width: 100% !important;
  margin-top: 1rem !important;
  padding: 0.75rem 1rem !important;
  background: var(--green) !important;
  color: #000 !important;
  font-family: var(--ffc) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s ease, opacity 0.2s ease !important;
  box-sizing: border-box !important;
}
.gnx-view-btn:hover {
  background: #1fad5c !important;
  color: #000 !important;
  text-decoration: none !important;
}
.gnx-view-btn.added {
  background: var(--bg3) !important;
  color: var(--green) !important;
  border: 1px solid var(--green) !important;
}