/**
 * Theme Name: Astra Child - Cebastian Co
 * Theme URI: https://wpastra.com/
 * Description: Astra Child Theme for Cebastian Co E-Shop.
 * Author: Cebastian Co
 * Author URI: http://wpastra.com/about/
 * Template: astra
 * Version: 1.0.0
 * License: GPL-2.0+
 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain: astra-child
 */

/* ==========================================================================
   Brand Tokens & Global Base
   ========================================================================== */
:root {
    --brand-deep-black:    #0A0A11;
    --brand-slate-night:   #141A1F;
    --brand-urban-teal:    #07816B;
    --brand-electric-mint: #03F7C4;
    --brand-charred-brown: #4D402B;
    --brand-satin-gold:    #F9B12C;
    --brand-text-light:    #E8E8E8;
    --brand-muted:         #8FA3BD;
}

body {
    background-color: var(--brand-deep-black) !important;
    color: var(--brand-text-light) !important;
    font-family: 'Exo 2', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-text-light) !important;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Base button */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: transparent !important;
    color: var(--brand-electric-mint) !important;
    border: 2px solid var(--brand-electric-mint);
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: var(--brand-electric-mint) !important;
    color: var(--brand-deep-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(3, 247, 196, 0.4);
}

a {
    color: var(--brand-electric-mint);
    text-decoration: underline;
    font-weight: 600;
}

a:hover {
    color: var(--brand-electric-mint);
    text-shadow: 0 0 8px rgba(3, 247, 196, 0.5);
}

/* ==========================================================================
   Shared Keyframes
   ========================================================================== */
@keyframes slideUpFade {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes float-async {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ==========================================================================
   Reveal on Scroll
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background-color: var(--brand-deep-black) !important;
    border-bottom: 2px solid var(--brand-charred-brown);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.admin-bar .site-header {
    top: 32px;
}

.scrolled-header {
    background: rgba(10, 10, 17, 0.96) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.ast-kinetic-header {
    display: flex;
    flex-direction: column;
}

.header-container.bento-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    gap: 20px;
    position: relative;
}

.header-logo img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(3, 247, 196, 0.3));
    display: block;
}

.fallback-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-satin-gold);
    letter-spacing: 2px;
}

/* --- Primary Navigation --- */
.main-navigation .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu > li > a {
    color: var(--brand-text-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}

.main-navigation .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--brand-electric-mint);
    transition: width 0.3s ease;
}

.main-navigation .nav-menu > li:hover > a::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown,
.menu-item-has-children {
    position: relative;
}

.has-dropdown .dropdown-menu,
.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%; left: -20px;
    background: var(--brand-slate-night);
    min-width: 210px;
    border: 1px solid var(--brand-charred-brown);
    border-top: 3px solid var(--brand-electric-mint);
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu,
.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.dropdown-menu a,
.sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--brand-text-light);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.dropdown-menu a:hover,
.sub-menu a:hover {
    background: var(--brand-deep-black);
    color: var(--brand-electric-mint);
    text-shadow: none;
}

.membership-link a,
li.membership-link > a {
    color: var(--brand-satin-gold) !important;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-link {
    color: var(--brand-text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.icon-link:hover {
    color: var(--brand-electric-mint);
    text-shadow: none;
}

/* Cart count badge */
.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--brand-electric-mint);
    color: var(--brand-deep-black);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    vertical-align: super;
    margin-left: 3px;
    line-height: 1;
}

/* Hide badge when zero — :empty won't work because the span has a text node */
.cart-count.is-hidden { display: none; }

/* Mobile hamburger button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    cursor: pointer;
    order: 3;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    transform: none;
    background: none !important;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brand-text-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Kinetic Marquee
   ========================================================================== */
.marquee-container {
    background: var(--brand-electric-mint);
    color: var(--brand-deep-black);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--brand-charred-brown);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-content span  { margin-right: 40px; }
.marquee-content .dot  { margin-right: 40px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.custom-bento-footer {
    background-color: var(--brand-deep-black) !important;
    border-top: 3px solid var(--brand-urban-teal);
    padding: 60px 40px 20px;
}

.footer-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-box {
    background: var(--brand-slate-night);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--brand-charred-brown);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
}

.footer-box:hover {
    transform: perspective(500px) translateZ(15px);
    border-color: var(--brand-electric-mint);
    box-shadow: 0 10px 30px rgba(3, 247, 196, 0.08);
}

.brand-box { grid-column: span 2; }

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-satin-gold) !important;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--brand-electric-mint) !important;
}

.footer-box p {
    color: var(--brand-muted);
    line-height: 1.6;
    font-size: 15px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li { margin-bottom: 12px; }

.footer-box a {
    color: var(--brand-text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-box a:hover {
    color: var(--brand-electric-mint);
    text-shadow: none;
}

/* Newsletter form */
.bento-subscribe-form {
    display: flex;
    margin-top: 15px;
    gap: 0;
}

.bento-subscribe-form input[type="email"] {
    flex: 1;
    background: var(--brand-deep-black);
    border: 1px solid var(--brand-charred-brown);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 10px 15px;
    color: var(--brand-text-light);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.bento-subscribe-form input[type="email"]:focus {
    border-color: var(--brand-urban-teal);
}

.bento-subscribe-form .button {
    border-radius: 0 8px 8px 0 !important;
    padding: 10px 20px;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--brand-charred-brown);
    font-size: 14px;
    color: var(--brand-muted);
}

.footer-bottom a {
    color: var(--brand-muted);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--brand-electric-mint);
    text-shadow: none;
}

/* ==========================================================================
   Form Feedback (AJAX responses)
   ========================================================================== */
.form-success {
    color: var(--brand-electric-mint);
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
}

.form-error {
    color: #ff6b6b;
    font-weight: 600;
    padding: 10px 0;
    font-size: 15px;
}

.form-response {
    min-height: 1.4em;
    margin-top: 10px;
}

/* ==========================================================================
   Misc Layout Utilities
   ========================================================================== */
.ast-container { max-width: 1400px !important; }

.mythic-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-satin-gold), transparent);
    width: 60%;
    margin: 40px auto;
}

.section-title {
    text-align: center;
    font-size: clamp(30px, 5vw, 54px);
    color: var(--brand-electric-mint) !important;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

/* ==========================================================================
   Front Page: Hero
   ========================================================================== */
.hero-section {
    background: var(--brand-slate-night);
    text-align: center;
    padding: 120px 20px;
    border-bottom: 2px solid var(--brand-charred-brown);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(3, 247, 196, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo-img {
    max-width: 280px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(3, 247, 196, 0.25));
}

.hero-title {
    font-size: clamp(38px, 8vw, 80px);
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--brand-text-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--brand-satin-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ==========================================================================
   Front Page: Collections — Editorial Overlay Cards
   ========================================================================== */
.collection-section-header {
    text-align: center;
    padding: 70px 20px 40px;
    background: var(--brand-deep-black);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: #050508;
    padding: 0;
}

.collection-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--brand-slate-night) center/cover no-repeat;
    cursor: pointer;
    border-radius: 0;
    border: none;
    display: block;
    text-decoration: none;
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,17,0.55) 60%, rgba(10,10,17,0.96) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.collection-card:hover::before {
    background: linear-gradient(180deg, rgba(7,129,107,0.08) 0%, rgba(10,10,17,0.4) 55%, rgba(10,10,17,0.94) 100%);
}

.collection-bg-img {
    position: absolute;
    inset: -4%;
    background: center/cover no-repeat;
    background-color: var(--brand-slate-night);
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.collection-card:hover .collection-bg-img {
    transform: scale(1.07);
}

.collection-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(18px, 3vw, 34px);
    z-index: 2;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-body {
    transform: translateY(-6px);
}

.collection-tag {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--brand-electric-mint);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
}

.collection-title {
    font-size: clamp(18px, 2.2vw, 28px);
    color: var(--brand-text-light);
    margin: 0 0 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.collection-card p {
    color: rgba(232,232,232,0.72);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.collection-card .button {
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 2px;
}

/* ==========================================================================
   Front Page: Featured Products
   ========================================================================== */
.featured-products-section {
    padding: 56px 40px;
    background: var(--brand-slate-night);
    border-top: 1px solid var(--brand-charred-brown);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-product-card {
    background: var(--brand-deep-black);
    border: 1px solid var(--brand-charred-brown);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-satin-gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.featured-product-card a {
    text-decoration: none;
    display: block;
}

.featured-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    mix-blend-mode: luminosity;
    transition: mix-blend-mode 0.3s ease;
}

.featured-product-card:hover img {
    mix-blend-mode: normal;
}

.featured-product-card h3 {
    color: var(--brand-electric-mint) !important;
    font-size: 16px !important;
    margin: 8px 0 4px;
    text-transform: uppercase;
}

.featured-product-card .product-price {
    color: var(--brand-text-light);
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.featured-product-card .button {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
}

/* ==========================================================================
   Front Page: Membership CTA Strip
   ========================================================================== */
.membership-cta-strip {
    padding: 64px 40px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(7, 129, 107, 0.12) 0%, var(--brand-deep-black) 65%);
    border-top: 1px solid var(--brand-charred-brown);
    position: relative;
    overflow: hidden;
}

.membership-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(249, 177, 44, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.membership-cta-strip h2 {
    font-size: clamp(34px, 6vw, 64px);
    color: var(--brand-satin-gold) !important;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.membership-cta-strip p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--brand-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-transform: none;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-kinetic-container {
    background: var(--brand-deep-black);
    color: var(--brand-text-light);
    padding: 64px 40px;
    position: relative;
    overflow-x: hidden;
}

.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-bento-item {
    background: var(--brand-slate-night);
    border: 1px solid var(--brand-charred-brown);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.about-bento-item:hover {
    transform: perspective(1000px) scale(1.02) rotateY(-1.5deg) rotateX(1.5deg);
    border-color: var(--brand-urban-teal);
    z-index: 10;
}

.item-hero {
    grid-column: 1 / 13;
    grid-row: 1 / 3;
    background: url('images/Shop_Header.png') no-repeat center 40%;
    background-size: cover;
    border-color: var(--brand-electric-mint);
}

.item-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,17,0.75) 0%, rgba(10,10,17,0.2) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.item-text-1     { grid-column: 1 / 8;  grid-row: 3 / 5; }
.item-image-1    { grid-column: 8 / 13; grid-row: 3 / 6; background: rgba(3, 247, 196, 0.04); display: flex; align-items: center; justify-content: center; }
.item-text-2     { grid-column: 1 / 6;  grid-row: 5 / 7; }
.item-stat-1     { grid-column: 6 / 8;  grid-row: 5 / 6; background: var(--brand-urban-teal); color: var(--brand-deep-black); text-align: center; display: flex; flex-direction: column; justify-content: center; }
.item-stat-2     { grid-column: 6 / 8;  grid-row: 6 / 7; background: var(--brand-satin-gold); color: var(--brand-deep-black); text-align: center; display: flex; flex-direction: column; justify-content: center; }
.item-philosophy { grid-column: 8 / 13; grid-row: 6 / 8; }

.about-hero-title {
    font-size: clamp(50px, 10vw, 120px);
    line-height: 0.9;
    color: var(--brand-satin-gold) !important;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    mix-blend-mode: screen;
}

.floating-graphic {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 220px;
    filter: invert(1) opacity(0.08);
    animation: slow-spin 20s linear infinite;
    pointer-events: none;
}

.bento-h3 {
    color: var(--brand-electric-mint) !important;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 16px;
}

.bento-p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--brand-muted);
}

.stat-num {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 800;
    line-height: 1;
    color: inherit;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: inherit;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-kinetic-container {
    background: var(--brand-deep-black);
    color: var(--brand-text-light);
    padding: 64px 40px;
    position: relative;
    overflow-x: hidden;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-left {
    flex: 1 1 400px;
    position: sticky;
    top: 160px;
    height: fit-content;
}

.contact-right {
    flex: 1 1 560px;
}

.contact-title {
    font-size: clamp(48px, 9vw, 120px);
    line-height: 0.9;
    color: var(--brand-electric-mint) !important;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 28px;
}

.contact-desc {
    font-size: 18px;
    color: var(--brand-muted);
    max-width: 380px;
    line-height: 1.6;
}

.contact-bento-item {
    background: var(--brand-slate-night);
    border: 1px solid var(--brand-charred-brown);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 28px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.contact-bento-item:hover {
    transform: translateX(10px);
    border-color: var(--brand-satin-gold);
}

.contact-h3 {
    color: var(--brand-satin-gold) !important;
    font-size: 26px;
    margin-bottom: 20px;
}

.contact-bento-item form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-bento-item input,
.contact-bento-item textarea,
.contact-bento-item select {
    background: var(--brand-deep-black);
    border: 1px solid var(--brand-charred-brown);
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--brand-text-light);
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-bento-item input:focus,
.contact-bento-item textarea:focus {
    border-color: var(--brand-electric-mint);
    box-shadow: 0 0 15px rgba(3, 247, 196, 0.08);
}

.contact-bento-item button[type="submit"] {
    align-self: flex-start;
    padding: 14px 36px;
    font-size: 16px;
}

.contact-info-text {
    color: var(--brand-text-light);
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================================================
   Memberships Page
   ========================================================================== */
.memberships-container {
    padding: 64px 20px;
    background: var(--brand-deep-black);
    color: var(--brand-text-light);
}

.memberships-header {
    text-align: center;
    margin-bottom: 80px;
}

.memberships-header h1 {
    font-size: clamp(36px, 7vw, 70px);
    color: var(--brand-electric-mint) !important;
    text-shadow: 0 0 20px rgba(3, 247, 196, 0.3);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.memberships-header p {
    font-size: 18px;
    color: var(--brand-muted);
}

.bento-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--brand-slate-night);
    border: 1px solid var(--brand-charred-brown);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(249, 177, 44, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-14px);
    border-color: var(--brand-satin-gold);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

.pricing-card.premium {
    border-color: var(--brand-electric-mint);
    background: radial-gradient(circle at bottom right, rgba(3, 247, 196, 0.04), var(--brand-slate-night));
}

.pricing-card.premium:hover {
    border-color: var(--brand-electric-mint);
    box-shadow: 0 18px 50px rgba(3, 247, 196, 0.15);
}

.pricing-card.ascendant {
    border-color: var(--brand-satin-gold);
    background: radial-gradient(circle at bottom left, rgba(249, 177, 44, 0.05), var(--brand-slate-night));
}

.pricing-card.ascendant:hover {
    box-shadow: 0 18px 50px rgba(249, 177, 44, 0.15);
}

.tier-name {
    font-size: 22px;
    color: var(--brand-satin-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.premium .tier-name { color: var(--brand-electric-mint) !important; }
.ascendant .tier-name { color: var(--brand-satin-gold) !important; }

.price-tag {
    font-size: 52px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--brand-text-light);
    margin-bottom: 24px;
    line-height: 1;
}

.price-duration {
    font-size: 16px;
    color: var(--brand-muted);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--brand-charred-brown);
    font-size: 15px;
    position: relative;
    color: var(--brand-text-light);
}

.features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-urban-teal);
    font-weight: 700;
}

.pricing-card .button {
    width: 100%;
    text-align: center;
    background: var(--brand-satin-gold) !important;
    color: var(--brand-deep-black) !important;
    border: none;
    padding: 14px 20px;
}

.pricing-card.premium .button {
    background: var(--brand-electric-mint) !important;
    color: var(--brand-deep-black) !important;
}

.pricing-card.ascendant .button {
    background: var(--brand-satin-gold) !important;
    color: var(--brand-deep-black) !important;
}

.pricing-card .button.is-current-tier {
    background: var(--brand-charred-brown) !important;
    color: var(--brand-text-light) !important;
    cursor: default;
    pointer-events: none;
    opacity: 0.7;
}

/* Kinetic float animation for pricing cards */
.kinetic-floating {
    animation: float-async 6s ease-in-out infinite;
}

.kinetic-floating:nth-child(2) {
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.kinetic-floating:nth-child(3) {
    animation-delay: 3s;
    animation-duration: 5.5s;
}

/* ==========================================================================
   WooCommerce Shop Overrides
   ========================================================================== */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px !important;
    margin-top: 50px !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    background: var(--brand-slate-night);
    border: 1px solid var(--brand-charred-brown);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.woocommerce ul.products li.product:hover {
    transform: perspective(600px) rotateX(2deg) translateY(-10px);
    border-color: var(--brand-satin-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.woocommerce ul.products li.product img {
    border-radius: 8px;
    mix-blend-mode: luminosity;
    transition: mix-blend-mode 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    mix-blend-mode: normal;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--brand-electric-mint) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    text-transform: uppercase;
    margin-top: 14px !important;
}

.woocommerce ul.products li.product .price {
    color: var(--brand-text-light) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.woocommerce ul.products li.product .button {
    margin-top: 14px !important;
    display: block;
    width: 100%;
    text-align: center;
}

img.logo-graphic {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   Responsive — Tablet (≤ 960px)
   ========================================================================== */
@media (max-width: 960px) {
    /* Show hamburger, hide desktop nav */
    .mobile-menu-toggle { display: flex; }

    #site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-slate-night);
        border-top: 2px solid var(--brand-urban-teal);
        border-bottom: 1px solid var(--brand-charred-brown);
        z-index: 998;
        padding: 16px 0 24px;
    }

    #site-navigation.nav-open { display: block; }

    #site-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0 28px;
    }

    #site-navigation .nav-menu > li > a {
        padding: 14px 0;
        display: block;
        border-bottom: 1px solid var(--brand-charred-brown);
    }

    .has-dropdown .dropdown-menu,
    .menu-item-has-children > .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        border-top: none;
        padding: 4px 0 4px 16px;
        animation: none;
        background: transparent;
        min-width: 0;
    }

    .dropdown-menu a,
    .sub-menu a {
        padding: 8px 0;
        font-size: 13px;
    }

    .header-container.bento-nav {
        flex-wrap: wrap;
        padding: 12px 24px;
    }

    .header-actions { order: 2; margin-left: auto; }
    .mobile-menu-toggle { order: 3; }
    #site-navigation { order: 4; width: 100%; }

    /* About grid collapses to single column */
    .about-bento-grid {
        display: flex !important;
        flex-direction: column;
    }

    .about-bento-item { border-radius: 16px; }

    /* Contact sticky sidebar unsticks */
    .contact-left { position: static !important; }
}

/* ==========================================================================
   Responsive — Mobile (≤ 640px)
   ========================================================================== */
@media (max-width: 640px) {
    .header-container.bento-nav { padding: 10px 16px; }

    .hero-section { padding: 80px 20px; }

    .collection-grid { padding: 50px 20px; gap: 20px; }

    .featured-products-section { padding: 60px 20px; }

    .membership-cta-strip { padding: 70px 20px; }

    .about-kinetic-container,
    .contact-kinetic-container,
    .memberships-container { padding: 60px 20px; }

    .custom-bento-footer { padding: 40px 20px 16px; }

    .footer-bento-grid { grid-template-columns: 1fr; gap: 20px; }

    .brand-box { grid-column: span 1; }

    .bento-subscribe-form { flex-direction: column; gap: 10px; }

    .bento-subscribe-form input[type="email"] {
        border-right: 1px solid var(--brand-charred-brown);
        border-radius: 8px;
    }

    .bento-subscribe-form .button {
        border-radius: 8px !important;
        width: 100%;
    }

    .contact-layout { flex-direction: column; gap: 30px; }

    .bento-pricing-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Collections stacks on mobile */
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .collection-card {
        aspect-ratio: 4/3;
    }
}

/* ==========================================================================
   Ambient Background System
   Fixed behind all content — pure CSS animated glow orbs
   ========================================================================== */
.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.orb-teal {
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(7,129,107,0.18) 0%, transparent 70%);
    top: -35%;
    left: -25%;
    animation: orb-drift-1 30s ease-in-out infinite;
    filter: blur(60px);
}

.orb-gold {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(249,177,44,0.12) 0%, transparent 70%);
    bottom: -25%;
    right: -20%;
    animation: orb-drift-2 38s ease-in-out infinite;
    filter: blur(70px);
}

.orb-mint {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(3,247,196,0.08) 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation: orb-drift-3 24s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(12vw, 18vh) scale(1.08); }
    70%       { transform: translate(-6vw, 32vh) scale(0.94); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35%       { transform: translate(-14vw, -10vh) scale(1.06); }
    65%       { transform: translate(9vw, -22vh) scale(0.97); }
}

@keyframes orb-drift-3 {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(-10vw, 12vh) scale(1.12); }
}

/* Film-grain overlay on the whole page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
}

/* Ensure all content sits above ambient layer */
/* .site-header intentionally excluded — it keeps position:sticky + z-index:999 from its own rule */
#primary,
.site-footer {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Hero — Full Viewport with Real Image
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 70px;
    overflow: hidden;
    border-bottom: 1px solid var(--brand-charred-brown);
    background: none;
}

/* Image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/Concrete_GemCebastian_Infinity.png') center 40% / cover no-repeat;
    transform: scale(1.08);
    transform-origin: center;
    will-change: transform;
    animation: hero-kenburns 20s ease-in-out infinite alternate;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 18% 22%, rgba(249,177,44,0.22) 0%, transparent 45%),
        radial-gradient(circle at 78% 72%, rgba(3,247,196,0.16) 0%, transparent 52%);
    mix-blend-mode: screen;
    filter: blur(22px);
    animation: hero-light-drift 16s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 36%, rgba(255,255,255,0.16) 50%, transparent 64%);
    transform: translateX(-120%);
    mix-blend-mode: soft-light;
    animation: hero-light-sweep 14s ease-in-out infinite;
}

/* Dark vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,17,0.32) 0%,
        rgba(10,10,17,0.46) 42%,
        rgba(10,10,17,0.80) 100%
    );
}

/* Floating brand watermark */
.hero-watermark {
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(180px, 32vw, 480px);
    opacity: 0.07;
    animation: slow-spin 50s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 40px rgba(3,247,196,0.3));
}

/* All hero content above layers */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* Ghost/secondary button variant */
.button-ghost {
    background: rgba(232,232,232,0.06) !important;
    border-color: rgba(232,232,232,0.35) !important;
    color: var(--brand-text-light) !important;
}

.button-ghost:hover {
    background: rgba(232,232,232,0.14) !important;
    border-color: var(--brand-text-light) !important;
    color: var(--brand-text-light) !important;
    box-shadow: none;
    transform: translateY(-2px);
}

/* Animated scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--brand-muted);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 2;
    animation: scroll-hint-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

.scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--brand-electric-mint), transparent);
}

@keyframes scroll-hint-pulse {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 0.9;  transform: translateX(-50%) translateY(7px); }
}

@keyframes hero-kenburns {
    0%   { transform: scale(1.08) translate3d(0, 0, 0); }
    100% { transform: scale(1.16) translate3d(-2%, 1.2%, 0); }
}

@keyframes hero-light-drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-1.5%, 1.5%, 0) scale(1.08); }
}

@keyframes hero-light-sweep {
    0%, 20%   { transform: translateX(-120%); opacity: 0; }
    40%       { opacity: 0.45; }
    72%       { opacity: 0.25; }
    100%      { transform: translateX(120%); opacity: 0; }
}

/* ==========================================================================
   Brand Strip — Texture Section (front page)
   ========================================================================== */
.brand-strip {
    position: relative;
    padding: 64px 40px;
    overflow: hidden;
    background: var(--brand-slate-night);
    border-top: 1px solid var(--brand-charred-brown);
    border-bottom: 1px solid var(--brand-charred-brown);
}

.brand-strip-bg {
    position: absolute;
    inset: 0;
    background: url('images/HERO_HOME_PAGE_CEBASTIANCO.webp') center/cover no-repeat;
    opacity: 0.08;
    mix-blend-mode: luminosity;
}

.brand-strip-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-strip-logo {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 0 30px rgba(3,247,196,0.15));
    animation: float-async 8s ease-in-out infinite;
}

.brand-strip-text h2 {
    font-size: clamp(30px, 4vw, 52px);
    color: var(--brand-satin-gold) !important;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.brand-strip-text p {
    font-size: 17px;
    color: var(--brand-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .brand-strip { padding: 70px 20px; }
    .brand-strip-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .brand-strip-logo { margin: 0 auto; max-width: 240px; }
}

/* ==========================================================================
   Reveal Stagger Delays
   ========================================================================== */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ==========================================================================
   About Page — Certified Stamp & Infinity Watermark
   ========================================================================== */
.about-certified-stamp {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: clamp(80px, 10vw, 130px);
    opacity: 0.75;
    animation: slow-spin 20s linear infinite;
    filter: drop-shadow(0 0 10px rgba(249,177,44,0.3));
    pointer-events: none;
}

.about-infinity-watermark {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: clamp(120px, 18vw, 220px);
    opacity: 0.05;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: slow-spin 35s linear infinite reverse;
}

/* ==========================================================================
   Contact Page — Camo Texture
   ========================================================================== */
.contact-kinetic-container {
    background: var(--brand-deep-black);
}

.contact-camo-bg {
    position: absolute;
    inset: 0;
    background: url('images/HERO_HOME_PAGE_CEBASTIANCO.webp') center/cover no-repeat;
    opacity: 0.04;
    mix-blend-mode: screen;
    pointer-events: none;
}

.contact-name-logo {
    display: block;
    width: 100%;
    max-width: 260px;
    margin-top: 30px;
    opacity: 0.6;
    filter: invert(1) brightness(0.85);
}

/* ==========================================================================
   Memberships Page — Certified Stamp & Watermark
   ========================================================================== */
.tier-stamp {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 16px;
    animation: slow-spin 18s linear infinite;
    filter: drop-shadow(0 0 12px rgba(249,177,44,0.4));
}

.membership-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    opacity: 0.025;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* ==========================================================================
   Stat Counter (animated number)
   ========================================================================== */
.stat-num[data-target] {
    display: block;
}

/* ==========================================================================
   Hero eyebrow + collection card body text
   ========================================================================== */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 18px;
    opacity: 0.8;
}

.collection-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 10px;
}

.collection-cta {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-top: 4px;
    transition: letter-spacing 0.3s ease;
}

.collection-card:hover .collection-cta {
    letter-spacing: 0.26em;
}

/* ==========================================================================
   Brand strip text helpers
   ========================================================================== */
.brand-strip-tagline {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--brand-text-light);
    margin-bottom: 8px;
}

.brand-strip-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-muted);
    letter-spacing: 0.04em;
}

/* ==========================================================================
   About page — relaunch banner logo in image tile
   ========================================================================== */
.about-banner-logo {
    width: 90%;
    max-width: 340px;
    filter: drop-shadow(0 0 24px rgba(3, 247, 196, 0.3));
    transition: transform 0.4s ease;
}

.item-image-1:hover .about-banner-logo {
    transform: scale(1.04);
}

/* ==========================================================================
   Membership CTA — decorative watermark
   ========================================================================== */
.membership-cta-strip {
    position: relative;
    overflow: hidden;
}

.membership-cta-watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    opacity: 0.06;
    pointer-events: none;
    animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

/* ==========================================================================
   Shop Page — Hero
   ========================================================================== */
.shop-hero {
    position: relative;
    height: clamp(320px, 50vh, 500px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.shop-hero-bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center 30%;
    filter: saturate(0.7) brightness(0.55);
    transition: transform 0.6s ease;
    will-change: transform;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 8, 0.15) 0%,
        rgba(5, 5, 8, 0.7) 70%,
        rgba(5, 5, 8, 1) 100%
    );
}

.shop-hero-watermark {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(160px, 22vw, 280px);
    opacity: 0.07;
    pointer-events: none;
    filter: invert(1);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 6vw, 80px) 50px;
    max-width: 700px;
}

.shop-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 10px;
    opacity: 0.85;
}

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: var(--brand-text-light);
    line-height: 0.95;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.shop-hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brand-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
}

/* ==========================================================================
   Shop Page — Collection Filter Pills
   ========================================================================== */
.shop-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 28px clamp(24px, 6vw, 80px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(5, 5, 8, 0.95);
    position: sticky;
    top: 72px;
    z-index: 90;
    backdrop-filter: blur(12px);
}

.shop-filter-pill {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    background: transparent;
}

.shop-filter-pill:hover {
    border-color: var(--brand-electric-mint);
    color: var(--brand-electric-mint);
}

.shop-filter-pill.is-active {
    background: var(--brand-electric-mint);
    border-color: var(--brand-electric-mint);
    color: var(--brand-bg-dark);
    font-weight: 700;
}

/* ==========================================================================
   Shop Page — Product Loop Wrapper
   ========================================================================== */
.shop-loop-wrapper {
    padding: 40px clamp(24px, 6vw, 80px) 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hide WooCommerce's default breadcrumb wrapper */
.shop-loop-wrapper .woocommerce-breadcrumb {
    display: none;
}

/* Result count + ordering row */
.woocommerce-products-header {
    display: none; /* title handled in hero */
}

.woocommerce-result-count {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--brand-muted);
}

.woocommerce-ordering select {
    background: var(--brand-surface);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 2px;
}

/* Product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--brand-surface);
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.04);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-text-light);
    padding: 14px 16px 4px;
    margin: 0;
}

.woocommerce ul.products li.product .price {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-electric-mint);
    padding: 0 16px 14px;
    display: block;
}

.woocommerce ul.products li.product .button {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
}

/* Sale badge */
.woocommerce span.onsale {
    background: var(--brand-satin-gold);
    color: var(--brand-bg-dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 0;
    min-height: auto;
    min-width: auto;
    padding: 5px 10px;
    line-height: 1.4;
    top: 12px;
    left: 12px;
    right: auto;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: var(--brand-surface);
    color: var(--brand-muted);
    border: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    transition: background 0.2s ease, color 0.2s ease;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--brand-electric-mint);
    color: var(--brand-bg-dark);
    border-color: var(--brand-electric-mint);
}

/* ==========================================================================
   Shop Page — Branded Empty State
   ========================================================================== */
.shop-empty-state {
    text-align: center;
    padding: 56px 40px 80px;
    position: relative;
}

.shop-empty-watermark {
    width: clamp(160px, 30vw, 320px);
    opacity: 0.05;
    display: block;
    margin: 0 auto 40px;
    animation: spin-slow 40s linear infinite;
    pointer-events: none;
}

.shop-empty-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 12px;
    opacity: 0.8;
}

.shop-empty-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.shop-empty-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--brand-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 36px;
}

/* WooCommerce default no-products notice override */
.woocommerce-info {
    background: var(--brand-surface) !important;
    border-top-color: var(--brand-electric-mint) !important;
    color: var(--brand-text-light) !important;
    font-family: var(--font-body) !important;
}

/* ==========================================================================
   My Account — Login / Register Page
   ========================================================================== */
/* page-my-account.php — clear all Astra/theme spacing so .woocommerce grid owns layout */
.woocommerce-account #primary,
.woocommerce-account #main,
.woocommerce-account .entry-content {
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* Hide the page.php "My account" H1 title — WooCommerce has its own headings */
.woocommerce-account .entry-header {
    display: none;
}

.woocommerce-account .woocommerce {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 80px) clamp(16px, 5vw, 80px) clamp(60px, 8vw, 120px);
    box-sizing: border-box;
}

/* Two-column login/register layout — collapses at 640px */
.woocommerce-account:not(.logged-in) .woocommerce {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
    align-items: start;
}

/* Notices wrapper spans both columns and has no card background when empty */
.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
    padding: 0;
    background: transparent;
}

.woocommerce-account:not(.logged-in) .woocommerce > *:not(.woocommerce-notices-wrapper) {
    background: rgba(255,255,255,0.06);
    padding: clamp(28px, 4vw, 56px) clamp(20px, 4vw, 48px);
}

/* Login form */
.woocommerce-form-login .woocommerce-form__label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
    display: block;
    margin-bottom: 6px;
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="password"],
.woocommerce-form-register input[type="email"] {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 0;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    margin-bottom: 18px;
}

.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
    outline: none;
    border-color: var(--brand-electric-mint);
    background: rgba(3, 247, 196, 0.03);
}

.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-muted);
    font-size: 13px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Register form labels — match login label style */
.woocommerce-form-register label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
    display: block;
    margin-bottom: 6px;
}

/* Submit buttons */
.woocommerce-form-login .button,
.woocommerce-form-register .button {
    width: 100%;
    padding: 14px;
    background: var(--brand-electric-mint);
    color: var(--brand-bg-dark);
    border: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.2s ease, letter-spacing 0.2s ease;
}

.woocommerce-form-login .button:hover,
.woocommerce-form-register .button:hover {
    background: var(--brand-satin-gold);
    letter-spacing: 0.26em;
}

/* Lost password link */
.woocommerce-LostPassword a,
.woocommerce-form-login .lost_password a {
    color: var(--brand-electric-mint);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.woocommerce-LostPassword a:hover,
.woocommerce-form-login .lost_password a:hover {
    opacity: 1;
}

/* ==========================================================================
   My Account — Dashboard (logged in)
   ========================================================================== */
.woocommerce-account.logged-in .woocommerce {
    display: grid !important;
    grid-template-columns: clamp(180px, 18vw, 260px) 1fr;
    gap: 3px;
    align-items: start;
}

/* Sidebar nav */
.woocommerce-MyAccount-navigation {
    background: var(--brand-surface);
    padding: 8px 0;
    position: sticky;
    top: calc(var(--header-h, 80px) + 32px);
    align-self: start;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 13px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--brand-electric-mint);
    border-left-color: var(--brand-electric-mint);
    background: rgba(3, 247, 196, 0.04);
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
    color: var(--brand-electric-mint);
    border-left-color: var(--brand-electric-mint);
    font-weight: 700;
    background: rgba(3, 247, 196, 0.06);
}

/* Content area */
.woocommerce-MyAccount-content {
    background: var(--brand-surface);
    padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 44px);
    min-height: 400px;
}

/* Dashboard welcome heading */
.woocommerce-MyAccount-content p:first-child strong {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-electric-mint);
    letter-spacing: -0.01em;
}

.woocommerce-MyAccount-content p {
    color: var(--brand-muted);
    font-size: 14px;
    line-height: 1.7;
}

.woocommerce-MyAccount-content a {
    color: var(--brand-electric-mint);
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-MyAccount-content a:hover {
    color: var(--brand-satin-gold);
}

/* Orders table */
.woocommerce-orders-table,
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
}

.woocommerce-orders-table th,
.woocommerce-MyAccount-content table th {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    font-weight: 700;
}

.woocommerce-orders-table td,
.woocommerce-MyAccount-content table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
}

/* Address forms in account */
.woocommerce-address-fields input,
.woocommerce-address-fields select,
.woocommerce-EditAccountForm input,
.woocommerce-EditAccountForm select,
.woocommerce-EditAccountForm textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.woocommerce-address-fields input:focus,
.woocommerce-EditAccountForm input:focus,
.woocommerce-EditAccountForm textarea:focus {
    outline: none;
    border-color: var(--brand-electric-mint);
}

.woocommerce-address-fields label,
.woocommerce-EditAccountForm label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
    display: block;
    margin-bottom: 6px;
    margin-top: 16px;
}

/* WooCommerce notices in account */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: 0;
    margin-bottom: 20px;
}

.woocommerce-message {
    background: rgba(3, 247, 196, 0.06) !important;
    border-top-color: var(--brand-electric-mint) !important;
    color: var(--brand-text-light) !important;
}

.woocommerce-error {
    background: rgba(255, 80, 80, 0.06) !important;
    border-top-color: #ff5050 !important;
    color: var(--brand-text-light) !important;
}

/* ==========================================================================
   Mobile Collection Overrides (reinforce at bottom)
   ========================================================================== */
@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .collection-card {
        aspect-ratio: 4/3;
    }
    .hero-watermark {
        opacity: 0.04;
        width: 50vw;
        right: -10%;
    }
    .collection-section-header {
        padding: 50px 20px 30px;
    }

    /* Shop mobile */
    .shop-hero { height: clamp(260px, 55vw, 360px); }
    .shop-filter-bar { top: 60px; gap: 6px; }
    .shop-loop-wrapper { padding: 24px 16px 60px; }
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr 1fr !important;
    }

    /* My Account mobile — stack columns */
    .woocommerce-account:not(.logged-in) .woocommerce {
        grid-template-columns: 1fr;
    }
    .woocommerce-account.logged-in .woocommerce {
        grid-template-columns: 1fr;
    }
    .woocommerce-MyAccount-navigation {
        position: static;
    }
    .woocommerce-account .woocommerce {
        padding: 24px 16px 48px;
    }
    .woocommerce-account:not(.logged-in) .woocommerce > *:not(.woocommerce-notices-wrapper) {
        padding: 28px 20px;
    }
}

/* My Account — 480px: breathe a little */
@media (min-width: 481px) and (max-width: 639px) {
    .woocommerce-account .woocommerce {
        padding: 32px 24px 60px;
    }
    .woocommerce-account:not(.logged-in) .woocommerce > *:not(.woocommerce-notices-wrapper) {
        padding: 32px 28px;
    }
}

/* My Account — 640px: side-by-side login/register panels */
@media (min-width: 640px) and (max-width: 899px) {
    .woocommerce-account:not(.logged-in) .woocommerce {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
    }
    .woocommerce-account.logged-in .woocommerce {
        grid-template-columns: 1fr;
    }
    .woocommerce-MyAccount-navigation {
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 0;
    }
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-direction: row;
        white-space: nowrap;
    }
    .woocommerce-MyAccount-navigation ul li a {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 12px 18px;
    }
    .woocommerce-MyAccount-navigation ul li a:hover,
    .woocommerce-MyAccount-navigation ul li.is-active a,
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
        border-left-color: transparent;
        border-bottom-color: var(--brand-electric-mint);
    }
    .woocommerce-account .woocommerce {
        padding: 40px 32px 72px;
    }
}

/* My Account — 900px: sidebar reappears, fluid width */
@media (min-width: 900px) and (max-width: 1199px) {
    .woocommerce-account.logged-in .woocommerce {
        grid-template-columns: clamp(180px, 20vw, 240px) 1fr;
    }
    .woocommerce-MyAccount-navigation {
        position: sticky;
        top: 100px;
        display: block;
    }
    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
    }
    .woocommerce-MyAccount-navigation ul li a {
        border-bottom: none;
        border-left: 2px solid transparent;
        padding: 13px 24px;
    }
    .woocommerce-account .woocommerce {
        padding: 48px 40px 80px;
    }
}

/* My Account — 1200px+: full-width with generous sidebar */
@media (min-width: 1200px) {
    .woocommerce-account.logged-in .woocommerce {
        grid-template-columns: 260px 1fr;
    }
    .woocommerce-account .woocommerce {
        padding: 64px clamp(40px, 6vw, 80px) 100px;
    }
}

/* ==========================================================================
   DESIGN SYSTEM RESET — override legacy pill buttons, round corners
   ========================================================================== */
:root {
    --brand-bg-dark:    #050508;
    --brand-surface:    rgba(255,255,255,0.04);
    --brand-surface-raised: rgba(255,255,255,0.07);
    --brand-border:     rgba(255,255,255,0.08);
    --header-h:         80px;
    --font-heading:     'Exo 2', sans-serif;
    --font-body:        'Space Grotesk', sans-serif;
}

/* Square corners system-wide — no pill shapes */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.shop-filter-pill,
.variation-pill,
.search-pill,
.mobile-nav-cta {
    border-radius: 0 !important;
}

/* Primary filled button */
.button.button-primary,
.button-primary {
    background: var(--brand-electric-mint) !important;
    color: var(--brand-bg-dark) !important;
    border-color: var(--brand-electric-mint) !important;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.16em;
    transition: background 0.2s ease, letter-spacing 0.2s ease, color 0.2s ease;
}
.button.button-primary:hover,
.button-primary:hover {
    background: var(--brand-satin-gold) !important;
    border-color: var(--brand-satin-gold) !important;
    color: var(--brand-bg-dark) !important;
    transform: none;
    box-shadow: none;
    letter-spacing: 0.22em;
}

/* Ghost button */
.button.button-ghost,
.button-ghost {
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.button.button-ghost:hover,
.button-ghost:hover {
    border-color: var(--brand-electric-mint) !important;
    color: var(--brand-electric-mint) !important;
    background: transparent !important;
    transform: none;
    box-shadow: none;
}

/* Focus state — all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--brand-electric-mint);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ambient-bg,
    .ambient-orb,
    .hero-watermark,
    .shop-hero-watermark,
    .about-certified-stamp,
    .membership-bg-watermark,
    .membership-cta-watermark,
    .shop-empty-watermark,
    .hero-watermark {
        animation: none !important;
    }
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Disable heavy animations on commerce pages */
.is-commerce-page .ambient-bg {
    display: none;
}
.is-commerce-page body::before {
    display: none;
}

/* ==========================================================================
   Header — transparent to opaque
   ========================================================================== */
.has-hero-header .site-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none;
}

.has-hero-header .site-header.is-scrolled,
.site-header.is-scrolled {
    background: rgba(5, 5, 8, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* Icon buttons (search, account, cart) */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--brand-text-light);
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: color 0.2s ease;
}
.icon-btn:hover { color: var(--brand-electric-mint); }
.icon-btn svg { display: block; }

/* Active nav item indicator */
.main-navigation .nav-menu > li.current-menu-item > a::after,
.main-navigation .nav-menu > li.current-menu-ancestor > a::after {
    width: 100%;
}
.main-navigation .nav-menu > li.current-menu-item > a,
.main-navigation .nav-menu > li.current-menu-ancestor > a {
    color: var(--brand-electric-mint);
}

/* ==========================================================================
   Mega-menu panel
   ========================================================================== */
.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5,5,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--brand-electric-mint);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 200;
    animation: slideUpFade 0.2s ease;
}
.mega-menu-panel[hidden] { display: none; }

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px clamp(24px, 6vw, 80px);
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.mega-menu-cols {
    display: flex;
    gap: 60px;
    flex: 1;
}

.mega-menu-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 18px;
}

.mega-menu-collections ul,
.mega-menu-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-collections ul li a,
.mega-menu-links ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: var(--brand-text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.mega-menu-collections ul li a:hover,
.mega-menu-links ul li a:hover {
    color: var(--brand-electric-mint);
    border-bottom-color: var(--brand-electric-mint);
}

.mega-col-img {
    width: 40px;
    height: 52px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    display: block;
}

.mega-menu-cta {
    align-self: flex-end;
    margin-left: auto;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    text-decoration: none;
    white-space: nowrap;
    transition: letter-spacing 0.2s ease;
}
.mega-menu-cta:hover { letter-spacing: 0.2em; }

/* ==========================================================================
   Mobile nav — full-screen overlay
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--brand-bg-dark);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav-overlay.is-closing {
    opacity: 0;
    pointer-events: none;
}

body.nav-is-open { overflow: hidden; }

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px clamp(24px, 6vw, 48px);
    overflow-y: auto;
}

.mobile-nav-close {
    display: flex;
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--brand-text-light);
    cursor: pointer;
    padding: 8px;
    margin-bottom: 32px;
}
.mobile-nav-close:hover { color: var(--brand-electric-mint); }

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.mobile-nav-links > li {
    border-bottom: 1px solid var(--brand-border);
}
.mobile-nav-links > li > a {
    display: block;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 800;
    color: var(--brand-text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition: color 0.15s ease;
}
.mobile-nav-links > li > a:hover { color: var(--brand-electric-mint); }

.mobile-sub-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 800;
    color: var(--brand-text-light);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-align: left;
}
.mobile-sub-toggle svg { transition: transform 0.2s ease; }
.mobile-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-sub-menu {
    list-style: none;
    padding: 0 0 16px 0;
    margin: 0;
    display: none;
}
.mobile-sub-menu.is-open { display: block; }
.mobile-sub-menu li a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brand-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.15s ease;
}
.mobile-sub-menu li a:hover { color: var(--brand-electric-mint); }

.mobile-nav-footer {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-nav-account-link {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-muted);
    text-decoration: none;
    text-align: center;
}
.mobile-nav-cta {
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

/* ==========================================================================
   Search overlay
   ========================================================================== */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(5,5,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.search-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.search-overlay.is-closing {
    opacity: 0;
    pointer-events: none;
}
body.search-is-open { overflow: hidden; }

.search-overlay-inner {
    width: 100%;
    max-width: 680px;
}

.search-overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--brand-muted);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
}
.search-overlay-close:hover { color: var(--brand-electric-mint); }

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    padding-bottom: 16px;
    margin-bottom: 32px;
    transition: border-color 0.2s ease;
}
.search-input-wrap:focus-within {
    border-bottom-color: var(--brand-electric-mint);
}
.search-input-wrap svg { color: var(--brand-muted); flex-shrink: 0; }

.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: var(--brand-text-light);
    letter-spacing: -0.01em;
}
.search-overlay-input::placeholder { color: rgba(255,255,255,0.2); }

.search-result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-result-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--brand-surface);
    text-decoration: none;
    transition: background 0.15s ease;
}
.search-result-link:hover { background: var(--brand-surface-raised); }

.search-result-img {
    width: 48px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}
.search-result-info { display: flex; flex-direction: column; gap: 4px; }
.search-result-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-text-light);
    text-transform: uppercase;
}
.search-result-price {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-electric-mint);
}

.search-loading,
.search-no-results {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-muted);
    padding: 16px 0;
    letter-spacing: 0.06em;
}

.search-overlay-hint {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-muted);
    margin-bottom: 14px;
}

.search-collection-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.search-pill {
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-muted);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.search-pill:hover {
    border-color: var(--brand-electric-mint);
    color: var(--brand-electric-mint);
}

/* ==========================================================================
   Mini-cart drawer
   ========================================================================== */
.mini-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 700;
    pointer-events: none;
}
.mini-cart-drawer.is-open { pointer-events: all; }
body.cart-is-open { overflow: hidden; }

.mini-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.28s ease;
}
.mini-cart-drawer.is-open .mini-cart-backdrop { opacity: 1; }

.mini-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(400px, 100vw);
    background: #0c0c14;
    border-left: 1px solid var(--brand-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.mini-cart-drawer.is-open .mini-cart-panel { transform: translateX(0); }
.mini-cart-drawer.is-closing .mini-cart-panel { transform: translateX(100%); }

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--brand-border);
    flex-shrink: 0;
}
.mini-cart-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}
.mini-cart-close {
    background: none;
    border: none;
    color: var(--brand-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}
.mini-cart-close:hover { color: var(--brand-electric-mint); }

#mini-cart-inner {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.mini-cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-cart-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.mini-cart-img {
    flex-shrink: 0;
    width: 64px;
}
.mini-cart-img img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    display: block;
}
.mini-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mini-cart-item-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-text-light);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
}
.mini-cart-item-name:hover { color: var(--brand-electric-mint); }
.mini-cart-item-price {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-electric-mint);
}
.mini-cart-item-qty {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--brand-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.mini-cart-remove {
    color: var(--brand-muted);
    flex-shrink: 0;
    padding: 4px;
    transition: color 0.2s ease;
}
.mini-cart-remove:hover { color: #ff5050; }

.mini-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--brand-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--brand-border);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.mini-cart-subtotal span:last-child { color: var(--brand-text-light); font-weight: 700; }

.mini-cart-view-btn,
.mini-cart-checkout-btn {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    width: 100%;
}
.mini-cart-view-btn {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: var(--brand-text-light) !important;
}
.mini-cart-view-btn:hover {
    border-color: var(--brand-electric-mint) !important;
    color: var(--brand-electric-mint) !important;
}
.mini-cart-checkout-btn {
    background: var(--brand-electric-mint) !important;
    color: var(--brand-bg-dark) !important;
    border-color: var(--brand-electric-mint) !important;
}
.mini-cart-checkout-btn:hover {
    background: var(--brand-satin-gold) !important;
    border-color: var(--brand-satin-gold) !important;
    letter-spacing: 0.22em;
}

.mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 280px;
    text-align: center;
}
.mini-cart-empty svg { color: var(--brand-muted); opacity: 0.4; }
.mini-cart-empty p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-muted);
    letter-spacing: 0.06em;
}
.mini-cart-empty .button {
    font-size: 11px;
    padding: 10px 24px;
    letter-spacing: 0.16em;
}

/* ==========================================================================
   WooCommerce Single Product Page
   ========================================================================== */
.product-single-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 80px) 100px;
}

.product-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 60px;
    align-items: start;
    padding-top: 40px;
}

/* Gallery column */
.product-gallery-col {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.product-gallery-col .woocommerce-product-gallery {
    margin: 0;
}
.product-gallery-col .woocommerce-product-gallery__wrapper {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.product-gallery-col .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-gallery-col .flex-viewport {
    aspect-ratio: 3/4;
}

/* Info column */
.product-info-col {
    padding-top: 8px;
}

.product-breadcrumb {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
    margin-bottom: 20px;
}
.product-breadcrumb a {
    color: var(--brand-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.product-breadcrumb a:hover { color: var(--brand-electric-mint); }
.product-breadcrumb span { margin: 0 8px; opacity: 0.4; }

.product-collection-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    border: 1px solid var(--brand-electric-mint);
    padding: 4px 12px;
    margin-bottom: 18px;
}

.product_title.entry-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 800 !important;
    color: var(--brand-text-light) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
}

.price {
    font-family: var(--font-body) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--brand-electric-mint) !important;
    margin-bottom: 20px !important;
    display: block;
}
.price del { opacity: 0.4; color: var(--brand-muted) !important; }

.woocommerce-product-details__short-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brand-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Variation select → pills */
.variations {
    margin-bottom: 24px;
    border: none;
}
.variations td, .variations th {
    border: none;
    padding: 0 0 10px 0;
    background: transparent;
    vertical-align: top;
}
.variations label {
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--brand-muted) !important;
    display: block;
    margin-bottom: 10px !important;
}
select.sr-only-select {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
.variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.variation-pill {
    padding: 9px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.variation-pill:hover {
    border-color: rgba(255,255,255,0.4);
}
.variation-pill.is-selected {
    background: var(--brand-electric-mint);
    border-color: var(--brand-electric-mint);
    color: var(--brand-bg-dark);
    font-weight: 700;
}

/* Reset variation link */
.reset_variations {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--brand-muted) !important;
    text-decoration: none !important;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    display: inline-block;
    margin-top: 8px;
}
.reset_variations:hover { opacity: 1; }

/* ATC zone */
.product-add-to-cart-zone {
    margin-bottom: 28px;
}
.product-add-to-cart-zone .qty {
    display: none; /* hidden by default, shown on focus */
}
.product-add-to-cart-zone .single_add_to_cart_button {
    display: block !important;
    width: 100% !important;
    padding: 18px !important;
    background: var(--brand-electric-mint) !important;
    color: var(--brand-bg-dark) !important;
    border: none !important;
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: background 0.2s ease, letter-spacing 0.2s ease !important;
    border-radius: 0 !important;
}
.product-add-to-cart-zone .single_add_to_cart_button:hover {
    background: var(--brand-satin-gold) !important;
    letter-spacing: 0.26em !important;
}

/* Reassurance strip */
.product-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    margin-bottom: 28px;
}
.reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-muted);
}
.reassurance-item svg { color: var(--brand-electric-mint); flex-shrink: 0; }

/* Product accordion */
.product-accordion {
    border-top: 1px solid var(--brand-border);
    margin-top: 4px;
}
.product-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--brand-border);
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    cursor: pointer;
    text-align: left;
    transition: color 0.15s ease;
}
.product-accordion-trigger:hover { color: var(--brand-electric-mint); }
.product-accordion-trigger svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.product-accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.product-accordion-trigger[aria-expanded="true"] { color: var(--brand-electric-mint); }

.product-accordion-panel {
    display: none;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.75;
    border-bottom: 1px solid var(--brand-border);
}
.product-accordion-panel.is-open { display: block; }

/* Membership upsell on product page */
.product-member-upsell {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(3,247,196,0.05);
    border: 1px solid rgba(3,247,196,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
}
.product-member-upsell a {
    color: var(--brand-electric-mint);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}
.product-member-upsell svg { color: var(--brand-electric-mint); flex-shrink: 0; }

/* Sticky ATC bar */
#sticky-atc-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: rgba(5,5,8,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--brand-border);
    padding: 12px clamp(16px, 5vw, 40px);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.25s ease;
}
#sticky-atc-bar.is-visible { transform: translateY(0); }

.sticky-atc-name {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-text-light);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-atc-price {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brand-electric-mint);
    font-weight: 700;
    flex-shrink: 0;
}
.sticky-atc-btn {
    flex-shrink: 0;
    padding: 12px 28px;
    background: var(--brand-electric-mint) !important;
    color: var(--brand-bg-dark) !important;
    border-color: var(--brand-electric-mint) !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    font-weight: 800 !important;
}

/* Related products strip */
.product-related-strip {
    border-top: 1px solid var(--brand-border);
    padding: 60px 0 0;
    margin-top: 60px;
}
.product-related-strip .section-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

/* ==========================================================================
   Footer — 3-column
   ========================================================================== */
.site-footer {
    background: #050508;
    position: relative;
    padding-top: 80px;
    border-top: 1px solid var(--brand-border);
}

.footer-texture {
    position: absolute;
    inset: 0;
    background-image: url('images/HERO_HOME_PAGE_CEBASTIANCO.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 300px 1fr 280px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 80px) 60px;
}

/* Brand col */
.footer-logo-link { display: inline-block; margin-bottom: 20px; }
.footer-logo-img {
    height: 34px;
    filter: drop-shadow(0 0 12px rgba(249,177,44,0.3));
    display: block;
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-satin-gold);
    letter-spacing: 0.1em;
}
.footer-tagline {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 12px;
}
.footer-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 240px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--brand-border);
    color: var(--brand-muted);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover {
    border-color: var(--brand-electric-mint);
    color: var(--brand-electric-mint);
    text-shadow: none;
}

/* Links col */
.footer-links-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.footer-col-heading {
    font-family: var(--font-body) !important;
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: var(--brand-electric-mint) !important;
    margin-bottom: 18px !important;
    font-weight: 700 !important;
}
.footer-link-group ul,
.footer-newsletter-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-link-group ul li a,
.footer-newsletter-col ul li a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.15s ease;
}
.footer-link-group ul li a:hover,
.footer-newsletter-col ul li a:hover {
    color: var(--brand-text-light);
    text-shadow: none;
}

/* Newsletter col */
.footer-newsletter-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-subscribe-row {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
}
.footer-subscribe-row input[type="email"] {
    flex: 1;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: 0 !important;
    transition: border-color 0.2s ease;
}
.footer-subscribe-row input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-electric-mint);
}
.footer-subscribe-row .button {
    padding: 13px 20px;
    background: var(--brand-electric-mint) !important;
    color: var(--brand-bg-dark) !important;
    border-color: var(--brand-electric-mint) !important;
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
    font-weight: 800 !important;
    white-space: nowrap;
    border-left: none !important;
}
.footer-subscribe-row .button:hover {
    background: var(--brand-satin-gold) !important;
    border-color: var(--brand-satin-gold) !important;
    transform: none;
    box-shadow: none;
}
.footer-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--brand-muted);
    letter-spacing: 0.06em;
}
.footer-trust-note svg { color: var(--brand-electric-mint); flex-shrink: 0; }

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px clamp(24px, 6vw, 80px);
    border-top: 1px solid var(--brand-border);
}
.footer-copy {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--brand-muted);
    letter-spacing: 0.06em;
    margin: 0;
}
.footer-legal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-legal-nav a {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--brand-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.15s ease;
}
.footer-legal-nav a:hover { color: var(--brand-text-light); }
.footer-legal-nav span { color: var(--brand-border); }

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-404-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px clamp(24px, 6vw, 80px);
    position: relative;
}
.error-404-watermark {
    position: absolute;
    width: clamp(200px, 40vw, 500px);
    opacity: 0.04;
    pointer-events: none;
    animation: slow-spin 60s linear infinite;
}
.error-404-code {
    font-family: var(--font-heading);
    font-size: clamp(80px, 20vw, 200px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    margin-bottom: 0;
    position: relative;
}
.error-404-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
}
.error-404-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--brand-muted);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 36px;
    position: relative;
}
.error-404-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

/* ==========================================================================
   Search Results Page
   ========================================================================== */
.search-results-hero {
    padding: 80px clamp(24px, 6vw, 80px) 40px;
    border-bottom: 1px solid var(--brand-border);
}
.search-results-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 10px;
}
.search-results-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.02em;
    margin: 0;
}
.search-results-query { color: var(--brand-electric-mint); }

/* ==========================================================================
   Floating label inputs (contact page)
   ========================================================================== */
.float-label-wrap {
    position: relative;
    margin-bottom: 24px;
}
.float-label-wrap label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    letter-spacing: 0.06em;
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, letter-spacing 0.2s ease;
    z-index: 1;
}
.float-label-wrap input,
.float-label-wrap textarea {
    width: 100%;
    padding: 22px 16px 10px;
    background: rgba(255,255,255,0.03);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    resize: none;
}
.float-label-wrap input:focus,
.float-label-wrap textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-electric-mint);
}
.float-label-wrap input:focus ~ label,
.float-label-wrap textarea:focus ~ label,
.float-label-wrap.has-value label {
    top: 6px;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--brand-electric-mint);
    text-transform: uppercase;
}

/* Button loading state */
.button.is-loading {
    opacity: 0.7;
    cursor: wait;
}

/* ==========================================================================
   Membership — tiered visual hierarchy
   ========================================================================== */
.pricing-card {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.pricing-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

/* Initiate: de-emphasised */
.pricing-card:not(.premium) {
    opacity: 0.85;
}
.pricing-card:not(.premium):hover {
    opacity: 1;
}

/* Adept: featured */
.pricing-card.premium:not(.ascendant) {
    border-color: rgba(255,255,255,0.2);
}
.pricing-card.premium:not(.ascendant)::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Reset inherited 200%/200% from base .pricing-card::before */
    width: auto;
    height: auto;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-bg-dark);
    background: var(--brand-electric-mint);
    padding: 5px 20px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
}

/* Ascendant: dominant */
.pricing-card.ascendant {
    background: linear-gradient(135deg, rgba(249,177,44,0.08) 0%, rgba(5,5,8,0) 60%);
    border-color: rgba(249,177,44,0.35);
    padding-top: 48px;
}
.pricing-card.ascendant:hover {
    border-color: var(--brand-satin-gold);
}
.pricing-card.ascendant .tier-name {
    color: var(--brand-satin-gold) !important;
}
.pricing-card.ascendant .price-tag {
    color: var(--brand-satin-gold) !important;
}
.pricing-card.ascendant .features-list li::before {
    color: var(--brand-satin-gold);
}
.pricing-card.ascendant .button {
    background: var(--brand-satin-gold) !important;
    color: var(--brand-bg-dark) !important;
    border-color: var(--brand-satin-gold) !important;
}
.pricing-card.ascendant .button:hover {
    background: var(--brand-electric-mint) !important;
    border-color: var(--brand-electric-mint) !important;
    letter-spacing: 0.22em;
}

.tier-name {
    font-family: var(--font-heading) !important;
    font-size: clamp(22px, 3vw, 30px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 16px !important;
}
.price-tag {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1;
}
.price-duration {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--brand-muted);
    letter-spacing: 0;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    padding: 20px 0;
    margin-bottom: 24px;
}
.features-list li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    letter-spacing: 0.04em;
    padding-left: 16px;
    position: relative;
}
.features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-electric-mint);
    font-size: 12px;
}

/* Social proof line */
.membership-social-proof {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
    letter-spacing: 0.08em;
    padding: 24px 0 40px;
}
.membership-social-proof strong {
    color: var(--brand-electric-mint);
    font-weight: 700;
}

/* FAQ accordion */
.membership-faq {
    max-width: 680px;
    margin: 60px auto 0;
    padding: 0 clamp(24px, 6vw, 80px);
}
.faq-section-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 32px;
}
.faq-item {
    border-bottom: 1px solid var(--brand-border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--brand-text-light);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.15s ease;
}
.faq-question:hover { color: var(--brand-electric-mint); }
.faq-question svg { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.is-open .faq-question { color: var(--brand-electric-mint); }
.faq-item.is-open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 0 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.75;
}
.faq-item.is-open .faq-answer { display: block; }

/* ==========================================================================
   My Account — member portal dashboard
   ========================================================================== */
.member-greeting-bar {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    padding: 28px 32px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.member-greeting-name {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0;
}
.member-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.member-tier-badge.tier-initiate {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--brand-muted);
}
.member-tier-badge.tier-adept {
    border: 1px solid var(--brand-electric-mint);
    color: var(--brand-electric-mint);
}
.member-tier-badge.tier-ascendant {
    border: 1px solid var(--brand-satin-gold);
    color: var(--brand-satin-gold);
    background: rgba(249,177,44,0.06);
}

.member-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 3px;
}
.member-access-item {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.member-access-item svg { flex-shrink: 0; }
.member-access-item.is-active svg { color: var(--brand-electric-mint); }
.member-access-item.is-locked svg { color: rgba(255,255,255,0.15); }
.member-access-label {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.member-access-item.is-active .member-access-label { color: var(--brand-text-light); }
.member-access-item.is-locked .member-access-label { color: rgba(255,255,255,0.2); }

.member-upgrade-banner {
    background: rgba(3,247,196,0.04);
    border: 1px solid rgba(3,247,196,0.18);
    padding: 16px 24px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.member-upgrade-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
}
.member-upgrade-text strong { color: var(--brand-electric-mint); }
.member-upgrade-link {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
    border: 1px solid var(--brand-electric-mint);
    padding: 8px 16px;
    transition: background 0.2s ease, color 0.2s ease;
}
.member-upgrade-link:hover {
    background: var(--brand-electric-mint);
    color: var(--brand-bg-dark);
}

/* ==========================================================================
   Thank-you / Order Confirmation
   ========================================================================== */
.thankyou-hero {
    text-align: center;
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px) clamp(40px, 6vw, 80px);
    position: relative;
}
.thankyou-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 1px solid var(--brand-electric-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-electric-mint);
}
.thankyou-order-num {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 12px;
}
.thankyou-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-text-light);
    margin-bottom: 16px;
}
.thankyou-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--brand-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.thankyou-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 800px;
    margin: 60px auto;
    padding: 0 clamp(24px, 6vw, 80px);
}
.thankyou-step {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    padding: 28px 20px;
    text-align: center;
}
.thankyou-step-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-electric-mint);
    margin-bottom: 12px;
    display: block;
}
.thankyou-step-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-muted);
}

.woocommerce-order-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 80px) 60px;
}
.woocommerce-order-details__title,
.woocommerce-customer-details .woocommerce-column__title {
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: var(--brand-text-light) !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid var(--brand-border) !important;
}

/* ==========================================================================
   About page — editorial tile + process section
   ========================================================================== */
.item-editorial {
    grid-column: span 2;
    aspect-ratio: 21/9;
    position: relative;
    overflow: hidden;
}
.about-editorial-img {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.6) brightness(0.55);
    transition: transform 0.6s ease;
}
.item-editorial:hover .about-editorial-img { transform: scale(1.03); }
.about-editorial-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(5,5,8,0.8) 0%, transparent 60%);
}
.about-editorial-quote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.01em;
    font-style: italic;
    margin: 0;
}
@media (max-width: 768px) {
    .item-editorial { grid-column: span 1; aspect-ratio: 4/3; }
}

/* About process section */
.about-process {
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
}
.about-process-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 12px;
}
.about-process-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-text-light) !important;
    margin-bottom: 48px;
}
.about-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.about-process-step {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    padding: 32px 28px;
}
.process-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--brand-electric-mint);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1;
}
.process-label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-text-light) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.process-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .about-process-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact page — response time + socials
   ========================================================================== */
.contact-response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--brand-muted);
    margin-top: 24px;
}
.contact-response-time svg { color: var(--brand-electric-mint); flex-shrink: 0; }

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--brand-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}
.contact-social-link:hover { color: var(--brand-electric-mint); text-shadow: none; }

/* ==========================================================================
   Cultural Moment section (homepage)
   ========================================================================== */
.cultural-moment {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: clamp(400px, 60vh, 640px);
}
.cultural-moment-img {
    background-size: cover;
    background-position: center 30%;
    filter: saturate(0.7) brightness(0.6);
}
.cultural-moment-text {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-left: none;
    padding: clamp(40px, 8vw, 80px) clamp(32px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.cultural-moment-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    opacity: 0.8;
}
.cultural-moment-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: var(--brand-text-light);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}
.cultural-moment-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--brand-muted);
    line-height: 1.75;
    max-width: 380px;
}
@media (max-width: 768px) {
    .cultural-moment { grid-template-columns: 1fr; }
    .cultural-moment-img { min-height: 280px; }
    .cultural-moment-text { border-left: 1px solid var(--brand-border); border-top: none; }
}

/* ==========================================================================
   Responsive — mobile footer + product + account
   ========================================================================== */
@media (max-width: 960px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
    .footer-links-col {
        grid-template-columns: 1fr 1fr;
    }
    .footer-newsletter-col {
        grid-column: span 2;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-gallery-col {
        position: static;
    }

    .thankyou-steps {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .member-access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-brand-col,
    .footer-newsletter-col {
        grid-column: span 1;
    }
    .footer-links-col {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-subscribe-row {
        flex-direction: column;
    }
    .footer-subscribe-row input[type="email"] {
        border-right: 1px solid rgba(255,255,255,0.12);
        border-bottom: none;
    }
    .footer-subscribe-row .button {
        border-left: 1px solid var(--brand-electric-mint) !important;
    }

    .product-reassurance {
        flex-direction: column;
        gap: 12px;
    }

    #sticky-atc-bar .sticky-atc-name { display: none; }

    .member-greeting-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .error-404-ctas {
        flex-direction: column;
        align-items: center;
    }

    .mega-menu-panel { display: none !important; }
}

/* ==========================================================================
   REVISION v1.4 — Shop, Product Card, Cart, Corrections
   ========================================================================== */

/* ── Scoped border-radius: 0 — no !important, no plugin scope breakage ── */
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
.product-card,
.product-card-image-wrap,
.product-card-image-wrap img,
.collection-card,
.pricing-card,
.mini-cart-panel,
.shop-filter-pill,
.product-card-quick-add {
    border-radius: 0;
}

/* ── Variation prompt shake — fires when sticky ATC clicked without selection ── */
@keyframes needs-selection-shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
.variations_form.needs-selection {
    animation: needs-selection-shake 400ms ease;
    outline: 1px solid var(--brand-electric-mint);
    outline-offset: 8px;
}

/* ── Variation pills — unavailable state ── */
.variation-pill.is-unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}
.variation-pill:disabled {
    cursor: not-allowed;
}

/* ── sr-only-select — clip, NOT display:none, preserves accessibility tree ── */
.sr-only-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ── Checkout trust strip ── */
.checkout-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 0 8px;
    border-top: 1px solid var(--brand-border, rgba(255,255,255,0.08));
    margin-bottom: 16px;
}
.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-muted);
}
.checkout-trust-item svg { flex-shrink: 0; }

/* ── Shop controls row (result count + sort) ── */
.shop-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(16px, 4vw, 48px);
    border-bottom: 1px solid var(--brand-border, rgba(255,255,255,0.08));
    max-width: 1400px;
    margin: 0 auto;
}
.shop-controls-row .woocommerce-result-count {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-muted);
    margin: 0;
}
.shop-controls-row .woocommerce-ordering {
    margin: 0;
}
.shop-controls-row .woocommerce-ordering select {
    background: var(--brand-surface-raised, #1a1a22);
    border: 1px solid var(--brand-border, rgba(255,255,255,0.12));
    color: var(--brand-text-light);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 12px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23E8E8E8' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

/* ── Shop empty state ── */
.shop-empty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ── Product card ── */
.product-card {
    position: relative;
    list-style: none;
    background: transparent;
}
.product-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--brand-surface-raised, #1a1a22);
}
.product-card-image-wrap img,
.product-card-img-link img,
.product-card-image-wrap .wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.product-card:hover .product-card-image-wrap img,
.product-card:hover .product-card-image-wrap .wp-post-image {
    transform: scale(1.04);
}
.product-card.is-sold-out .product-card-image-wrap img,
.product-card.is-sold-out .product-card-image-wrap .wp-post-image {
    filter: grayscale(40%);
    opacity: 0.65;
}

/* Product card badges */
.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    z-index: 2;
}
.sold-out-badge {
    background: rgba(10, 10, 17, 0.85);
    color: var(--brand-muted);
    border: 1px solid var(--brand-border, rgba(255,255,255,0.12));
}
.sale-badge {
    background: var(--brand-satin-gold);
    color: #0A0A11;
}

/* Collection tag on card */
.product-card-cat-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-muted);
    background: rgba(10, 10, 17, 0.75);
    padding: 3px 7px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Quick-add button — always visible on mobile, hover on desktop */
.product-card-quick-add {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-deep-black);
    border: 1px solid var(--brand-border, rgba(255,255,255,0.15));
    color: var(--brand-text-light);
    cursor: pointer;
    z-index: 3;
    transition: background 200ms ease, border-color 200ms ease;
    /* Desktop: hidden until hover */
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
    text-decoration: none;
}
.product-card:hover .product-card-quick-add,
.product-card:focus-within .product-card-quick-add {
    opacity: 1;
    transform: translateY(0);
}
.product-card-quick-add:hover {
    background: var(--brand-electric-mint);
    border-color: var(--brand-electric-mint);
    color: var(--brand-deep-black);
}
/* Mobile: always visible */
@media (max-width: 768px) {
    .product-card-quick-add {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product card body */
.product-card-body {
    padding: 12px 0;
}
.product-card-body .woocommerce-loop-product__title {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    line-height: 1.3;
    margin: 0 0 6px;
    /* 2-line clamp */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-card-body .woocommerce-loop-product__title a {
    color: inherit;
    text-decoration: none;
}
.product-card-body .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-text-light);
    display: block;
    margin-bottom: 4px;
}
.product-card-body .price ins { text-decoration: none; color: var(--brand-electric-mint); }
.product-card-body .price del { opacity: 0.45; font-size: 13px; margin-left: 4px; }
.product-card-brief {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin: 4px 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-card-view-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #07816B;
    text-decoration: none;
    font-weight: 600;
}
.product-card-view-link:hover { color: var(--brand-electric-mint); }
.product-card-body .star-rating {
    font-size: 11px;
    margin-bottom: 4px;
}

/* WooCommerce product loop grid — target the <ul> WC outputs */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: clamp(16px, 4vw, 48px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 960px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }
}

/* ── Cart ── */
.cart-shipping-progress {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 40px) 8px;
}
.cart-shipping-bar {
    height: 3px;
    background: var(--brand-border, rgba(255,255,255,0.1));
    overflow: hidden;
    margin-bottom: 10px;
}
.cart-shipping-fill {
    height: 100%;
    background: var(--brand-electric-mint);
    transition: width 600ms ease;
}
.cart-shipping-msg {
    font-size: 13px;
    color: var(--brand-muted);
    margin: 0;
}
.cart-shipping-msg a {
    color: var(--brand-electric-mint);
    text-decoration: none;
    margin-left: 4px;
}
.cart-shipping-msg.is-unlocked {
    color: var(--brand-electric-mint);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile: Checkout button above cart table */
.cart-checkout-above {
    display: none;
    padding: 0 clamp(16px, 4vw, 40px) 16px;
    max-width: 900px;
    margin: 0 auto;
}
.cart-checkout-btn-top {
    width: 100%;
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 640px) {
    .cart-checkout-above { display: block; }
}

/* Cart table mobile stacked layout */
@media (max-width: 640px) {
    .woocommerce-cart-form .shop_table thead { display: none; }
    .woocommerce-cart-form .shop_table tr {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "thumb  name"
            "thumb  price"
            "thumb  qty"
            "remove subtotal";
        gap: 4px 12px;
        padding: 16px 0;
        border-bottom: 1px solid var(--brand-border, rgba(255,255,255,0.08));
    }
    .woocommerce-cart-form td { padding: 0; border: 0; }
    .woocommerce-cart-form td.product-thumbnail { grid-area: thumb; }
    .woocommerce-cart-form td.product-name     { grid-area: name; align-self: end; }
    .woocommerce-cart-form td.product-price    { grid-area: price; }
    .woocommerce-cart-form td.product-quantity { grid-area: qty; }
    .woocommerce-cart-form td.product-remove   { grid-area: remove; }
    .woocommerce-cart-form td.product-subtotal { grid-area: subtotal; text-align: right; }
    .woocommerce-cart-form td.product-thumbnail img { width: 80px; height: 100px; object-fit: cover; }
}

/* Cross-sells with brand heading */
.cart-cross-sells { padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px); }
.cart-cross-sells-heading {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin-bottom: 32px;
}

/* ── Sticky ATC bar — safe-area for iPhone notch ── */
#sticky-atc-bar {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
}
#sticky-atc-btn {
    cursor: pointer;
}

/* ── Mega-menu keyboard focus state ── */
#mega-menu-panel a:focus-visible {
    outline: 2px solid var(--brand-electric-mint);
    outline-offset: 3px;
}

/* ── Shop filter pills — horizontal scroll on mobile ── */
.shop-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px clamp(16px, 4vw, 48px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1400px;
    margin: 0 auto;
}
.shop-filter-bar::-webkit-scrollbar { display: none; }
.shop-filter-pill {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border: 1px solid var(--brand-border, rgba(255,255,255,0.15));
    color: var(--brand-muted);
    text-decoration: none;
    transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
    white-space: nowrap;
    min-height: 36px;
    display: flex;
    align-items: center;
}
.shop-filter-pill:hover {
    border-color: var(--brand-text-light);
    color: var(--brand-text-light);
}
.shop-filter-pill.is-active {
    background: var(--brand-electric-mint);
    border-color: var(--brand-electric-mint);
    color: var(--brand-deep-black);
}

/* ── Prefers-reduced-motion — comprehensive ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Mobile nav overlay: use dvh for keyboard-safe height ── */
#mobile-nav-overlay {
    height: 100dvh;
}
/* Fallback for browsers without dvh */
@supports not (height: 100dvh) {
    #mobile-nav-overlay { height: 100vh; }
}

/* ── All fixed bottom elements: safe area ── */
#sticky-atc-bar,
.mobile-cart-fab {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* ── About: Collection Lineage (replaces process section) ── */
.about-lineage {
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
    max-width: 900px;
    margin: 0 auto;
}
.about-lineage-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 40px;
}
.about-lineage-entries {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lineage-entry {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--brand-border, rgba(255,255,255,0.08));
    align-items: start;
}
.lineage-entry:first-child { border-top: 1px solid var(--brand-border, rgba(255,255,255,0.08)); }
.lineage-year {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--brand-muted);
    padding-top: 3px;
}
.lineage-name {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin: 0 0 8px;
}
.lineage-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--brand-muted);
    margin: 0;
}
.lineage-desc a {
    color: var(--brand-electric-mint);
    text-decoration: none;
}
.lineage-entry--next .lineage-year,
.lineage-entry--next .lineage-name {
    color: var(--brand-satin-gold);
}
.lineage-entry--next .lineage-name { letter-spacing: 0.12em; }

@media (max-width: 640px) {
    .lineage-entry { grid-template-columns: 60px 1fr; gap: 0 16px; }
}

/* ── About: EST. stat (static, no counter) ── */
.item-stat-1 .stat-num {
    font-size: clamp(12px, 2vw, 16px);
    letter-spacing: 0.15em;
}

/* ── Cart safe-area duplicate fix (consolidate) ── */
#sticky-atc-bar { padding-bottom: max(16px, env(safe-area-inset-bottom)); }

/* ── 404 page: search + collection pills ── */
.error-404-search {
    width: 100%;
    max-width: 480px;
    margin: 32px auto 24px;
}
.error-404-search-wrap {
    display: flex;
    gap: 0;
    border: 1px solid var(--brand-border, rgba(255,255,255,0.15));
}
.error-404-search-wrap input[type="search"] {
    flex: 1;
    background: var(--brand-surface-raised, #1a1a22);
    border: 0;
    color: var(--brand-text-light);
    font-size: 15px;
    padding: 14px 16px;
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    min-height: 52px;
    outline: none;
}
.error-404-search-wrap input[type="search"]::placeholder { color: var(--brand-muted); }
.error-404-search-wrap input[type="search"]:focus { background: #222230; }
.error-404-search-btn {
    background: var(--brand-electric-mint);
    border: 0;
    color: var(--brand-deep-black);
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    min-height: 52px;
    min-width: 52px;
    justify-content: center;
}
.error-404-search-btn:hover { background: var(--brand-satin-gold); }

.error-404-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}
.error-404-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid var(--brand-border, rgba(255,255,255,0.15));
    color: var(--brand-muted);
    text-decoration: none;
    transition: border-color 200ms ease, color 200ms ease;
    min-height: 36px;
    display: flex;
    align-items: center;
}
.error-404-pill:hover {
    border-color: var(--brand-electric-mint);
    color: var(--brand-electric-mint);
}

/* ==========================================================================
   Memberships Page — v1.4 Full Rebuild
   ========================================================================== */

/* ── Hero ── */
.membership-hero {
    position: relative;
    min-height: clamp(480px, 60vh, 700px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.membership-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-deep-black);
    background-image: linear-gradient(135deg, #0a0a11 0%, #141a1f 50%, #0a0a11 100%);
}
.membership-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(3,247,196,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.membership-hero-watermark {
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    opacity: 0.06;
    animation: spin 40s linear infinite;
    pointer-events: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.membership-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px) clamp(60px, 8vw, 100px);
    max-width: 700px;
}
.membership-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 20px;
}
.membership-hero-title {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin: 0 0 24px;
}
.membership-hero-sub {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.7;
    color: var(--brand-muted);
    margin-bottom: 36px;
}
.membership-hero-cta { min-width: 220px; }

/* ── What You Unlock ── */
.membership-unlocks {
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
    background: var(--brand-slate-night, #141a1f);
    border-top: 1px solid var(--brand-border, rgba(255,255,255,0.06));
    border-bottom: 1px solid var(--brand-border, rgba(255,255,255,0.06));
}
.membership-unlocks-inner { max-width: 1100px; margin: 0 auto; }
.membership-unlocks-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 40px;
}
.membership-unlocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.membership-unlock-item { display: flex; flex-direction: column; gap: 12px; }
.unlock-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--brand-border, rgba(255,255,255,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-electric-mint);
}
.membership-unlock-item h3 {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin: 0;
}
.membership-unlock-item p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--brand-muted);
    margin: 0;
}

/* ── Pricing cards — tier tag and tier desc ── */
.tier-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 12px;
}
.tier-tag--mint {
    background: var(--brand-electric-mint);
    color: var(--brand-deep-black);
}
.tier-tag--gold {
    background: var(--brand-satin-gold);
    color: var(--brand-deep-black);
}
.tier-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--brand-muted);
    margin: 0 0 20px;
    min-height: 48px;
}
.tier-trust {
    font-size: 11px;
    color: var(--brand-muted);
    text-align: center;
    margin: 10px 0 0;
    letter-spacing: 0.03em;
    opacity: 0.7;
}

/* Adept card — button-primary is already styled, just ensure contrast */
.pricing-card.premium .button.button-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 13px;
}
.pricing-card .button {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 13px;
    margin-top: 4px;
}

/* ── Comparison table ── */
.membership-comparison {
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
    background: var(--brand-slate-night, #141a1f);
    border-top: 1px solid var(--brand-border, rgba(255,255,255,0.06));
}
.membership-comparison-inner { max-width: 900px; margin: 0 auto; }
.membership-comparison-title {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin-bottom: 36px;
}
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.comparison-table thead th {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    padding: 14px 16px;
    text-align: center;
    border-bottom: 2px solid var(--brand-border, rgba(255,255,255,0.12));
    line-height: 1.4;
}
.comparison-table thead .comparison-feature-col { text-align: left; }
.comp-price {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--brand-muted);
    margin-top: 2px;
    text-transform: none;
}
.comp-col-adept th   { color: var(--brand-electric-mint); }
.comp-col-ascendant th { color: var(--brand-satin-gold); }

.comparison-table thead th.comp-col-adept   { color: var(--brand-electric-mint); }
.comparison-table thead th.comp-col-ascendant { color: var(--brand-satin-gold); }

.comparison-table tbody tr {
    border-bottom: 1px solid var(--brand-border, rgba(255,255,255,0.06));
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-feature-label {
    padding: 12px 16px 12px 0;
    color: var(--brand-muted);
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.comp-cell {
    padding: 12px 16px;
    text-align: center;
    vertical-align: middle;
}
.comp-yes { color: var(--brand-electric-mint); }
.comp-cell[data-tier="ascendant"].comp-yes { color: var(--brand-satin-gold); }
.comp-no  { color: var(--brand-border, rgba(255,255,255,0.15)); }
.comp-dash { font-size: 16px; line-height: 1; }

.comparison-cta-row td {
    padding: 20px 16px 0;
    text-align: center;
    vertical-align: top;
    border-top: 2px solid var(--brand-border, rgba(255,255,255,0.12));
}
.comparison-cta-row td:first-child { padding-left: 0; }
.comp-cta-btn {
    display: inline-block;
    font-size: 11px;
    padding: 10px 14px;
    letter-spacing: 0.06em;
    text-align: center;
    white-space: nowrap;
}
.comp-cta-gold {
    border-color: var(--brand-satin-gold) !important;
    color: var(--brand-satin-gold) !important;
}
.comp-cta-gold:hover {
    background: var(--brand-satin-gold) !important;
    color: var(--brand-deep-black) !important;
}
.comp-current-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    display: block;
    padding: 10px 0;
}

/* ── How It Works ── */
.membership-how {
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
    border-top: 1px solid var(--brand-border, rgba(255,255,255,0.06));
}
.membership-how-inner { max-width: 1000px; margin: 0 auto; }
.membership-how-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 12px;
}
.membership-how-title {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin: 0 0 48px;
}
.membership-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: steps;
}
.membership-how-step { display: flex; flex-direction: column; gap: 12px; }
.how-step-num {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--brand-electric-mint);
}
.how-step-label {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin: 0;
}
.how-step-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--brand-muted);
    margin: 0;
}

/* ── Bottom CTA strip ── */
.membership-bottom-cta {
    position: relative;
    text-align: center;
    padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px);
    border-top: 1px solid var(--brand-border, rgba(255,255,255,0.06));
    overflow: hidden;
    background: var(--brand-slate-night, #141a1f);
}
.membership-bottom-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-electric-mint);
    margin-bottom: 16px;
}
.membership-bottom-cta h2 {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--brand-text-light);
    margin: 0 0 20px;
}
.membership-bottom-cta-sub {
    font-size: 15px;
    color: var(--brand-muted);
    margin-bottom: 36px;
}
.membership-bottom-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.membership-bottom-cta .membership-cta-watermark {
    position: absolute;
    width: clamp(200px, 40vw, 400px);
    opacity: 0.04;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .membership-unlocks-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .membership-how-steps   { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .membership-unlocks-grid { grid-template-columns: 1fr; gap: 28px; }
    .membership-hero-title   { font-size: clamp(40px, 12vw, 60px); }
    .comparison-feature-label { white-space: normal; font-size: 11px; }
    .comp-cta-btn            { font-size: 10px; padding: 8px 10px; }
    .membership-bottom-cta-actions { flex-direction: column; align-items: center; }
    .membership-bottom-cta-actions .button { width: 100%; max-width: 320px; text-align: center; }
}


/* ==========================================================================
   CSS Art — Editorial Rebrand  |  Cebastian Co. SS26
   Brand guide: Urban Teal primary accent · Satin Gold selective premium
   Direction: refined, current, editorial — not dark for darkness's sake
   ========================================================================== */

/* ── SVG Pattern tiles (URL-encoded, no # colors needed)  ────────────────── */
/* Shared variables for pattern references used below                         */

/* ── Film grain — applied via ::before on all CSS art surfaces ───────────── */
.collection-bg-img::before,
.cultural-moment-img::before,
.about-editorial-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E");
    background-size: 250px 250px;
    pointer-events: none;
    z-index: 2;
}

/* ── Collection card default ─────────────────────────────────────────────── */
.collection-bg-img {
    background-color: #0d1d1a;
    background-image:
        linear-gradient(to bottom, rgba(10,10,17,0.05) 0%, rgba(10,10,17,0.75) 100%),
        radial-gradient(ellipse 120% 70% at 100% 0%, rgba(7,129,107,0.45) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='0' y1='60' x2='60' y2='0' stroke='rgba(7,129,107,0.1)' stroke-width='1'/%3E%3Cline x1='-30' y1='60' x2='30' y2='0' stroke='rgba(7,129,107,0.06)' stroke-width='0.5'/%3E%3Cline x1='30' y1='60' x2='90' y2='0' stroke='rgba(7,129,107,0.06)' stroke-width='0.5'/%3E%3C/svg%3E"),
        linear-gradient(150deg, #0d1d1a 0%, #0A0A11 100%);
    background-size: auto, auto, 60px 60px, auto;
}

/* ── Logo mark watermark on cards with no product photo ─────────────────── */
/* PHP omits the inline style attribute when no WC thumbnail exists,         */
/* so :not([style]) reliably targets CSS-art cards only.                     */
/* Slug-specific ::after rules (SB/PC ghost letters) override this.          */
.collection-bg-img:not([style])::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/Cebastian_Infinity.png');
    background-size: clamp(100px, 38%, 180px);
    background-repeat: no-repeat;
    background-position: center 38%;
    opacity: 0.11;
    z-index: 0;
    pointer-events: none;
}

/* ── SHADOWBOUND — Steel precision, teal intelligence ────────────────────── */
/* Urban Teal floods the top-right quadrant like directed studio light.       */
/* Diamond grid references technical garment structure.                       */
/* Ghost "SB" sits large and quiet in the corner.                             */
.collection-card[data-slug="shadowbound"] .collection-bg-img {
    background-color: #0A0A11;
    background-image:
        linear-gradient(to bottom, rgba(10,10,17,0.02) 0%, rgba(10,10,17,0.78) 100%),
        radial-gradient(ellipse 160% 100% at 105% -5%, rgba(7,129,107,0.75) 0%, rgba(7,129,107,0.25) 30%, transparent 58%),
        linear-gradient(90deg, rgba(3,247,196,0.18) 0%, rgba(3,247,196,0.0) 14%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='rgba(7,129,107,0.18)' stroke-width='1'/%3E%3Cpath d='M40 20L60 40L40 60L20 40Z' fill='none' stroke='rgba(7,129,107,0.10)' stroke-width='0.5'/%3E%3C/svg%3E"),
        linear-gradient(160deg, #0d1d1a 0%, #0A0A11 100%);
    background-size: auto, auto, auto, 80px 80px, auto;
}

.collection-card[data-slug="shadowbound"] .collection-bg-img::after {
    content: 'SB';
    position: absolute;
    bottom: -8%;
    right: -3%;
    font-size: clamp(110px, 20vw, 210px);
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: rgba(7,129,107,0.12);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ── PULSECORE — Rhythm, charge, gold energy ─────────────────────────────── */
/* Satin Gold diagonal slash from bottom-left, like sound hitting a surface.  */
/* Equalizer bar pattern references the collection's sound/vibration theme.   */
.collection-card[data-slug="pulsecore"] .collection-bg-img {
    background-color: #0A0A11;
    background-image:
        linear-gradient(to bottom, rgba(10,10,17,0.02) 0%, rgba(10,10,17,0.78) 100%),
        linear-gradient(32deg, rgba(249,177,44,0.72) 0%, rgba(249,177,44,0.18) 28%, transparent 52%),
        linear-gradient(270deg, rgba(249,177,44,0.12) 0%, transparent 18%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='80'%3E%3Crect x='2' y='32' width='8' height='16' rx='1' fill='rgba(249,177,44,0.14)'/%3E%3Crect x='14' y='18' width='8' height='44' rx='1' fill='rgba(249,177,44,0.14)'/%3E%3Crect x='26' y='40' width='8' height='10' rx='1' fill='rgba(249,177,44,0.14)'/%3E%3Crect x='38' y='24' width='8' height='32' rx='1' fill='rgba(249,177,44,0.14)'/%3E%3Crect x='50' y='30' width='8' height='20' rx='1' fill='rgba(249,177,44,0.14)'/%3E%3C/svg%3E"),
        linear-gradient(155deg, #1a1408 0%, #0A0A11 100%);
    background-size: auto, auto, auto, 60px 80px, auto;
}

.collection-card[data-slug="pulsecore"] .collection-bg-img::after {
    content: 'PC';
    position: absolute;
    bottom: -8%;
    right: -3%;
    font-size: clamp(110px, 20vw, 210px);
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: rgba(249,177,44,0.1);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ── BURNT — Raw earth, origin, weight ───────────────────────────────────── */
/* Charred Brown rises from the bottom like residual heat.                    */
/* Gold ember glow at the base. Fragmented block pattern.                     */
.collection-card[data-slug="burnt"] .collection-bg-img {
    background-color: #0A0A11;
    background-image:
        linear-gradient(to bottom, rgba(10,10,17,0.02) 0%, rgba(10,10,17,0.65) 100%),
        linear-gradient(to top, rgba(77,64,43,0.90) 0%, rgba(77,64,43,0.45) 28%, transparent 58%),
        radial-gradient(ellipse 70% 35% at 50% 100%, rgba(249,177,44,0.30) 0%, transparent 65%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='5' y='5' width='60' height='60' fill='none' stroke='rgba(77,64,43,0.22)' stroke-width='1'/%3E%3Crect x='15' y='15' width='40' height='40' fill='none' stroke='rgba(77,64,43,0.12)' stroke-width='0.5'/%3E%3Cline x1='5' y1='95' x2='95' y2='5' stroke='rgba(77,64,43,0.12)' stroke-width='1'/%3E%3Cline x1='65' y1='5' x2='95' y2='65' stroke='rgba(249,177,44,0.08)' stroke-width='0.75'/%3E%3C/svg%3E"),
        linear-gradient(175deg, #0A0A11 0%, #110e08 100%);
    background-size: auto, auto, auto, 100px 100px, auto;
}

/* ── Cultural moment — editorial brand story block ───────────────────────── */
/* Teal column band on the left (magazine grid reference).                    */
/* Horizontal rule lines evoke editorial layout.                              */
.cultural-moment-img {
    filter: none;
    background-color: #0A0A11;
    background-image:
        linear-gradient(90deg, rgba(7,129,107,0.55) 0%, rgba(7,129,107,0.12) 22%, transparent 48%),
        linear-gradient(90deg, rgba(3,247,196,0.12) 0%, transparent 8%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='48'%3E%3Cline x1='0' y1='24' x2='100' y2='24' stroke='rgba(7,129,107,0.07)' stroke-width='0.5'/%3E%3Cline x1='0' y1='12' x2='35' y2='12' stroke='rgba(7,129,107,0.05)' stroke-width='0.5'/%3E%3Cline x1='0' y1='36' x2='22' y2='36' stroke='rgba(7,129,107,0.05)' stroke-width='0.5'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #141A1F 0%, #0A0A11 100%);
    background-size: auto, auto, 100px 48px, auto;
}

/* ── About editorial — colour-block composition ──────────────────────────── */
/* Gold upper-left quadrant, Teal lower-right: the two brand anchors.        */
/* Diagonal line pattern adds garment/construction texture.                   */
.about-editorial-img {
    filter: none;
    background-color: #0A0A11;
    background-image:
        radial-gradient(ellipse 90% 65% at 12% 18%, rgba(249,177,44,0.62) 0%, rgba(249,177,44,0.12) 40%, transparent 65%),
        radial-gradient(ellipse 90% 65% at 88% 82%, rgba(7,129,107,0.58) 0%, rgba(7,129,107,0.12) 40%, transparent 65%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cline x1='0' y1='120' x2='120' y2='0' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cline x1='0' y1='80' x2='80' y2='0' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3Cline x1='40' y1='120' x2='120' y2='40' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #1a1408 0%, #0A0A11 50%, #0d1d1a 100%);
    background-size: auto, auto, 120px 120px, auto;
}

.about-editorial-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(10,10,17,0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════════════════
   BRAND PROOF STRIP — horizontal credibility bar between hero and collections
   ══════════════════════════════════════════════════════════════════════════════ */
.brand-proof-strip {
    background: linear-gradient(135deg, rgba(7,129,107,0.08) 0%, rgba(10,10,17,0.95) 30%, #0A0A11 70%, rgba(249,177,44,0.05) 100%);
    border-top: 1px solid rgba(7,129,107,0.18);
    border-bottom: 1px solid rgba(7,129,107,0.12);
    padding: 0;
    overflow: hidden;
}

.brand-proof-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: var(--site-max-width, 1360px);
    margin: 0 auto;
    gap: 0;
}

.brand-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 18px 32px;
    text-align: center;
    flex: 1;
}

.brand-proof-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(7,129,107,0.25) 30%, rgba(7,129,107,0.25) 70%, transparent);
    flex-shrink: 0;
    align-self: stretch;
}

.proof-num {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-teal, #07816B);
    line-height: 1;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.proof-label {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .brand-proof-inner {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .brand-proof-inner::-webkit-scrollbar { display: none; }
    .brand-proof-item {
        padding: 14px 20px;
        flex-shrink: 0;
    }
    .proof-label { white-space: nowrap; }
}

@media (max-width: 480px) {
    .brand-proof-item { padding: 12px 16px; }
    .proof-num { font-size: 0.875rem; }
    .proof-label { font-size: 0.62rem; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SHOP MEMBERSHIP PROMO BANNER
   ══════════════════════════════════════════════════════════════════════════════ */
.shop-member-banner {
    background: linear-gradient(135deg, rgba(7,129,107,0.14) 0%, rgba(10,10,17,0.98) 50%, rgba(249,177,44,0.08) 100%);
    border-top: 1px solid rgba(7,129,107,0.22);
    border-bottom: 1px solid rgba(7,129,107,0.12);
    padding: 18px clamp(20px, 5vw, 60px);
}

.shop-member-banner-inner {
    max-width: var(--site-max-width, 1360px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.shop-member-banner-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.shop-member-banner-eyebrow {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-teal, #07816B);
    background: rgba(7,129,107,0.12);
    border: 1px solid rgba(7,129,107,0.25);
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.shop-member-banner-text strong {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-text-light, #F0EDE8);
    white-space: nowrap;
}

.shop-member-banner-sub {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

.shop-member-banner-cta {
    flex-shrink: 0;
    padding: 10px 22px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .shop-member-banner-inner { gap: 14px; }
    .shop-member-banner-text { gap: 8px; }
    .shop-member-banner-sub { display: none; }
    .shop-member-banner-cta { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   COMMUNITY PERK STRIP — Current referral
   ══════════════════════════════════════════════════════════════════════════════ */
.community-perk-strip {
    background: linear-gradient(135deg, #0d1a12 0%, #0A0A11 40%, #16120a 100%);
    border-top: 1px solid rgba(249,177,44,0.2);
    border-bottom: 1px solid rgba(249,177,44,0.1);
    padding: 48px clamp(20px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}

.community-perk-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(249,177,44,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 50%, rgba(7,129,107,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.community-perk-inner {
    max-width: var(--site-max-width, 1360px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.community-perk-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(249,177,44,0.08);
    border: 1px solid rgba(249,177,44,0.25);
    padding: 20px 24px;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.community-perk-badge svg {
    color: var(--brand-satin-gold, #F9B12C);
}

.community-perk-badge span {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-satin-gold, #F9B12C);
    white-space: nowrap;
}

.community-perk-text {
    flex: 1;
    min-width: 240px;
}

.community-perk-heading {
    font-family: var(--font-heading, 'Exo 2', sans-serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--brand-text-light, #F0EDE8);
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

.community-perk-body {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0 0 10px;
}

.community-perk-cta {
    flex-shrink: 0;
    border-color: rgba(249,177,44,0.4) !important;
    color: var(--brand-satin-gold, #F9B12C) !important;
    white-space: nowrap;
}

.community-perk-cta:hover {
    background: rgba(249,177,44,0.08) !important;
    border-color: var(--brand-satin-gold, #F9B12C) !important;
}

.community-perk-terms {
    max-width: var(--site-max-width, 1360px);
    margin: 16px auto 0;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .community-perk-inner { gap: 24px; }
    .community-perk-badge { flex-direction: row; padding: 14px 18px; min-width: unset; width: 100%; justify-content: flex-start; }
    .community-perk-cta { width: 100%; text-align: center; }
}

/* ── Member discount row in cart / checkout totals ───────────────────────── */
.member-discount-row th {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-teal, #07816B);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-discount-badge {
    display: inline-block;
    background: rgba(7,129,107,0.12);
    color: var(--brand-teal, #07816B);
    border: 1px solid rgba(7,129,107,0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
