/* ═══════════════════════════════════════════════════
   ELEVATE BIOSYSTEMS — DARK THEME
   Version: 1.0.0
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
    --bg-0: #050503;
    --bg-1: #080806;
    --bg-2: #0D0C09;
    --bg-3: #121109;
    --bg-4: #18160E;
    --bg-card: #111009;
    --b1: rgba(255, 255, 255, 0.06);
    --b2: rgba(255, 255, 255, 0.10);
    --b3: rgba(176, 140, 56, 0.20);
    --b4: rgba(176, 140, 56, 0.35);
    --gold: #007FFE;
    --gold-2: #007FFE;
    --gold-3: #007FFE;
    --gold-4: #007FFE;
    --gold-dim: rgba(176, 140, 56, 0.08);
    --gold-glow: rgba(176, 140, 56, 0.18);
    --tx-1: rgba(245, 242, 232, 0.95);
    --tx-2: rgba(245, 242, 232, 0.65);
    --tx-3: rgba(245, 242, 232, 0.38);
    --tx-4: rgba(245, 242, 232, 0.20);
    --jade: #1E7A65;
    --jade-l: #2DAE8D;
    --r-xs: 4px;
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 22px;
    --r-xl: 40px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --tf: 0.22s;
    --tm: 0.42s;
    --ts: 0.7s;
    --sh-xs: 0 1px 6px rgba(0, 0, 0, 0.4);
    --sh-sm: 0 4px 20px rgba(0, 0, 0, 0.45);
    --sh-md: 0 12px 44px rgba(0, 0, 0, 0.55);
    --sh-lg: 0 28px 80px rgba(0, 0, 0, 0.65);
    --sh-xl: 0 48px 120px rgba(0, 0, 0, 0.75);
    --sh-gold: 0 0 40px rgba(176, 140, 56, 0.12);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Epilogue', sans-serif;
    background: var(--bg-1);
    color: var(--tx-1);
    overflow-x: hidden;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

::selection {
    background: rgba(176, 140, 56, 0.3);
    color: var(--tx-1)
}

/* ─── TYPOGRAPHY ─── */
.serif {
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
}

.label-text {
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-3) !important;
}

/* ─── LAYOUT ─── */
.wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}

.sec {
    padding: 110px 0;
}

@media(max-width:768px) {
    .wrap {
        padding: 0 20px;
    }

    .sec {
        padding: 72px 0;
    }
}

/* ─── CURSOR ─── */
#eb-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s var(--ease), height .2s var(--ease);
}

#eb-cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(176, 140, 56, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: .8;
}

body.c-hover #eb-cursor {
    width: 16px;
    height: 16px;
    background: var(--gold-2);
}

body.c-hover #eb-cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--gold-3);
    opacity: 1;
}

@media(pointer:coarse), (hover:none) {
    body {
        cursor: auto !important;
    }

    #eb-cursor,
    #eb-cursor-ring {
        display: none !important;
    }
}

/* ─── LOADER ─── */
#eb-loader {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--bg-0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity .7s ease, visibility .7s ease;
}

#eb-loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ld-hex svg {
    animation: ldSpin 8s linear infinite;
}

@keyframes ldSpin {
    to {
        transform: rotate(360deg);
    }
}

.ld-bar {
    width: 140px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border-radius: 2px;
}

.ld-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-3), var(--gold), transparent);
    animation: ldSlide 1.5s ease-in-out infinite;
}

@keyframes ldSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

.ld-label {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--tx-4);
}

/* ─── SCROLL REVEAL ─── */
[data-r] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-r].on {
    opacity: 1;
    transform: none;
}

[data-r="left"] {
    transform: translateX(-24px);
}

[data-r="left"].on {
    transform: none;
}

[data-r="right"] {
    transform: translateX(24px);
}

[data-r="right"].on {
    transform: none;
}

[data-r="scale"] {
    transform: scale(.96);
    opacity: 0;
}

[data-r="scale"].on {
    transform: scale(1);
    opacity: 1;
}

[data-d="1"] {
    transition-delay: .1s;
}

[data-d="2"] {
    transition-delay: .2s;
}

[data-d="3"] {
    transition-delay: .3s;
}

[data-d="4"] {
    transition-delay: .4s;
}

[data-d="5"] {
    transition-delay: .5s;
}

[data-d="6"] {
    transition-delay: .6s;
}

@media(prefers-reduced-motion:reduce) {
    [data-r] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: var(--r-xs);
    transition: all var(--tm) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-3);
    color: white;
    border: 1px solid var(--gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--tm) var(--ease);
    z-index: 0;
}

.btn-gold:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-gold:hover {
    box-shadow: 0 12px 36px rgba(176, 140, 56, 0.35);
    transform: translateY(-2px);
}

.btn-gold>* {
    position: relative;
    z-index: 1;
}

.btn-gold>span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: var(--gold);
    color: white;
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: white;
    border-color: white;
    color: var(--gold);
}

.btn-ghost {
    background: transparent;
    color: var(--tx-2);
    border: 1px solid var(--b1);
}

.btn-ghost:hover {
    border-color: var(--b2);
    color: var(--tx-1);
    background: rgba(255, 255, 255, 0.04);
}

/* ─── SECTION HEADER ─── */
.sh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sh-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.sh-title {
    font-variation-settings: 'opsz' 9;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -.025em;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald';
}

.sh-title em {
    font-style: normal;
    color: var(--gold-3);
}

section.qa-row h2.sh-title.on {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sh-sub {
    font-size: 1rem;
    color: var(--tx-2);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
}

/* ─── ANNOUNCEMENT BAR ─── */
.ann-bar {
    background: var(--gold);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 51;
}

.ann-track {
    display: flex;
    animation: ann 28s linear infinite;
    width: max-content;
}

.ann-track:hover {
    animation-play-state: paused;
}

.ann-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bg-0);
    white-space: nowrap;
    flex-shrink: 0;
}

.ann-sep {
    color: rgba(0, 0, 0, .3);
}

@keyframes ann {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {
    .ann-bar {
        display: none;
    }
}

/* ─── NAVIGATION ─── */
#site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 48px;
    transition: background .45s ease, box-shadow .45s ease, top .35s ease;
    background: #0E1218;
}

#site-header.scrolled {
    top: 0;
    background: rgba(8, 8, 6, 0.96);
    backdrop-filter: blur(28px) saturate(140%);
    box-shadow: 0 1px 0 var(--b1), var(--sh-sm);
}

.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 13px;
}

.logo-hex {
    flex-shrink: 0;
}

.logo-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--tx-1);
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: .55rem;
    font-family: 'Syne', sans-serif;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

#primary-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: 11rem;
}

#primary-nav a {
    font-family: 'Syne', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: white;
    position: relative;
    transition: color var(--tf);
}

#primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--tm) var(--ease);
}

#primary-nav a:hover {
    color: var(--tx-1);
}

#primary-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(176, 140, 56, .09);
    border: 1px solid var(--b3);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    font-family: 'Syne', sans-serif;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-3);
}

.nav-stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jade-l);
    flex-shrink: 0;
}

.nav-cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--bg-4);
    border: 1px solid var(--b1);
    color: var(--tx-2);
    transition: all var(--tf);
}

.nav-cart-link:hover {
    border-color: var(--b3);
    color: var(--gold);
}

.nav-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-0);
    font-family: 'Syne', sans-serif;
    font-size: .55rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--bg-4);
    border: 1px solid var(--b1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--tx-2);
    transition: var(--tm) var(--ease);
}

.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 49;
    background: var(--bg-1);
    transform: translateX(101%);
    transition: transform .5s var(--ease);
    padding: 90px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mob-overlay.open {
    transform: translateX(0);
}

.mob-overlay a {
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--tx-1);
    padding: 14px 0;
    border-bottom: 1px solid var(--b1);
    opacity: .65;
    transition: opacity .3s, color .3s;
}

.mob-overlay a:hover {
    opacity: 1;
    color: var(--gold-3);
}

.mob-overlay .mob-cta {
    margin-top: 32px;
    width: 100%;
    justify-content: center;
}

@media(max-width:1024px) {
    #site-header {
        padding: 0 32px;
    }
}

@media(max-width:768px) {

    #primary-nav,
    .nav-actions {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    #site-header {
        padding: 0 20px;
    }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    width: 100%;
    min-height: 76vh;
    max-height: 886px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 74px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(5, 5, 3, .96) 0%, rgba(5, 5, 3, .86) 22%, rgba(5, 5, 3, .55) 45%, rgba(5, 5, 3, .18) 68%, rgba(5, 5, 3, .04) 100%), linear-gradient(to bottom, rgba(5, 5, 3, .40) 0%, rgba(5, 5, 3, .0) 35%, rgba(5, 5, 3, .0) 65%, rgba(5, 5, 3, .82) 100%);
}

.hero-atmos {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-atmos::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 140, 56, .08) 0%, transparent 65%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .025;
    background-image: linear-gradient(rgba(245, 242, 232, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 242, 232, 1) 1px, transparent 1px);
    background-size: 80px 80px;
}

#hero-cvs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.purity-ring {
    position: absolute;
    top: 50px;
    right: 56px;
    z-index: 3;
    width: 76px;
    height: 76px;
    display: none;
}

.pr-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pr-val {
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
    font-size: .86rem;
    font-weight: 300;
    color: var(--tx-1);
    line-height: 1;
}

.pr-lbl {
    font-family: 'Syne', sans-serif;
    font-size: .4rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tx-4);
}

.hero-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 52px 0 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(245 242 232 / 10%
10%
);
    border: 1px solid rgb(245 242 232 / 28%);
    border-radius: 100px;
    padding: 7px 18px 7px 12px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

/*.hero-pulse {*/
/*    width: 7px;*/
/*    height: 7px;*/
/*    border-radius: 50%;*/
/*    background: var(--jade-l);*/
/*    animation: pls 2s infinite*/
/*}*/

@keyframes pls {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 174, 141, .4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(45, 174, 141, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 174, 141, 0);
    }
}

.hero-eyebrow-txt {
    font-family: 'Syne', sans-serif;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-3);
}

.hero-h1 {
    font-size: 70px;
    line-height: 1.1;
    color: var(--tx-1);
    margin-bottom: 22px;
    max-width: 620px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -2.78px;
}

.hero-h1 em {
    color: var(--gold-3);
    font-style: normal;
}

.hero-sub {
    font-size: .98rem;
    color: white;
    line-height: 1.78;
    max-width: 440px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 242, 232, .1);
    max-width: 560px;
    width: 100%;
}

.h-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(245, 242, 232, .1);
    margin-right: 24px;
}

.h-stat:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.h-stat-val {
    font-variation-settings: 'opsz' 9;
    font-size: 2.1rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    letter-spacing: -.03em;
    font-family: 'Oswald';
}

.h-stat-val sup {
    font-size: .95rem;
    font-weight: 700;
    vertical-align: super;
}

.h-stat-label {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: white;
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    right: 56px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
}

.scroll-rod {
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-rod::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(245, 242, 232, .65);
    animation: sRod 2.2s ease-in-out infinite;
}

@keyframes sRod {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(300%);
    }
}

.scroll-txt {
    font-family: 'Syne', sans-serif;
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(245, 242, 232, .3);
    writing-mode: vertical-lr;
}

@media(max-width:1100px) {
    .hero-wrap {
        padding: 44px 48px 48px
    }
}

@media(max-width:768px) {
    .hero {
        min-height: auto;
        max-height: none;
    }

    .hero-wrap {
        padding: 36px 20px 44px;
    }

    .hero-h1 {
        font-size: clamp(1.68rem, 5.6vw, 2.52rem);
        max-width: 100%;
    }

    .hero-sub {
        font-size: .92rem;
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        max-width: 100%;
    }

    .h-stat {
        min-width: 100px;
        border: none;
        margin: 0;
        padding: 0;
    }

    .purity-ring,
    .hero-scroll {
        display: none;
    }
}

@media(max-width:480px) {
    .hero-h1 {
        font-size: 1.96rem;
    }
}

/* ─── TRUST STRIP ─── */


.innerBann {
  margin-bottom: -1px;
  padding-bottom: 35px;
}

.trust {
  display: none;
}

.qa-row {
  display: none;
}
.page-template-front-page #why {
  display: none;
}
.page-template-front-page #faq {
  display: none;
}
.page-template-front-page #contact {
  display: none;
}
.trust {
    background: #121A24;
    border-top: 1px solid var(--b1);
    border-bottom: 1px solid var(--b1);
}

.trust-inner {
    display: flex;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}


.cta {
  position: relative;
  background: black !important;
}
.cta video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta h2 em {
  font-style: normal;
  color: #007FFE !important;
}
.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 18px;
    border-right: 1px solid var(--b1);
    transition: background var(--tf);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: var(--gold-dim);
}

.trust-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: 'Oswald';
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.47px;
    color: white;
    text-transform: uppercase;
}

.trust-item span {
    display: block;
    font-size: .7rem;
    color: white;
    margin-top: 2px;
}

@media(max-width:1024px) {
    .trust-inner {
        overflow-x: auto;
    }

    .trust-item {
        min-width: 160px;
    }
}

@media(max-width:768px) {
    .trust-inner {
        padding: 0 20px;
    }
}

/* ─── PRODUCTS SECTION ─── */
.products-section {
    background: #fff;
    padding: 110px 0;
}

.products-hrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
}

.products-htitle {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.03em;
    color: black;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.products-htitle em {
    font-style: normal;
    color: var(--gold-3);
}

.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.fpill {
    font-family: 'Syne', sans-serif;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid gray;
    background: transparent;
    color: black;
    transition: all var(--tf) var(--ease);
}

.fpill:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.fpill.on {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* WooCommerce Product Grid */
.pgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pgrid .pfc {
    grid-column: span 2;
    grid-row: span 2;
}

.pcard {
    background: var(--bg-card);
    border: 1px solid var(--b1);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--tm) var(--ease), box-shadow var(--tm), border-color var(--tm);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg), var(--sh-gold);
    border-color: var(--b3);
}

.pcard-img {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: var(--bg-3);
    aspect-ratio: 1/1.08;
}

.pcard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(176, 140, 56, 0.04), rgba(5, 5, 3, 0.06));
    pointer-events: none;
    z-index: 1;
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--ease);
}

.pcard:hover .pcard-img img {
    transform: scale(1.06);
}

.pcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 3, .82) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--tm);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: 2;
}

.pcard:hover .pcard-overlay {
    opacity: 1;
}

.pcard-ovr-btn {
    background: var(--gold);
    color: var(--bg-0);
    font-family: 'Syne', sans-serif;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: var(--r-xs);
    border: none;
    width: 100%;
    transition: background var(--tf);
}

.pcard-ovr-btn:hover {
    background: var(--gold-3);
}

.ptag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.ptag-new {
    background: rgba(5, 5, 3, .82);
    color: var(--gold-4);
    border: 1px solid var(--b3);
}

.ptag-hot {
    background: var(--gold);
    color: var(--bg-0);
}

.pcard-body {
    padding: 10px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #121A24;
    justify-content: center;
}

.pcard-cat {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.pcard-name {
    font-family: 'Oswald';
    color: #fff;
    font-weight: 400;
    font-variation-settings: 'opsz' 9;
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: -.01em;
}

.pcard-mol {
    font-size: .7rem;
    color: var(--tx-4);
    font-style: italic;
    margin-bottom: 14px;
    flex: 1;
}

.pcard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--b1);
}

.pcard-price {
    font-family: 'Oswald';
    color: #fff;
    font-weight: 600;
    font-variation-settings: 'opsz' 9;
    font-size: 1.35rem;
    letter-spacing: -.02em;
}

.pcard-price small {
    font-size: .7rem;
    color: var(--tx-4);
}

.pcard-purity {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 9px;
    border-radius: 100px;
    background: rgba(45, 174, 141, .1);
    color: white;
    border: 1px solid var(--gold);
    background: var(--gold);
}

/* Feature card */
.pfc .pcard-img {
    min-height: 320px;
    aspect-ratio: auto;
    flex: 1;
    position: relative;
}

.pfc .pcard-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.pfc .pcard-cat {
    color: var(--gold-3);
}

.pfc .pcard-name {
    font-size: 1.9rem;
    font-family: 'Oswald';
    color: #fff;
}

.pfc .pcard-mol {
    color: rgba(245, 242, 232, .45);
}

.pfc .pcard-foot {
    border-top-color: rgba(255, 255, 255, .1);
}

.pfc .pcard-price {
    font-family: 'Oswald';
    color: #fff;
    font-weight: 600;
}

.pfc .pcard-price small {
    color: rgba(245, 242, 232, .4);
}

.pfc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--bg-0);
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    z-index: 3;
}

.pfc .pcard-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(5, 5, 3, .9) 0%, rgba(5, 5, 3, .4) 40%, transparent 70%);
}

@media(max-width:1200px) {
    .pgrid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pgrid .pfc {
        grid-column: span 3;
        grid-row: span 1;
    }

    .pfc .pcard-img {
        min-height: 260px;
    }
}

@media(max-width:768px) {
    .pgrid {
        grid-template-columns: 1fr 1fr;
    }

    .pgrid .pfc {
        grid-column: span 2;
    }
}

@media(max-width:480px) {
    .pgrid {
        grid-template-columns: 1fr;
    }

    .pgrid .pfc {
        grid-column: span 1;
    }
}

/* ─── NUMBERS SECTION ─── */
.numbers {
    background: #121A24;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--b1);
    border-bottom: 1px solid var(--b1);
}

.numbers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 140, 56, .04) 0%, transparent 70%);
    pointer-events: none;
}

section#numbers .sh-title em {
    font-style: normal;
    color: #fff;
}

.numbers-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.big-num {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(5.5rem, 10vw, 10rem);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1;
    font-family: 'Oswald';
    color: var(--gold);
    margin-bottom: 2rem;
}
.big-num span {
    color: var(--gold-3);
}

.big-num-label {
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tx-4);
    margin-top: 8px;
    margin-bottom: 20px;
}

.numbers-body {
    font-size: .95rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 300;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    background: #0E1218;
    border: 1px solid rgb(240 222 206 / 6%);
    border-radius: var(--r-sm);
    padding: 24px 22px;
    transition: border-color var(--tf), box-shadow var(--tf);
}

.stat-box:hover {
    border-color: var(--gold);
}

.stat-val {
    font-variation-settings: 'opsz' 9;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--tx-1);
    line-height: 1;
    letter-spacing: -.03em;
    font-family: 'Oswald';
}

.stat-val em {
    font-style: normal;
}

.stat-lbl {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: white;
    margin-top: 7px;
}

@media(max-width:1024px) {
    .numbers-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media(max-width:768px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── ABOUT SECTION ─── */
.about {
    background: #fff;
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.about-left .label {
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.about-h2 {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: black;
    margin-bottom: 24px;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.about-h2 em {
    font-style: normal;
    color: var(--gold-3);
}

.about-p {
    font-size: .95rem;
    color: black;
    line-height: 1.85;
    margin-bottom: 18px;
    font-weight: 300;
}

.about-pillars {
    margin: 36px 0;
}

.pillar {
    display: flex;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid gray;
}

.pillar:first-child {
    border-top: 1px solid gray;
}

.pillar-num {
    font-family: 'Oswald';
    font-variation-settings: 'opsz' 9;
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
}

.pillar strong {
    display: block;
    font-family: 'Oswald';
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: black;
    margin-bottom: 4px;
   text-transform: uppercase;
}

.pillar p {
    font-size: .84rem;
    color: black;
    line-height: 1.65;
}

.about-img-wrap {
    position: relative;
    padding-bottom: 32px;
    padding-right: 28px;
}

.about-img-a {
    border-radius: 4px 60px 4px 60px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--sh-lg);
}

.about-img-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-b {
    position: absolute;
    width: 52%;
    aspect-ratio: 1;
    bottom: -28px;
    right: -24px;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 4px solid var(--bg-1);
}

.about-img-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.85) saturate(.9);
}

.about-cert {
    background: var(--bg-3);
    border: 1px solid var(--b3);
    border-radius: var(--r-sm);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-cert-ico {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: rgba(176, 140, 56, .12);
    border: 1px solid var(--b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.about-cert strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: .76rem;
    font-weight: 700;
    color: var(--tx-1);
    margin-bottom: 3px;
}

.about-cert span {
    font-size: .72rem;
    color: var(--tx-3);
}

@media(max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-b {
        display: none;
    }
}

/* ─── QA SECTION ─── */
.qa-row {
    background: #121A24;
    padding: 80px 0;
    border-top: 1px solid var(--b1);
}

.qa-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.qa-card {
    background: #0E1218;
    border: 1px solid rgb(240 222 206 / 6%);
    border-radius: var(--r);
    padding: 32px 28px;
    text-align: center;
    transition: border-color var(--tm), transform var(--tm), box-shadow var(--tm);
    position: relative;
    overflow: hidden;
    place-items: center;
}

.qa-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--tm);
}

.qa-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.qa-card:hover::after {
    opacity: 1;
}

.qa-ico {
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.qa-title {
    font-variation-settings: 'opsz' 9;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.01em;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.qa-desc {
    font-size: .8rem;
    color: #fff;
    line-height: 1.65;
}

@media(max-width:1200px) {
    .qa-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .qa-cards {
        grid-template-columns: 1fr;
    }
}

/* ─── WHY CHOOSE US ─── */
.why {
    background: #0E1218;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--b3), transparent);
}

.why::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 140, 56, .05) 0%, transparent 70%);
    pointer-events: none;
}

.why-header {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: end;
    margin-bottom: 72px;
}

.why-title {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--tx-1);
    font-family: 'Oswald';
    font-weight: 500;
    text-transform: uppercase;
}

.why-title em {
    font-style: normal;
    color: var(--gold-3);
}

.why-body-text {
    font-size: .98rem;
    color: var(--tx-3);
    line-height: 1.8;
    font-weight: 300;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--b1);
    border: 1px solid var(--b1);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.why-card {
    background: #121A24;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background var(--tm);
}

.why-card:hover {
    background: var(--bg-3);
}

.why-n {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
    font-size: 5.5rem;
    font-weight: 200;
    color: rgba(245, 242, 232, .025);
    line-height: 1;
    user-select: none;
    display: none;
}

.why-ico-wrap {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Oswald';
    color: var(--gold);
    opacity: 40%;
    margin-bottom: 10px;
}

.why-card h3 {
    font-variation-settings: 'opsz' 9;
    font-size: 1.3rem;
    font-weight: 300;
    color: #F5F2E8;
    margin-bottom: 12px;
    letter-spacing: -.01em;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.why-card p {
    font-size: .86rem;
    color: #fff;
    line-height: 1.75;
}

.why-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--tm);
}

.why-card:hover .why-card-line {
    opacity: 1;
}

@media(max-width:1024px) {
    .why-header {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── PROCESS ─── */
.process {
    background: #121A24;
    padding: 110px 0;
    border-top: 1px solid var(--b1);
}

section.process .sh-title {
    font-size: 67px !important;
    max-width: 680px !important;
    font-weight: 500 !important;
}

section.process p.sh-sub.on {
    max-width: 100% !important;
    color: #fff !important;
}

.proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 72px;
}

.proc-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--b3) 20%, #ffffff 50%, var(--b3) 80%, transparent);
}

.proc-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.proc-dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    position: relative;
    z-index: 1;
    box-shadow: var(--sh-xs);
    transition: border-color var(--tm), box-shadow var(--tm), transform var(--tm);
}

.proc-step:hover .proc-dot {
    border-color: var(--b4);
    box-shadow: 0 0 0 6px rgba(176, 140, 56, .08);
    transform: scale(1.08);
}

.proc-dot-ico {
    font-size: 14px;
    font-weight: bold;
}

.proc-num {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-0);
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.proc-step h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgb(240 222 206 / 95%);
    margin-bottom: 10px;
    font-family: 'Oswald';
}

.proc-step p {
    font-size: .82rem;
    color: rgb(240 222 206 / 95%);
    line-height: 1.7;
}

@media(max-width:1024px) {
    .proc-steps {
        grid-template-columns: 1fr 1fr;
    }

    .proc-steps::before {
        display: none;
    }
}

@media(max-width:768px) {
    .proc-steps {
        grid-template-columns: 1fr;
    }
}

/* ─── TESTIMONIALS ─── */
.testi {
    background: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--b1);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

section.testi .sh-title {
    display: grid;
    color: black !important;
}

.tcard {
    background: #121A24;
    border: 1px solid var(--b1);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: border-color var(--tm), transform var(--tm), background var(--tm);
}

.tcard:hover {
    border-color: var(--b3);
    transform: translateY(-4px);
    background: var(--bg-3);
}

.tcard-stars {
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.tcard-qm {
    font-family: sans-serif, serif;
    font-size: 4.5rem;
    line-height: .65;
    color: rgba(176, 140, 56, .18);
    display: block;
}

.tcard-text {
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--tx-2);
    line-height: 1.6;
    margin-bottom: 28px;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.tcard-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    overflow: hidden;
}

.tcard-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tcard-name {
    font-size: .76rem;
    font-weight: 700;
    color: #F5F2E8;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.tcard-role {
    font-size: .68rem;
    color: #F5F2E8;
    margin-top: 2px;
}

@media(max-width:1024px) {
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── FAQ ─── */
.faq {
    background: #121A24;
    padding: 110px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 96px;
    align-items: start;
}

.faq-left .label {
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.faq-left h2 {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--tx-1);
    margin-bottom: 18px;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.faq-left h2 em {
    font-style: normal;
    color: var(--gold-3);
}

.faq-left p {
    font-size: .92rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 32px;
}

.faq-support {
    background: var(--bg-3);
    border: 1px solid var(--b1);
    border-radius: var(--r-sm);
    padding: 24px;
    margin-top: 36px;
    display: none !important;
}

.faq-support h4 {
    font-family: 'Syne', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    color: var(--tx-1);
    margin-bottom: 7px;
}

.faq-support p {
    font-size: .8rem;
    color: var(--tx-3);
    line-height: 1.65;
    margin-bottom: 18px;
}

.faq-items {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--b1);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    color: white;
    letter-spacing: .02em;
    user-select: none;
    transition: color var(--tf);
    gap: 16px;
}

.faq-q:hover {
    color: var(--tx-1);
}

.faq-q.open {
    color: var(--gold-3);
}

.faq-ic {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    color: var(--tx-3);
    flex-shrink: 0;
    transition: background var(--tf), border-color var(--tf), transform var(--tf);
}

.faq-q.open .faq-ic {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-0);
    transform: rotate(45deg);
}

.faq-a {
    font-size: .86rem;
    color: var(--tx-3);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease), padding .45s var(--ease);
}

.faq-a.open {
    max-height: 300px;
    padding-bottom: 20px;
}

@media(max-width:1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

/* ─── CONTACT ─── */
.contact {
    background: #0E1218;
    padding: 110px 0;
    border-top: 1px solid var(--b1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left .label {
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.contact-left h2 {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--tx-1);
    margin-bottom: 18px;
    font-family: 'Oswald';
    text-transform: uppercase;
    width: 60%;
}

.contact-left h2 em {
    font-style: normal;
    color: var(--gold-3);
}

.contact-left p {
    font-size: .92rem;
    color: #F5F2E8;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #121A24;
    border: 1px solid var(--b1);
    border-radius: var(--r-sm);
    transition: border-color var(--tf), transform var(--tf);
}

.contact-method:hover {
    border-color: var(--b3);
    transform: translateX(4px);
}

.cm-ico {
    width: 38px;
    height: 38px;
    border-radius: var(--r-xs);
    background: var(--gold);
    border: 1px solid var(--b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.cm-label {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3px;
}

.cm-val {
    font-size: .86rem;
    color: #fff;
}

.resrchBox {
    border-left: 15px solid var(--gold);
    padding-left: 3rem;
    padding-right: 2rem;
}

.form-card {
    background: #121A24;
    border: 1px solid var(--b1);
    border-radius: var(--r-lg);
    padding: 44px 40px;
    box-shadow: var(--sh-sm);
}

.form-card h3 {
    font-variation-settings: 'opsz' 9;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--tx-1);
    margin-bottom: 32px;
    letter-spacing: -.02em;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.f2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    margin-bottom: 16px;
}

.fg label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 7px;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    background: #0E1218;
    border: 1px solid var(--b1);
    border-radius: var(--r-xs);
    padding: 13px 16px;
    font-size: .88rem;
    color: var(--tx-1);
    transition: border-color var(--tf), box-shadow var(--tf);
    appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(176, 140, 56, .12);
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--tx-4);
}

.fg textarea {
    resize: vertical;
    min-height: 116px;
}

.fg select option {
    background: var(--bg-3);
}

@media(max-width:1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media(max-width:768px) {
    .form-card {
        padding: 28px 20px;
    }

    .f2col {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce contact form 7 overrides */
.wpcf7-form .fg input,
.wpcf7-form .fg textarea,
.wpcf7-form .fg select {
    width: 100%;
}

.wpcf7-submit {
    width: 100%;
    justify-content: center;
}

/* ─── CTA ─── */
.cta {
    background: #B11320;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--b1);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 140, 56, .07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-ring {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    opacity: .15;
}

.cta-ring svg {
    animation: ctaSpin 24s linear infinite;
}

@keyframes ctaSpin {
    to {
        transform: rotate(360deg);
    }
}

.cta h2 {
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.03em;
    color: var(--tx-1);
    margin-bottom: 24px;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.cta-btns.on a.btn.btn-gold {
    background: #007FFE;
}

.cta-btns.on a.btn.btn-ghost {
    border: 1px solid #fff;
    color: #fff;
}

.cta h2 em {
    font-style: normal;
    color: #0E1218;
}

.cta p {
    font-size: .98rem;
    color: #fff;
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media(max-width:768px) {
    .cta-ring {
        display: none;
    }
}

/* ─── FOOTER ─── */
#site-footer {
    background: #121A24;
    border-top: 1px solid var(--b1);
    padding: 76px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

.footer-brand p {
    font-size: .84rem;
    color: #F5F2E8;
    line-height: 1.8;
    margin: 18px 0 28px;
    max-width: 270px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: var(--r-xs);
    border: 1px solid var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--tx-4);
    transition: all var(--tf);
}

.fsoc:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-0);
}

.footer-col h5 {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Oswald';
}

.footer-col ul li+li {
    margin-top: 9px;
}

.footer-col ul li a {
    font-size: .82rem;
    color: #F5F2E8;
    transition: color var(--tf);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

/* WP nav menu in footer */
.footer-col .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-mid {
    border-top: 1px solid var(--b1);
    border-bottom: 1px solid var(--b1);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

.footer-mid p {
    font-size: .72rem;
    color: #F5F2E8;
    font-family: 'Syne', sans-serif;
    letter-spacing: .04em;
}

.footer-flinks ul {
    display: flex;
    gap: 22px;
}

.footer-flinks ul li a {
    font-size: .7rem;
    color: #F5F2E8;
    font-family: 'Syne', sans-serif;
    letter-spacing: .06em;
    transition: color var(--tf);
}

.footer-flinks ul li a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    padding: 22px 0;
    text-align: center;
}

.footer-disclaimer .wrap p {
    font-size: .68rem;
    color: #F5F2E8;
    max-width: 840px;
    margin: 0 auto;
    line-height: 1.65;
}

@media(max-width:1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media(max-width:768px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-mid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ─── WOOCOMMERCE OVERRIDES ─── */
.woocommerce-page .woocommerce {
    max-width: 1600px;
    margin: 0 auto;
    padding: 110px 48px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
}

.woocommerce ul.products li.product {
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--tm), box-shadow var(--tm), border-color var(--tm);
    margin: 0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: var(--b3);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1.08;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Oswald';
    font-variation-settings: 'opsz' 9;
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    padding: 20px 22px 0;
}

.woocommerce ul.products li.product .price {
    color: var(--gold-3);
    font-family: 'Oswald';
    font-size: 1.2rem;
    padding: 0 22px 20px;
}

.woocommerce ul.products li.product .button {
    background: var(--gold);
    color: var(--bg-0);
    font-family: 'Syne', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--r-xs);
    border: none;
    margin: 0 22px 22px;
    display: block;
    text-align: center;
    padding: 12px;
    transition: background var(--tf);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--gold-3);
}

.woocommerce div.product .product_title {
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--tx-1);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--gold-3);
    font-family: sans-serif, serif;
    font-size: 2rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--tx-2);
    line-height: 1.8;
}

.woocommerce .single_add_to_cart_button {
    background: var(--gold) !important;
    color: var(--bg-0) !important;
    font-family: 'Syne', sans-serif !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    border-radius: var(--r-xs) !important;
    border: none !important;
    padding: 16px 36px !important;
    transition: background var(--tf) !important;
}

.woocommerce .single_add_to_cart_button:hover {
    background: var(--gold-3) !important;
}

.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout {
    background: var(--bg-2);
    border: 1px solid var(--b1);
    border-radius: var(--r-lg);
    padding: 32px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: var(--bg-3);
    border: 1px solid var(--b1);
    border-radius: var(--r-sm);
    padding: 28px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background: var(--bg-3) !important;
    border-top-color: var(--gold) !important;
    color: var(--tx-1) !important;
}

@media(max-width:768px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
    }

    .woocommerce-page .woocommerce {
        padding: 60px 20px;
    }
}

/* ─── SINGLE PRODUCT PAGE ─── */
.single-product-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 110px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.product-gallery img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
}

.product-details .pcard-cat {
    font-family: 'Syne', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.product-details h1 {
    font-family: sans-serif, serif;
    font-variation-settings: 'opsz' 9;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--tx-1);
    margin-bottom: 16px;
}
.price ins {
    text-decoration: none;
}
.product-details .price {
    font-family: sans-serif, serif;
    font-size: 2rem;
    color: var(--gold-3);
    margin-bottom: 24px;
}

.innerBann {
    padding: 150px 0 100px;
    text-align: center;
    background: #0E1218;
    border-bottom: 1px solid;
}

.innerBann h1 {
    text-transform: uppercase;
    font-family: 'Oswald';
    font-size: 50px;
    font-weight: 400;
}

form.cart {
    display: flex;
    gap: 1rem;
}


@media(max-width:1024px) {
    .single-product-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .woocommerce-page .woocommerce {
        padding: 80px 32px;
    }
}

@media(max-width:768px) {
    .single-product-wrap {
        padding: 60px 20px;
    }
}


















/* Nav icon buttons */
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  position: relative;
}
.nav-icon-btn:hover {
  background: rgba(255,255,255,0.08);
}

/* Cart count badge */
.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-gold, #c9a84c);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.nav-cart-count.hidden {
  display: none;
}

/* Search drawer */
.nav-search-drawer {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: var(--color-surface, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: none;
  z-index: 999;
}
.nav-search-drawer.open {
  display: block;
}
.nav-search-drawer form {
  display: flex;
  gap: 6px;
}
.nav-search-drawer input[type="search"] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: inherit;
  font-size: 14px;
  outline: none;
}
.nav-search-drawer input[type="search"]:focus {
  border-color: var(--color-gold, #c9a84c);
}
.nav-search-drawer button[type="submit"] {
  padding: 8px 12px;
  background: var(--color-gold, #c9a84c);
  border: none;
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Close search drawer when clicking outside */







/* Order Tracking Form Wrapper */
.woocommerce-form.track_order {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(145deg, #0d1526, #16233b);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    color: #fff;
    font-family: inherit;
}

/* Intro Text */
.woocommerce-form.track_order p:first-of-type {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
}

/* Form Layout */
.woocommerce-form.track_order {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-form.track_order .form-row-first,
.woocommerce-form.track_order .form-row-last {
    width: calc(50% - 10px);
}

/* Labels */
.woocommerce-form.track_order label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Inputs */
.woocommerce-form.track_order .input-text {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.woocommerce-form.track_order .input-text::placeholder {
    color: rgba(255,255,255,0.45);
}

.woocommerce-form.track_order .input-text:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}

/* Button Row */
.woocommerce-form.track_order .form-row:last-of-type {
    width: 100%;
    margin-top: 10px;
}

/* Track Button */
.woocommerce-form.track_order button.button {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-form.track_order button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.35);
}

.woocommerce-form.track_order button.button:active {
    transform: translateY(0);
}

/* Remove Clear Div Gap */
.woocommerce-form.track_order .clear {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-form.track_order {
        padding: 25px;
    }

    .woocommerce-form.track_order .form-row-first,
    .woocommerce-form.track_order .form-row-last {
        width: 100%;
    }
}