/** Shopify CDN: Minification failed

Line 1164:0 Unexpected "}"

**/
/* The Hemp Club - FUTURISTIC CBD MARKETPLACE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk Neon Palette */
    --neon-blue: #00d4ff;
    --neon-green: #00ff9f;
    --neon-pink: #ff006e;
    --neon-orange: #ff6b35;
    --neon-purple: #b721ff;
    --neon-cyan: #00fff5;
    
    /* Default theme - Bleu → Vert */
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #00ff9f;
    --dark: #0a0e1a;
    --dark-2: #1a1f2e;
    --dark-3: #252b3d;
    --text: #ffffff;
    --text-dim: #a0a8b8;
    --glow: rgba(0, 212, 255, 0.6);
}

/* AMBIANCES AVEC GRADIENTS PROGRESSIFS */

/* Default/All: Electric blue to neon green */
body[data-theme="default"] {
    --primary: #00d4ff;
    --secondary: #00ff9f;
    --glow: rgba(0, 212, 255, 0.6);
}

/* Flowers: Green + neon blue */
body[data-theme="fleurs"] {
    --primary: #00ff9f;
    --secondary: #00d4ff;
    --glow: rgba(0, 255, 200, 0.6);
}

/* Oils: Warm gold + amber */
body[data-theme="huiles"] {
    --primary: #ffbf3c;
    --secondary: #ff8c00;
    --glow: rgba(255, 191, 60, 0.6);
}

/* Skincare: Purple + neon blue */
body[data-theme="cosmetiques"] {
    --primary: #b721ff;
    --secondary: #4cc9ff;
    --glow: rgba(183, 33, 255, 0.6);
}

/* Edibles: Purple to electric cyan */
body[data-theme="edibles"] {
    --primary: #b721ff;
    --secondary: #00fff5;
    --glow: rgba(183, 33, 255, 0.6);
}

/* Vaporisation : Vert acide + Bleu */
body[data-theme="vape"] {
    --primary: #7bff4f;
    --secondary: #00d4ff;
    --glow: rgba(123, 255, 79, 0.6);
}

/* Accessoires : Purple → Pink (on garde) */
body[data-theme="accessoires"] {
    --primary: #b721ff;
    --secondary: #ff006e;
    --glow: rgba(183, 33, 255, 0.6);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Subtle brick texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.015) 80px,
            rgba(255, 255, 255, 0.015) 82px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Soft diffuse lounge lighting */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, var(--primary) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 70%, var(--secondary) 0%, transparent 55%);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transition: all 0.8s ease;
    filter: blur(60px);
}

body * {
    transition: color 0.8s ease, background 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* AGE MODAL */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    transition: opacity 0.3s ease;
}

.age-modal.hidden {
    display: none !important;
}

.age-modal-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.age-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.1);
    animation: slideUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.age-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

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

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-modal-content p {
    color: var(--text-dim);
    margin-bottom: 32px;
    font-size: 16px;
}

.age-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.btn-age-yes, .btn-age-no {
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    z-index: 10;
}

.btn-age-yes {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 0 20px var(--glow);
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow);
}

.btn-age-no {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--dark-3);
}

.btn-age-no:hover {
    border-color: var(--text-dim);
    color: var(--text);
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--glow) 50%, transparent);
    opacity: 0;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); opacity: 0.1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.header-top {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
}

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

.logo-icon {
    font-size: 32px;
    animation: rotate 20s linear infinite;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-dim);
}

.search-box {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 8px;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    box-shadow: 0 0 20px var(--glow);
}

.header-actions {
    display: flex;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--dark-3);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.nav-bar {
    display: flex;
    gap: 32px;
    padding: 16px 0;
    border-top: 1px solid var(--dark-3);
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.hot {
    color: var(--primary);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px var(--glow); }
    50% { text-shadow: 0 0 20px var(--glow); }
}

/* HERO */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--glow-blue) 0%, transparent 50%);
    opacity: 0.15;
    animation: moveGradient 15s ease-in-out infinite;
}

@keyframes moveGradient {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

.gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 0 30px var(--glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--glow);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--dark-3);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    width: 220px;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 20%; left: 10%; animation-delay: 0s; }
.card-2 { top: 50%; right: 10%; animation-delay: 1s; }
.card-3 { top: 10%; right: 30%; animation-delay: 2s; }

.card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--glow), transparent 70%);
    opacity: 0.5;
    filter: blur(20px);
}

.card-content {
    position: relative;
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.card-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.card-content:hover::before {
    opacity: 0.5;
}

.card-content:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5), 
        0 0 30px var(--glow);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.card-img {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border-radius: 12px;
    margin-bottom: 12px;
}

.card-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.card-rating {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 8px;
}

.card-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* CATEGORIES */
.categories {
    padding: 100px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    position: relative;
    background: rgba(26, 31, 46, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-3);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.cat-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, var(--glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cat-card:hover::before {
    opacity: 0.4;
}

.cat-card:hover .cat-glow {
    opacity: 0.3;
}

.cat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3), 
        0 0 30px var(--glow);
}

.cat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cat-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cat-card p {
    font-size: 14px;
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

/* PRODUCTS */
.products {
    padding: 80px 0 100px;
    background: #000000;
}


.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.filter-select {
    padding: 12px 20px;
    background: var(--dark);
    border: 1px solid var(--dark-3);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}


.product-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 12px 12px 20px;
    cursor: pointer;
    transition: transform 0.25s ease;
}


.product-card::before {
    content: none;
}


.product-card:hover::before {
    opacity: 0.4;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5), 
        0 0 30px var(--glow),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.product-img {
    width: 100%;
    height: 280px;
    background: #000;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

/* Product container with video */
.product-img-container {
    position: relative;
    width: 100%;
    height: 260px; /* was 240px */
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}


.product-img-static,
.product-img-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain; /* show full neon base without cropping */
    object-position: center center;
    transition: opacity 0.4s ease;
}


.product-img-video {
    opacity: 0;
    pointer-events: none;
}

.product-img-container:hover .product-img-static {
    opacity: 0;
}

.product-img-container:hover .product-img-video {
    opacity: 1;
}

.video-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: pulse-hint 2s infinite;
}

@keyframes pulse-hint {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.product-img-container:hover .video-hint {
    opacity: 0;
}


.product-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-vendor {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.product-rating {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    box-shadow: 0 0 25px var(--glow);
    transform: scale(1.05);
}

.btn-load-more {
    display: block;
    margin: 0 auto;
    padding: 16px 60px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--dark-3);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

/* FEATURES */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: var(--text-dim);
}

/* NEWSLETTER */
.newsletter {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--glow) 0%, var(--glow-blue) 100%);
    opacity: 0.1;
}

.newsletter h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    margin-bottom: 16px;
}

.newsletter p {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.newsletter-form button {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    box-shadow: 0 0 30px var(--glow);
}

/* FOOTER */
.footer {
    background: var(--dark-2);
    padding: 80px 0 40px;
    border-top: 1px solid var(--dark-3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-dim);
    margin-bottom: 24px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--dark-3);
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { height: 300px; }
    .products-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
}

@media (max-width: 768px) {
    .header-top { flex-wrap: wrap; }
    .search-box { order: 3; width: 100%; }
    .nav-bar { overflow-x: auto; }
    .products-grid, .categories-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 42px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .products-grid, .categories-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
}


/* Full video display for all products */
.product-img-video-full {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    pointer-events: auto;
}

/* Texte compact sous l'image */
.product-title {
    font-size: 14px;
    margin: 4px 0;
}

.product-vendor {
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.product-rating {
    margin: 2px 0 4px 0;
    font-size: 11px;
}

/* Ligne prix + bouton */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
}

/* Bouton compact */
.btn-add-cart {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 999px;
    border: none;
    white-space: nowrap;
    transform: translateY(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-add-cart:hover {
    transform: translateY(-1px);
}

.btn-add-cart:active {
    transform: translateY(0);
}

/* Responsive: 3 colonnes puis 1 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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


/* The Hemp Club v4.4 - Shopify compatibility additions */
.logo {
  text-decoration: none;
}

.logo-icon-image {
  overflow: hidden;
}

.logo-icon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.45));
}

.logo-icon-image span {
  line-height: 1;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-load-more,
.btn-add-cart,
.product-title a,
.product-card-link,
.cat-card {
  text-decoration: none;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card-link,
.product-title a,
.cat-card {
  color: inherit;
}

.shopify-section {
  position: relative;
}

.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  padding: 40px 0;
}

.product-card button[disabled],
.btn-add-cart[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.newsletter-form .errors,
.newsletter-form .form-status {
  color: #fff;
}

main#MainContent {
  min-height: 40vh;
}


/* The Hemp Club v4.4 repair: compact header + neutral THC monogram.
   No generated mascot/logo, no oversized SVG. */
.header-top {
  padding: 12px 0;
  gap: 24px;
}

.logo {
  min-width: max-content;
}

.logo-icon,
.logo-icon-image {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.18), rgba(0, 136, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.16);
  animation: none !important;
  overflow: hidden;
}

.logo-icon-image img {
  width: 100%;
  height: 100%;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
  display: block;
  filter: none;
}

.logo-mark {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--primary);
  line-height: 1;
}

.logo-main {
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
}

.nav-bar {
  gap: 22px;
  padding: 12px 0;
}

.nav-link::after {
  bottom: -14px;
}

.search-box input {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 768px) {
  .header-top {
    gap: 14px;
    padding: 10px 0;
  }

  .logo-icon,
  .logo-icon-image {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 12px;
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    display: none;
  }
}


/* SEO Hoover pages */
.seo-hoover-page {
  padding: 56px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 159, 0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.10), transparent 32%);
}

.seo-hoover-container {
  max-width: 1180px;
}

.seo-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--text-dim);
  font-size: 14px;
}

.seo-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.seo-hero {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(26,31,46,0.96), rgba(10,14,26,0.92));
  box-shadow: 0 25px 80px rgba(0,0,0,0.30), 0 0 40px rgba(0, 212, 255, 0.08);
  margin-bottom: 34px;
}

.seo-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,159,0.25);
  color: var(--secondary);
  background: rgba(0,255,159,0.08);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.seo-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-intro {
  color: var(--text-dim);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  max-width: 860px;
}

.seo-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-meta-row span,
.seo-disclaimer {
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-dim);
  font-size: 13px;
}

.seo-disclaimer {
  display: inline-block;
  margin-top: 18px;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.seo-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.seo-toc,
.seo-content-card {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  background: rgba(10,14,26,0.78);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.seo-toc {
  position: sticky;
  top: 110px;
  padding: 20px;
}

.seo-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
}

.seo-toc a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.seo-toc a:hover {
  color: var(--primary);
}

.seo-content-card {
  padding: clamp(24px, 4vw, 46px);
}

.seo-rich-content {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 17px;
}

.seo-rich-content h2,
.seo-recommendations h2,
.seo-faq h2,
.seo-table-section h2 {
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  margin: 36px 0 16px;
}

.seo-rich-content h3 {
  color: var(--text);
  margin: 28px 0 12px;
  font-size: 22px;
}

.seo-rich-content p,
.seo-rich-content ul,
.seo-rich-content ol {
  margin-bottom: 18px;
}

.seo-rich-content a {
  color: var(--primary);
}

.seo-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.seo-recommendation-card {
  display: block;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,212,255,0.14);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.seo-recommendation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,255,159,0.40);
}

.seo-recommendation-card span {
  color: var(--secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-recommendation-card strong {
  display: block;
  color: var(--text);
  margin: 8px 0;
  font-size: 18px;
}

.seo-recommendation-card p {
  color: var(--text-dim);
  line-height: 1.6;
}

.seo-faq-item {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  overflow: hidden;
}

.seo-faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  padding: 18px 20px;
}

.seo-faq-item div {
  color: var(--text-dim);
  padding: 0 20px 20px;
  line-height: 1.7;
}

.seo-comparison-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
}

.seo-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

.seo-comparison-table th,
.seo-comparison-table td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.seo-comparison-table th {
  color: var(--text);
  background: rgba(0,212,255,0.10);
}

.seo-comparison-table td {
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }
  .seo-toc {
    position: static;
  }
}

/* SEO Hoover v4.7 - Prelaunch Supplier Ready */
.prelaunch-page {
  padding: 72px 0;
  background: radial-gradient(circle at top left, rgba(209, 179, 106, 0.10), transparent 34%), #05070f;
}

.prelaunch-container {
  max-width: 1180px;
}

.prelaunch-hero {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 64px);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 30px 120px rgba(0,0,0,0.32);
  margin: 28px 0;
}

.prelaunch-status,
.prelaunch-warning-box,
.prelaunch-contact-box {
  border: 1px solid rgba(209, 179, 106, 0.30);
  border-radius: 22px;
  padding: 22px;
  background: rgba(209, 179, 106, 0.08);
  color: rgba(255,255,255,0.86);
}

.prelaunch-grid {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.prelaunch-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.prelaunch-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.prelaunch-card {
  display: block;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,0.045);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.prelaunch-link-card:hover,
.prelaunch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 179, 106, 0.45);
  background: rgba(255,255,255,0.075);
}

.prelaunch-card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d1b36a;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.prelaunch-card h2,
.prelaunch-card h3,
.prelaunch-section h2,
.prelaunch-contact-box h2,
.prelaunch-warning-box h2 {
  color: #fff;
  margin: 0 0 12px;
}

.prelaunch-card p,
.prelaunch-section p,
.prelaunch-contact-box p,
.prelaunch-warning-box p {
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

.prelaunch-content {
  margin-top: 26px;
}

.prelaunch-section {
  margin-top: 34px;
}

.prelaunch-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.prelaunch-pill-grid span {
  border: 1px solid rgba(209, 179, 106, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(209, 179, 106, 0.08);
  color: rgba(255,255,255,0.88);
}

.prelaunch-checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.prelaunch-checklist li {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.035);
}

.prelaunch-checklist strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.prelaunch-checklist span {
  color: rgba(255,255,255,0.74);
}

@media (max-width: 860px) {
  .prelaunch-grid-2,
  .prelaunch-grid-3 {
    grid-template-columns: 1fr;
  }
  .prelaunch-page {
    padding: 42px 0;
  }
}


/* =========================================================
   The Hemp Club v4.9 - Product Card Fix
   Goal: clean initial card state, bigger visual, no baked CTA overlap,
   no Hover/Add-to-cart collision, clean video reset.
   ========================================================= */
.products-grid {
    align-items: start;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 18px;
    background: transparent;
    border: 0;
    border-radius: 22px;
    box-shadow: none;
    overflow: visible;
    cursor: default;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: none;
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.13));
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-img,
.product-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.08 / 1;
    height: auto;
    min-height: 250px;
    max-height: 330px;
    margin: 0 0 18px;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 38%, rgba(0, 255, 120, 0.10), #000 62%);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-img-static,
.product-img-video {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.product-img-static {
    opacity: 1;
}

.product-img-video {
    opacity: 0;
    pointer-events: none;
}

.product-img-container:hover .product-img-static,
.product-img-container.is-video-active .product-img-static {
    opacity: 0;
}

.product-img-container:hover .product-img-video,
.product-img-container.is-video-active .product-img-video {
    opacity: 1;
}

/* Demo/home fallback videos use this class. Keep them clean too. */
.product-img-video-full {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
}

/* Remove the visible Hover pill. The animation still starts on hover. */
.video-hint {
    display: none !important;
}

.product-badge {
    top: 16px;
    left: 16px;
    z-index: 5;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.22);
}

.product-vendor {
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.82;
    margin: 0 0 8px;
}

.product-title {
    font-size: 18px;
    line-height: 1.22;
    margin: 0 0 10px;
    color: var(--text);
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-rating {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

.product-price-row {
    display: block;
    margin-top: 0;
}

.product-price {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
}

.btn-add-cart {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transform: none;
}

.btn-add-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.35);
}

.btn-add-cart:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .product-img,
    .product-img-container {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .product-card {
        padding-bottom: 24px;
    }
    .product-img,
    .product-img-container {
        min-height: 300px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .product-img,
    .product-img-container {
        min-height: 280px;
    }
}
