/* ===================================================
   UH SMOKE SHOP — style.css
   Dark neon theme: neon blue (#00d4ff) + neon red (#ff003c)
   Fonts: Bebas Neue (headings) / Rajdhani (body)
=================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --neon-blue:  #00d4ff;
    --neon-red:   #ff003c;
    --neon-green: #00ff88;

    --dark-bg:    #080808;
    --dark-card:  #101010;
    --dark-nav:   rgba(4, 4, 4, 0.96);
    --dark-line:  #1c1c1c;

    --text-white: #ffffff;
    --text-muted: #888888;

    --glow-blue:  0 0 8px rgba(0,212,255,.9),  0 0 20px rgba(0,212,255,.55), 0 0 45px rgba(0,212,255,.3);
    --glow-red:   0 0 8px rgba(255,0,60,.9),   0 0 20px rgba(255,0,60,.55),  0 0 45px rgba(255,0,60,.3);
    --glow-green: 0 0 8px rgba(0,255,136,.9),  0 0 20px rgba(0,255,136,.55), 0 0 45px rgba(0,255,136,.3);

    --border-blue: rgba(0,212,255,.18);
    --border-red:  rgba(255,0,60,.18);

    --radius: 10px;
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; user-select:none; -webkit-user-select:none; }

html { scroll-behavior: smooth; }

body {
    background: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ===== SHARED LOGO COLORS ===== */
.logo-uh    { color: var(--neon-blue); text-shadow: var(--glow-blue); }
.logo-smoke { color: var(--neon-red);  text-shadow: var(--glow-red);  }

/* ===== NEON HELPERS ===== */
.neon-blue-text {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===================================================
   AGE GATE
=================================================== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0,212,255,.06) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(255,0,60,.06)  0%, transparent 55%),
        #050505;
    transition: opacity .5s ease;
}

.age-gate-content {
    text-align: center;
    max-width: 560px;
    width: 100%;
    padding: 55px 45px;
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    background: rgba(255,255,255,.02);
    box-shadow:
        0 0 60px rgba(0,212,255,.08),
        0 0 120px rgba(255,0,60,.05),
        inset 0 1px 0 rgba(255,255,255,.04);
    animation: fadeInScale .6s ease;
}

.age-gate-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.6rem, 7vw, 3.8rem);
    letter-spacing: 4px;
    margin-bottom: 32px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: baseline;
}

.age-gate-logo .logo-uh { animation: neonFlicker 4s infinite; }

.age-gate-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 3px;
    color: var(--text-white);
    margin-bottom: 14px;
}

.age-gate-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 44px;
    font-weight: 500;
}

.age-gate-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-yes, .btn-no {
    padding: 15px 38px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.35rem;
    letter-spacing: 2px;
    border-radius: 7px;
    cursor: pointer;
    transition: all var(--transition);
    min-width: 175px;
    border: 2px solid;
}

.btn-yes {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    background: transparent;
    box-shadow: 0 0 14px rgba(0,212,255,.25);
}

.btn-yes:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.btn-no {
    color: var(--neon-red);
    border-color: var(--neon-red);
    background: transparent;
    box-shadow: 0 0 14px rgba(255,0,60,.25);
}

.btn-no:hover {
    background: var(--neon-red);
    color: #fff;
    box-shadow: var(--glow-red);
    transform: translateY(-3px);
}

.age-gate-disclaimer {
    font-size: .78rem;
    color: #3a3a3a;
}

/* ===================================================
   NAVIGATION
=================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark-nav);
    border-bottom: 1px solid var(--border-blue);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition);
}

#navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0,212,255,.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.75rem;
    letter-spacing: 3px;
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.nav-logo .logo-uh { animation: neonFlicker 4s infinite; }

.nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition), text-shadow var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0,212,255,.6);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 6px rgba(0,212,255,.7);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
=================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 110px 28px 70px;
    background: var(--dark-bg);
}

/* Subtle grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
}

/* Neon ambient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-blue {
    width: 500px;
    height: 500px;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,212,255,.07);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-red {
    width: 400px;
    height: 400px;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,0,60,.07);
    animation: orbFloat 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--neon-red);
    text-shadow: var(--glow-red);
    margin-bottom: 16px;
    animation: fadeInUp .7s ease both;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 11vw, 8rem);
    line-height: .95;
    letter-spacing: 4px;
    color: var(--text-white);
    margin-bottom: 24px;
    animation: fadeInUp .8s ease .05s both;
}

.hero-title .neon-blue-text {
    animation: neonPulse 3.5s ease-in-out infinite;
}

.hero-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 44px;
    animation: fadeInUp .9s ease .1s both;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease .15s both;
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    letter-spacing: 2.5px;
    border-radius: 7px;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--neon-blue);
    color: #000;
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    background: transparent;
    color: var(--neon-blue);
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0,212,255,.9), 0 0 50px rgba(0,212,255,.5), 0 0 80px rgba(0,212,255,.3);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-red);
    border-color: var(--neon-red);
    box-shadow: 0 0 12px rgba(255,0,60,.3);
}

.btn-secondary:hover {
    background: var(--neon-red);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--glow-red);
}

/* ===================================================
   SECTION SHARED
=================================================== */
.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.6rem, 6vw, 4rem);
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 14px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--neon-blue);
    box-shadow: var(--glow-blue);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 60px;
    font-weight: 500;
}

/* ===================================================
   PRODUCTS SECTION
=================================================== */
.products-section { padding: 100px 0 80px; }

.product-category { margin-bottom: 72px; }

/* Category title */
.category-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid var(--border-blue);
    transition: color var(--transition);
}

/* ── FEATURED THCA BLOCK ── */
.category-featured {
    background: linear-gradient(135deg, rgba(0,212,255,.04) 0%, transparent 60%);
    border: 1px solid rgba(0,212,255,.22);
    border-radius: 14px;
    padding: 44px 40px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.category-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: var(--glow-blue);
    animation: scanline 4s linear infinite;
}

.featured-header {
    margin-bottom: 32px;
}

.featured-badge {
    display: inline-block;
    font-family: 'Bebas Neue', cursive;
    font-size: .85rem;
    letter-spacing: 3px;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    border-radius: 3px;
    padding: 3px 12px;
    margin-bottom: 12px;
    box-shadow: 0 0 10px rgba(0,212,255,.25);
}

.thca-title {
    color: var(--neon-blue) !important;
    text-shadow: var(--glow-blue);
    font-size: 2.7rem !important;
    border-left-color: var(--neon-blue) !important;
    margin-bottom: 8px !important;
}

.category-desc {
    font-size: .95rem;
    color: #555;
    letter-spacing: 1px;
    padding-left: 16px;
}

/* Grids */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* ── PRODUCT CARD ── */
.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: default;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,212,255,.4);
    box-shadow:
        0 0 18px rgba(0,212,255,.14),
        0 0 40px rgba(0,212,255,.07),
        0 10px 30px rgba(0,0,0,.4);
}

.featured-card {
    border-color: rgba(0,212,255,.15);
}

.featured-card:hover {
    border-color: rgba(0,212,255,.6);
    box-shadow:
        0 0 30px rgba(0,212,255,.22),
        0 0 60px rgba(0,212,255,.1),
        0 10px 40px rgba(0,0,0,.5);
}

/* Real product images */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
    filter: brightness(1.12) saturate(1.15);
}

.product-image:has(img) {
    padding: 0;
    font-size: 0;
    overflow: hidden;
}

/* Placeholder image area */
.product-image {
    width: 100%;
    height: 175px;
    background: #141414;
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    transition: border-color var(--transition), color var(--transition);
}

.featured-card .product-image { height: 215px; }

.product-card:hover .product-image {
    border-color: rgba(0,212,255,.15);
    color: rgba(0,212,255,.4);
}

.product-info {
    padding: 18px 20px 22px;
}

.product-info h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 8px;
    transition: color var(--transition), text-shadow var(--transition);
}

.product-card:hover .product-info h4 {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0,212,255,.5);
}

.product-info p {
    font-size: .87rem;
    color: #666;
    line-height: 1.55;
}

/* ===================================================
   ABOUT SECTION
=================================================== */
.about-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--dark-bg) 0%, #0c0c0c 50%, var(--dark-bg) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 60px;
}

.about-text p {
    font-size: 1.12rem;
    color: #aaa;
    line-height: 2;
    font-weight: 400;
}

.about-stats { display: flex; flex-direction: column; gap: 18px; }

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: rgba(0,212,255,.4);
    box-shadow: 0 0 20px rgba(0,212,255,.1);
    transform: translateX(6px);
}

.stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(0,212,255,.5));
}

.stat-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0,212,255,.5);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: .88rem;
    color: #555;
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-section { padding: 100px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    margin-top: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: rgba(0,212,255,.4);
    box-shadow: 0 0 20px rgba(0,212,255,.1);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 1.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.contact-card a {
    color: var(--text-muted);
    transition: color var(--transition), text-shadow var(--transition);
}

.contact-card a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0,212,255,.5);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,212,255,.2);
    box-shadow: 0 0 40px rgba(0,212,255,.08);
}

.map-container iframe { display: block; }

/* ===================================================
   FOOTER
=================================================== */
.footer {
    background: #040404;
    border-top: 1px solid rgba(0,212,255,.12);
    padding: 60px 0 32px;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: baseline;
}

.footer-logo .logo-uh { animation: neonFlicker 4s infinite; }

.footer-info p {
    font-size: .98rem;
    color: #555;
    margin-bottom: 6px;
}

.footer-info a {
    color: #555;
    transition: color var(--transition);
}

.footer-info a:hover { color: var(--neon-blue); }

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--dark-line);
    margin: 30px 0;
}

.footer-bottom p {
    font-size: .88rem;
    color: #383838;
    margin-bottom: 6px;
}

.disclaimer { font-size: .76rem !important; color: #282828 !important; }

/* ===================================================
   FLOATING ELEMENTS
=================================================== */
.floating-badge {
    position: fixed;
    bottom: 30px;
    left: 20px;
    user-select: none;
    -webkit-user-select: none;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,.85);
    border: 1.5px solid var(--neon-green);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--glow-green);
    animation: pulseBadge 2.2s ease-in-out infinite;
    backdrop-filter: blur(6px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 6px var(--neon-green);
    animation: blink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

.badge-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.05rem;
    letter-spacing: 2.5px;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

/* ===================================================
   CYBERPUNK ENHANCEMENTS
=================================================== */

/* ── Extra accent variable ── */
:root {
    --neon-purple: #bf5fff;
    --glow-purple: 0 0 8px rgba(191,95,255,.9), 0 0 20px rgba(191,95,255,.55), 0 0 45px rgba(191,95,255,.3);
}

/* ── Glitch text effect ── */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    pointer-events: none;
}

.glitch-text::before {
    color: var(--neon-red);
    clip-path: inset(50% 0 50% 0);
    animation: glitch-before 6s steps(1) infinite;
}

.glitch-text::after {
    color: var(--neon-blue);
    clip-path: inset(50% 0 50% 0);
    animation: glitch-after 6s steps(1) infinite;
}

@keyframes glitch-before {
    0%, 87%, 100% { clip-path: inset(50% 0 50% 0); transform: translate(0); }
    88% { clip-path: inset(12% 0 55% 0); transform: translate(-4px, 2px); }
    89% { clip-path: inset(65% 0 12% 0); transform: translate(4px, -2px); }
    90% { clip-path: inset(30% 0 42% 0); transform: translate(-3px, 3px); }
    91% { clip-path: inset(50% 0 28% 0); transform: translate(3px, -1px); }
    92% { clip-path: inset(78% 0  5% 0); transform: translate(-2px, 1px); }
    93% { clip-path: inset(50% 0 50% 0); transform: translate(0); }
}

@keyframes glitch-after {
    0%, 89%, 100% { clip-path: inset(50% 0 50% 0); transform: translate(0); }
    90% { clip-path: inset(22% 0 58% 0); transform: translate(4px, -2px); }
    91% { clip-path: inset(55% 0 18% 0); transform: translate(-4px, 2px); }
    92% { clip-path: inset(8%  0 68% 0); transform: translate(3px,  1px); }
    93% { clip-path: inset(70% 0  8% 0); transform: translate(-3px,-1px); }
    94% { clip-path: inset(50% 0 50% 0); transform: translate(0); }
}

/* ── Scanline overlay on hero ── */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.06) 3px,
        rgba(0, 0, 0, 0.06) 4px
    );
}

/* Make hero content sit above scanlines */
.hero-content {
    z-index: 2;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

/* ── Hero grid — more visible for cyberpunk ── */
.hero-grid-overlay {
    background-image:
        linear-gradient(rgba(0,212,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,.07) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ── Cyberpunk section background grid ── */
.products-section,
.about-section,
.contact-section {
    background-image:
        linear-gradient(rgba(0,212,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── Section title — cyberpunk accent bar ── */
.section-title {
    text-shadow: 0 0 30px rgba(0,212,255,.25);
}

/* ── Product card — cyberpunk corner brackets ── */
.product-card {
    position: relative;
}

.product-card::before,
.product-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity var(--transition), box-shadow var(--transition);
    z-index: 2;
}

.product-card::before {
    top: -1px; left: -1px;
    border-top:  2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

.product-card::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--neon-red);
    border-right:  2px solid var(--neon-red);
}

.product-card:hover::before {
    opacity: 1;
    box-shadow: -2px -2px 8px rgba(0,212,255,.55);
}

.product-card:hover::after {
    opacity: 1;
    box-shadow: 2px 2px 8px rgba(255,0,60,.55);
}

/* ── Featured card — always-on purple accent corner ── */
.featured-card::before {
    opacity: 0.35;
    border-color: var(--neon-purple);
    box-shadow: -2px -2px 6px rgba(191,95,255,.4);
}

.featured-card::after {
    opacity: 0.35;
    border-color: var(--neon-purple);
    box-shadow: 2px 2px 6px rgba(191,95,255,.4);
}

.featured-card:hover::before,
.featured-card:hover::after {
    opacity: 1;
}

/* ── Cyber separator line between sections ── */
.cyber-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--neon-blue) 30%,
        var(--neon-red) 70%,
        transparent 100%);
    box-shadow: 0 0 12px rgba(0,212,255,.4), 0 0 24px rgba(255,0,60,.2);
    margin: 0;
    border: none;
    opacity: 0.6;
}

/* ── Intensify navbar border ── */
#navbar {
    border-bottom-color: rgba(0,212,255,.35);
}

/* ── Stat & contact cards — cyber left-border pulse ── */
.stat-card,
.contact-card {
    border-left: 2px solid var(--neon-blue);
}

.stat-card:hover,
.contact-card:hover {
    border-left-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(191,95,255,.15), -4px 0 12px rgba(191,95,255,.2);
}

/* ── Cyber featured block — double top bar ── */
.category-featured {
    border-top: 1px solid rgba(0,212,255,.4);
}

/* ── Body: subtle noise texture ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.4;
}

/* ===================================================
   SCROLL FADE-IN
=================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   KEYFRAMES
=================================================== */
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0);    }
}

@keyframes fadeInScale {
    from { opacity:0; transform:scale(.95) translateY(10px); }
    to   { opacity:1; transform:scale(1)   translateY(0);    }
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(0,212,255,.9), 0 0 25px rgba(0,212,255,.6), 0 0 50px rgba(0,212,255,.35); }
    50%       { text-shadow: 0 0 20px rgba(0,212,255,1),  0 0 50px rgba(0,212,255,.8), 0 0 90px rgba(0,212,255,.5), 0 0 130px rgba(0,212,255,.3); }
}

@keyframes neonFlicker {
    0%,18%,20%,50%,52%,80%,82%,100% {
        text-shadow: var(--glow-blue);
        opacity: 1;
    }
    19%,51%,81% {
        text-shadow: none;
        opacity: .75;
    }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%       { transform: translateY(-50%) translateX(20px); }
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: var(--glow-green); }
    50%       { box-shadow: 0 0 22px rgba(0,255,136,1), 0 0 45px rgba(0,255,136,.7), 0 0 70px rgba(0,255,136,.4); }
}

@keyframes blink {
    0%, 100% { opacity:1; }
    50%       { opacity:.3; }
}

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

/* ===================================================
   RESPONSIVE — TABLET (≤ 960px)
=================================================== */
@media (max-width: 960px) {
    .about-content  { grid-template-columns: 1fr; gap: 44px; }
    .contact-grid   { grid-template-columns: 1fr; }
    .map-container iframe { height: 300px; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
=================================================== */
@media (max-width: 768px) {
    /* Mobile nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0; right: 0; bottom: 0;
        background: rgba(4,4,4,.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-link { font-size: 1.6rem; }

    .hamburger { display: flex; }

    /* Products */
    .category-featured { padding: 28px 18px; }

    .featured-grid { grid-template-columns: 1fr; gap: 18px; }

    .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }

    .product-image { height: 150px; }
    .featured-card .product-image { height: 175px; }

    /* About */
    .about-text p { font-size: 1rem; }

    /* Contact */
    .map-container iframe { height: 260px; }

    .floating-badge { bottom: 30px; }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
=================================================== */
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }

    .btn { width: 100%; max-width: 290px; text-align: center; }

    .age-gate-content { padding: 36px 20px; }

    .age-gate-buttons { flex-direction: column; align-items: center; }

    .btn-yes, .btn-no { width: 100%; max-width: 260px; }

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

    .category-title { font-size: 1.7rem; }

    .thca-title { font-size: 2.1rem !important; }
}
