/* =====================================================
   UNIVERSAL RESET
===================================================== */

*
{
    margin: 0;

    padding: 0;

    box-sizing: border-box;
}

/* BODY */

body
{
    font-family: Inter, sans-serif;

    background-color: #050507;

    color: #FFFFFF;

    overflow-x: hidden;

    line-height: 1.6;
}


body.loading .siteLoader
{
    opacity:1;

    visibility:visible;
}


html
{
    overflow-y: scroll;

    overflow-x: hidden;

    scroll-behavior: smooth;
}

body.ageLocked
{
    overflow: hidden;
}


/* =====================================================
   AGE GATE
===================================================== */


 .ageGate
{
    position: fixed;

    inset: 0;  

    width: 100vw;
    
    height: 100dvh;

    z-index: 99999;

    display: flex;
    
    align-items: center;
    
    justify-content: center;

    background:
        radial-gradient(circle at 20% 20%, #2a0644, #050507 70%);

}

/* CARD */

.ageGateCard
{
    width: min(92%, 480px);

    padding: 52px 48px;

    border-radius: 26px;

    text-align: center;

    background: rgba(10,10,18,.96); 

    border: 1px solid rgba(255,255,255,.05);

    box-shadow:
        0 25px 70px rgba(0,0,0,.75);
}

.ageGateCard *
{
    position: relative;

    
    text-shadow: none;
}

.ageGateCard::before
{
    content:"";

    position:absolute;

    inset:0;

    border-radius:26px;

    padding:1px;

    background:linear-gradient
    (
        120deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.02)
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;
}

/* LOGO */

.ageGateBadge
{
    display:block;

    font-family: Orbitron, sans-serif;
    
    font-weight: bolder;           

    font-size: 1.75rem;
    
    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 28px;

    
    background: linear-gradient(90deg, #CC18F5 0%, #00FFA7 100%);
    
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;

    border:none;

    pointer-events:none;
}


/* BRAND */

.ageGateBrand
{
    margin-bottom: 26px;
}

/* main logo text */

.logoMain
{
    font-family: Orbitron, sans-serif;

    font-weight: 600;

    font-size: clamp(32px, 4vw, 44px);

    letter-spacing: .5px;

    color: #FFFFFF;
}

/* neon accent */

.logoMain span
{
    color: #CC18F5;

    text-shadow: 0 0 10px rgba(204,24,245,.45);
}

/* TITLE */

.ageGateCard h2
{
    font-family: Orbitron;

    font-size: 40px;

    color: #CC18F5;

    text-shadow: 0 0 10px rgba(204,24,245,.28);

    margin-bottom: 14px;
}

/* TEXT */

.ageGateCard p
{
    opacity: .72;

    line-height: 1.6;

    margin-bottom: 38px;
}

/* BUTTON ROW */

.ageGateButtons
{
    display: flex;

    gap: 14px;
}

/* LOADING TEXT */

.ageGateLoading
{
    margin-top: 35px;

    font-size:.9rem;

    letter-spacing:1px;

    opacity:.75;

}

.ageGateLoading span
{
    opacity:0;

    animation: loadingDots 1.4s infinite;
}

.ageGateLoading span:nth-child(1)
{
    animation-delay:.2s;
}

.ageGateLoading span:nth-child(2)
{
    animation-delay:.4s;
}

.ageGateLoading span:nth-child(3)
{
    animation-delay:.6s;
}

@keyframes loadingDots
{
    0%{opacity:0;}

    50%{opacity:1;}

    100%{opacity:0;}
}


/* YES BUTTON */

.ageYes
{
    flex: 1;

    padding: 15px;

    border-radius: 40px;

    border: none;

    font-weight: 600;

    cursor: pointer;

    background: #00FFA7;

    color: #000;

    box-shadow: 0 6px 18px rgba(0,255,167,.28);

    transition: transform .2s ease, box-shadow .2s ease;
}

.ageYes:hover
{
    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(0,255,167,.35);
}

/* NO BUTTON */

.ageNo
{
    flex: 1;

    padding: 15px;

    border-radius: 40px;

    border: 1.5px solid #00FFA7;

    background: transparent;

    color: #fff;

    cursor: pointer;

    transition: transform .2s ease, border-color .2s ease;
}

.ageNo:hover
{
    transform: translateY(-2px);

    border-color: #ff4dc4;
}

/* =====================================================
   NAV
===================================================== */

.NAV
{
    position: fixed;

    top: 0;

    left: 20px;

    width: calc(100% - 40px);

    height: 72px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 8%;

    background: rgba(8, 8, 18, 0.55);

    backdrop-filter: blur(18px);

    z-index: 3000;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(204, 24, 245, 0.08);

    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.NAV::after
{
    content: "";

    position: absolute;

    left: 50%;

    bottom: -1px;

    transform: translateX(-50%);

    width: min(1200px, 92%);

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(255, 70, 190, 0.45), transparent);

    filter: blur(0.6px);

    opacity: 0.6;
}

.NAV::before
{
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 60%);
}

/* =====================================================
   LOGO
===================================================== */

.LOGO
{
    display: flex;

    align-items: center;

    line-height: 1;

    font-family: Orbitron, sans-serif;

    font-weight: 600;

    color: #FFFFFF;

    text-decoration: none;

    letter-spacing: 0.5px;
}

.LOGO:visited,
.LOGO:hover,
.LOGO:active
{
    color: #FFFFFF;

    text-decoration: none;
}

.LOGO span
{
    color: #CC18F5;

    text-shadow: 0 0 10px #CC18F5;
}

/* =====================================================
   NAV LINKS
===================================================== */

.navLinks
{
    display: flex;

    align-items: center;

    justify-content: center;

    gap: clamp(12px, 2vw, 30px);

    flex: 1;

    white-space: nowrap;
}

.navLinks a
{
    text-decoration: none;

    color: rgba(255, 255, 255, 0.75);

    transition: 0.3s;

    opacity: 0.5;

    font-size: clamp(14px, 1.05vw, 20px);
}

.navLinks a:hover
{
    color: #FFFFFF;

    opacity: 1;
}

.navLinks a.active
{
    color: #CC18F5;

    opacity: 1;

    text-shadow: 0 0 12px rgba(204, 24, 245, 0.35);

    position: relative;
}

.navLinks a.active::after
{
    content: "";

    position: absolute;

    bottom: -6px;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    height: 2px;

    background: #CC18F5;

    box-shadow: 0 0 10px #CC18F5;
}

/* NAV DROPDOWN */

.navDropdown
{
    position: relative;

    display: flex;

    align-items: center;

    isolation: isolate;

    cursor: pointer;
}

.navDropdownTrigger
{
    background: none;

    border: none;

    outline: none;

    color: rgba(255, 255, 255, 0.75);

    opacity: 0.5;

    font-size: clamp(14px, 1.05vw, 20px);

    cursor: pointer;

    transition: 0.3s;

    font-family: inherit;

    padding: 0;
}

.navDropdownTrigger:hover
{
    color: #FFFFFF;

    opacity: 1;
}

.navDropdownMenu
{
    position: absolute;

    top: 150%;

    left: 50%;

    transform: translateX(-50%) translateY(10px);

    min-width: 220px;

    padding: 12px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    background: rgba(10, 10, 18, 0.75);

    backdrop-filter: blur(18px);

    border: none;

    border-radius: 18px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(204, 24, 245, 0.12);

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navDropdownMenu::before
{
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 18px;

    padding: 1px;

    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}

.navDropdown:hover .navDropdownMenu
{
    opacity: 1;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

.navDropdownMenu a
{
    padding: 12px 18px;

    text-decoration: none;

    color: rgba(255, 255, 255, 0.75);

    transition: 0.25s;
}

.navDropdownMenu a:hover
{
    color: white;

    background: linear-gradient(90deg, rgba(255, 60, 180, 0.18), rgba(204, 24, 245, 0.08));

    box-shadow: 0 0 14px rgba(255, 60, 180, 0.24);

    transform: translateX(2px);
}

.navDropdown::after
{
    content: "";

    position: absolute;

    top: 5px;

    left: 0;

    right: 0;

    height: 30px;

    background: transparent;
}

/* =====================================================
   CALL BUTTON
===================================================== */

.callBTN
{
    padding: 10px 22px;

    min-width: 44px;

    min-height: 44px;

    text-decoration: none;

    border-radius: 40px;

    background: #00FFA7;

    color: #000000;

    font-weight: 600;

    box-shadow: 0 0 18px rgba(0, 255, 167, 0.35);

    transition: 0.3s;

    display: flex;

    align-items: center;

    justify-content: center;
    

    flex-shrink: 0;
}

.callBTN:hover
{
    transform: translateY(-2px);

    box-shadow: 0 0 28px #00FFA7;

    color: #CC18F5;
}

.phoneIcon
{
    display: none;
    border-radius: 50%;
}

.phoneIcon svg
{
    stroke: #CC18F5;   /* neon pink */
}

/* =====================================================
   HAMBURGER BUTTON
===================================================== */

.hamburgerBTN
{
    display: none;

    position: relative;

    width: 44px;

    height: 44px;

    border: none;

    background: transparent;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    flex-shrink: 0;

    touch-action: manipulation;

    overflow: visible;
}

.hamburgerBTN span
{
    position: absolute;

    left: 0;

    right: 0;
    
    margin: auto;

    width: 26px;

    height: 3px;

    background: #00FFA7;

    border-radius: 3px;

    box-shadow: 0 0 10px rgba(0, 255, 167, 0.35);

    transform-origin: center;

    transition:
        top 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        background 0.25s,
        box-shadow 0.25s;
}

.hamburgerBTN span:nth-child(1) { top: 14px; }

.hamburgerBTN span:nth-child(2) { top: 21px; }

.hamburgerBTN span:nth-child(3) { top: 28px; }

.hamburgerBTN:hover span
{
    box-shadow: 0 0 18px #00FFA7;
}

.hamburgerBTN.active span:nth-child(1)
{
    top: 21px;

    transform: rotate(45deg);

    background: #CC18F5;

    box-shadow: 0 0 18px #CC18F5;

    animation: navXGlow 3s ease-in-out infinite alternate;
}

.hamburgerBTN.active span:nth-child(2)
{
    opacity: 0;
}

.hamburgerBTN.active span:nth-child(3)
{
    top: 21px;

    transform: rotate(-45deg);

    background: #CC18F5;

    box-shadow: 0 0 18px #CC18F5;

    animation: navXGlow 3s ease-in-out infinite alternate;
}

@keyframes navXGlow
{
    0%
    {
        background: #ff4dc4;

        box-shadow: 0 0 12px rgba(255, 77, 196, 0.55);
    }

    50%
    {
        background: #4fd1ff;

        box-shadow: 0 0 16px rgba(79, 209, 255, 0.65);
    }

    100%
    {
        background: #00FFA7;

        box-shadow: 0 0 18px rgba(0, 255, 167, 0.35);
    }
}

/* =====================================================
   FLOATING PILLS
===================================================== */

.addressPill
{
    position: fixed;

    top: 90px;

    right: 20px;

    padding: 10px 18px;

    border-radius: 40px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    font-size: 0.85rem;

    white-space: nowrap;

    text-decoration: none;

    color: #FFFFFF;

    transition: 0.25s;

    z-index: 999;
}

.ratingPill
{
    position: fixed;

    top: 90px;

    left: 20px;

    padding: 10px 18px;

    border-radius: 40px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    font-size: 0.85rem;

    white-space: nowrap;

    text-decoration: none;

    color: #FFFFFF;

    transition: 0.25s;

    z-index: 999;
}

.addressCompact,
.ratingCompact
{
    display: none;
}

.addressPill:hover
{
    transform: translateY(-2px);

    box-shadow: 0 0 12px #CC18F5;
}

.ratingPill:hover
{
    transform: translateY(-2px);

    box-shadow: 0 0 14px #00FFA7;
}

.pillsHidden .addressPill,
.pillsHidden .ratingPill
{
    opacity: 0;

    transform: translateY(-10px);

    pointer-events: none;
}

/* =====================================================
   HERO SECTION
===================================================== */

.heroSection
{
    position: relative;

    min-height: 100dvh;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding-top: 80px;

    background:
        radial-gradient(circle at 20% 20%, #360F5A, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.2), transparent 40%);
}

.heroContent
{
    max-width: 800px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 24px;
}

.heroContent h1
{
    font-size: clamp(44px, 5vw, 64px);

    line-height: 1.1;

    margin-bottom: 10px;
}

.heroAccent
{
    color: #CC18F5;

    text-shadow: 0 0 20px rgba(204, 24, 245, 0.35);
}

.heroInfo
{
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.heroSub
{
    font-size: 18px;

    opacity: 0.6;

    letter-spacing: 0.5px;

    margin-top: 10px;
}

.heroHours
{
    font-weight: 600;

    color: #00FFA7;

    text-shadow: 0 0 10px rgba(0, 255, 167, 0.35);

    margin-top: 8px;

    margin-bottom: 30px;
}

/* HERO BUTTONS */

.heroButtons
{
    position: absolute;

    bottom: calc(85px + env(safe-area-inset-bottom));

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    white-space: nowrap;

    flex-wrap: nowrap;
}

.desktopText { display: inline; }

.mobileText  { display: none; }

/* =====================================================
   GLOBAL BUTTONS
===================================================== */

.glowBTN
{
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: clamp(12px, 1.6vw, 15px) clamp(26px, 4vw, 40px);

    background: #CC18F5;

    color: #FFFFFF;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow: 0 0 20px rgba(204, 24, 245, 0.35);

    border: 2px solid #CC18F5;

    width: fit-content;

    margin-inline: auto;
}

.glowBTN:hover
{
    transform: translateY(-3px);

    box-shadow: 0 0 30px #CC18F5;
}

.ghostBTN
{
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    white-space: nowrap;

    padding: clamp(12px, 1.6vw, 15px) clamp(26px, 4vw, 40px);

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    color: rgba(255, 255, 255, 0.88);

    background: transparent;

    border: 2px solid #CC18F5;

    width: fit-content;

    margin-inline: auto;

    transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ghostBTN:hover
{
    transform: translateY(-3px);

    border-color: #00FFA7;

    box-shadow: 0 0 18px rgba(0, 255, 167, 0.35);
}

.ghostBTN svg,
.ghostBTN i
{
    width: 20px;

    height: 20px;

    flex-shrink: 0;

    stroke: currentColor;

    transition: stroke 0.25s ease, transform 0.25s ease;
}

.ghostBTN:hover svg
{
    stroke: #00FFA7;

    transform: scale(1.12);
}

/* =====================================================
   STOREFRONT SECTION
===================================================== */

.storefrontSection
{
    position: relative;

    height: clamp(500px, 100vh, 900px);

    padding-top: 80px;

    overflow: hidden;
}

.storeBg
{
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center 10%;

    z-index: 0;

    display: block;
}

.storefrontSection::after
{
    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at 50% 15%, rgba(204, 24, 245, 0.14), transparent 60%);

    z-index: 2;
}

.heroGradient
{
    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom, rgba(5, 5, 7, 0.05) 0%, rgba(5, 5, 7, 0.45) 40%, rgba(5, 5, 7, 0.92) 100%);

    z-index: 1;
}

/* STORE OVERLAY */

.storeOverlay
{
    max-width: 560px;

    width: min(90%, 560px);

    position: absolute;

    top: 55%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    z-index: 5;
}

.storeKicker
{
    letter-spacing: 4px;

    font-size: 13px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.7);

    margin-bottom: 16px;
}

.storeOverlay h2
{
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    margin-bottom: 20px;

    color: #FFFFFF;
}

.storeAccent
{
    color: #FFFFFF;

    font-weight: 700;
}

.storeSub
{
    font-size: 18px;

    opacity: 0.75;

    max-width: 480px;

    margin: 0 auto;
}

/* FLOATING CARDS */

.heroCards
{
    position: absolute;

    left: 0;

    bottom: 60px;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    padding: 0 clamp(20px, 6vw, 90px);

    z-index: 4;

    pointer-events: none;
}

.heroCard
{
    width: fit-content;

    max-width: 90%;

    flex-shrink: 0;

    padding: 28px;

    border-radius: 20px;

    backdrop-filter: blur(14px);

    background: linear-gradient(160deg, rgba(204, 24, 245, 0.18), rgba(0, 255, 167, 0.12));

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #FFFFFF;

    font-weight: 600;

    font-size: clamp(16px, 1vw, 18px);

    letter-spacing: 0.5px;

    line-height: 1.2;

    white-space: nowrap;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);

    position: relative;

    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);

    pointer-events: auto;
}

.heroCard::before
{
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 20px;

    padding: 1px;

    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}

.heroCard:hover
{
    transform: translateY(-12px) scale(1.02);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(204, 24, 245, 0.12);
}

/* =====================================================
   SHARED SECTION STYLES
===================================================== */

.aboutSection,
.categoriesSection,
.reviewsSection,
.findUsSection
{
    padding: 120px clamp(20px, 5vw, 80px);
 
    text-align: center;

    scroll-margin-top: 120px;
}

.sectionTitle
{
    font-family: Orbitron;

    font-size: 36px;

    margin-bottom: 60px;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.aboutSection
{
    background: linear-gradient(180deg, #070710 0%, #050507 100%);
}

.aboutGrid
{
    max-width: 900px;

    margin: 0 auto 80px auto;
}

.aboutIntro p
{
    line-height: 1.8;

    margin-bottom: 24px;

    opacity: 0.85;

    font-size: 18px;
}

/* OWNER SECTION */

.ownerSection
{
    display: grid;

    grid-template-columns: 0.9fr 1.5fr;

    gap: 60px;

    align-items: center;

    max-width: 1100px;

    margin: 0 auto;
}

.ownerImage
{
    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}

.ownerImage::after
{
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 24px;

    background: radial-gradient(circle at 30% 20%, rgba(204, 24, 245, 0.2), transparent 60%);

    z-index: -1;
}

.ownerPhoto
{
    width: 100%;

    max-width: 360px;

    height: auto;

    border-radius: 24px;

    object-fit: cover;

    display: block;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 0 40px rgba(204, 24, 245, 0.15);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ownerPhoto:hover
{
    transform: translateY(-6px);

    box-shadow:
        0 0 30px rgba(204, 24, 245, 0.25),
        0 0 60px rgba(204, 24, 245, 0.15);
}

.ownerAccent
{
    color: #CC18F5;

    text-shadow: 0 0 12px rgba(204, 24, 245, 0.35);
}

.ownerContent h3
{
    font-family: Orbitron;

    font-size: 28px;

    margin-bottom: 20px;

    letter-spacing: -0.5px;

    font-size: clamp(20px, 2.4vw, 28px);
}

.ownerContent p
{
    line-height: 1.8;

    margin-bottom: 18px;

    opacity: 0.85;
}

.ownerSignature
{
    margin-top: 30px;

    color: #CC18F5;

    text-shadow: 0 0 10px rgba(204, 24, 245, 0.35);

    font-weight: 600;
}

/* =====================================================
   CATEGORIES SECTION
===================================================== */

.categoriesSection
{
    background: #070710;

    position: relative;

    overflow: hidden;
}

.categoryGrid
{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 40px;

    margin-top: 60px;

    margin-bottom: 70px;
}

/* CATEGORY CARD */

.categoryCard
{
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 40px;

    height: 320px;

    border-radius: 24px;

    text-decoration: none;

    color: #FFFFFF;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: linear-gradient(160deg, #0a0a14, #050507);

    transition: transform .25s ease, box-shadow .25s ease;
}

.categoryOverlay
{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.2) 70%
    );

    z-index: 1;
}


.categoryCard img
{
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 0;

    opacity: 1;

    filter: blur(1px);

    transform: scale(1.05); 

    transition: transform 0.4s ease;}

.categoryCard h3
{
    font-family: Orbitron;

    font-size: 24px;

    margin-bottom: 10px;

    position: relative;

    z-index: 2;

    color: #FFFFFF;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 8px 18px rgba(0, 0, 0, 0.85),
        0 18px 38px rgba(0, 0, 0, 0.75);
}

.categoryCard p
{
    opacity: 0.7;

    position: relative;

    z-index: 2;
}

.categoryCard::after
{
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 55%;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);

    z-index: 1;
}

.categoryCard:hover
{
    transform: translateY(-6px);

    border-color: #00FFA7;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);

    background: transparent;
}

.categoryCard:hover .categoryOverlay
{
    opacity: 0.45;
}

.categoriesBTN
{
    margin-top: 20px;
}

/* =====================================================
   REVIEWS SECTION
===================================================== */

.reviewsSection
{
    background: linear-gradient(180deg, #050507 0%, #080812 100%);

    position: relative;
}

.reviewsHeader
{
    text-align: center;

    max-width: 900px;

    margin: auto;

    margin-bottom: 70px;
}

.googleBadge
{
    letter-spacing: 3px;

    font-size: 18px;

    color: #CC18F5;

    margin-bottom: 70px;
}

.reviewsTitle
{
    font-size: 42px;

    margin-top: 0;

    margin-bottom: 60px;
}

.reviewsTop
{
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 60px;
}

.reviewsScore
{
    display: flex;

    flex-direction: column;

    align-items: center;
}

.bigRating
{
    font-size: 64px;

    font-weight: 700;
}

.ratingStars
{
    color: #FFD43B;

    font-size: 22px;

    margin: 6px 0;
}

.ratingSub
{
    opacity: 0.7;

    font-size: 14px;
}

/* REVIEW GRID */

.reviewsGrid
{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 32px;
}

/* REVIEW CARD */

.reviewCard
{
    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(6px);

    padding: 28px;

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.3s;
}

.reviewCard:hover
{
    transform: translateY(-8px);

    border-color: rgba(204, 24, 245, 0.4);
}

.reviewStars
{
    color: #FFD43B;

    font-size: 18px;

    margin-bottom: 10px;
}

.reviewText
{
    line-height: 1.7;

    opacity: 0.9;
}

.reviewAuthor
{
    margin-top: 16px;

    font-weight: 600;

    opacity: 0.85;
}

/* WAVE BADGE */

.waveBadgeText
{
    display: inline-block;
}

.waveBadgeText span
{
    display: inline-block;

    animation: badgeWaveJump 1.6s ease-in-out infinite;

    text-shadow: 0 0 8px rgba(204, 24, 245, 0.6);
}

.waveBadgeText span:nth-child(1)  { animation-delay: 0s; }
.waveBadgeText span:nth-child(2)  { animation-delay: 0.05s; }
.waveBadgeText span:nth-child(3)  { animation-delay: 0.1s; }
.waveBadgeText span:nth-child(4)  { animation-delay: 0.15s; }
.waveBadgeText span:nth-child(5)  { animation-delay: 0.2s; }
.waveBadgeText span:nth-child(6)  { animation-delay: 0.25s; }
.waveBadgeText span:nth-child(7)  { animation-delay: 0.3s; }
.waveBadgeText span:nth-child(8)  { animation-delay: 0.35s; }
.waveBadgeText span:nth-child(9)  { animation-delay: 0.4s; }
.waveBadgeText span:nth-child(10) { animation-delay: 0.45s; }
.waveBadgeText span:nth-child(11) { animation-delay: 0.5s; }
.waveBadgeText span:nth-child(12) { animation-delay: 0.55s; }
.waveBadgeText span:nth-child(13) { animation-delay: 0.6s; }
.waveBadgeText span:nth-child(14) { animation-delay: 0.65s; }

@keyframes badgeWaveJump
{
    0%   { transform: translateY(0); }

    25%  { transform: translateY(-8px); }

    50%  { transform: translateY(0); }

    100% { transform: translateY(0); }
}

/* =====================================================
   FIND US SECTION
===================================================== */

.findUsSection
{
    background: linear-gradient(180deg, #070710 0%, #050507 100%);

    position: relative;
}

.findUsSection::before
{
    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at 50% 20%, rgba(204, 24, 245, 0.12), transparent 60%);

    pointer-events: none;
}

.findUsSub
{
    max-width: 620px;

    margin: auto;

    margin-bottom: 60px;

    opacity: 0.75;

    font-size: 18px;

    line-height: 1.6;
}

.radioGrid
{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 22px;

    max-width: 900px;

    margin: auto;
}

.radioCard
{
    position: relative;

    padding: 22px;

    border-radius: 18px;

    cursor: pointer;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(6px);

    transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.radioCard:hover
{
    transform: translateY(-4px);

    border-color: #00FFA7;

    box-shadow: 0 0 18px rgba(0, 255, 167, 0.18);
}

.radioCard input
{
    position: absolute;

    opacity: 0;
}

.radioCard input:checked + span
{
    color: white;
}

.radioCard:has(input:checked)
{
    border-color: #CC18F5;

    box-shadow:
        0 0 20px rgba(204, 24, 245, 0.35),
        0 0 40px rgba(204, 24, 245, 0.18);

    transform: scale(0.97);
}

.findUsCTAs
{
    margin-top: 70px;

    display: flex;

    gap: 18px;

    justify-content: center;

    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
===================================================== */

.FOOTER
{
    background: #070710;

    padding: 80px 8% 40px;

    position: relative;
}

.FOOTER::before
{
    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: min(1200px, 92%);

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.footerContainer
{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 48px;

    justify-items: start;

    align-items: start;

    padding-bottom: 50px;
}

.footerContainer > div
{
    width: fit-content;
}

.footerBrand,
.footerHours,
.footerLinks,
.footerLegal
{
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 1.9;

    padding: 4px 0;

    gap: 8px;
}

.footerBrand p
{
    max-width: 220px;

    opacity: 0.75;
}

.footerContainer h4
{
    text-decoration: underline;

    margin-bottom: 12px;
}

.footerContainer a
{
    display: block;

    text-decoration: none;

    color: rgba(255, 255, 255, 0.75);

    opacity: 0.5;

    padding: 3px 0;

    transition: 0.25s ease;
}

.footerContainer a:hover
{
    color: #FFFFFF;

    opacity: 1;
}

.footerSocials
{
    margin-top: 18px;

    display: flex;

    gap: 14px;
}

.footerSocials a
{
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: rgba(255, 255, 255, 0.7);

    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.footerBottom
{
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding-top: 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.85rem;
}

.devCredit
{
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(255,255,255,.55);
}

.devLink
{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.devLink img
{
    height: 38px;   /* MUCH more professional than 120px */
    width: auto;

    opacity: .7;
    transition: opacity .25s ease, transform .25s ease;
}

/* subtle premium hover */
.devLink:hover img
{
    opacity: 1;
    transform: translateY(-1px);
}

/* TEXT */

.devLabel
{
    font-size:.7rem;

    letter-spacing:2px;

    text-transform:uppercase;

    color:rgba(255,255,255,.55);

    white-space:nowrap;

}

/* LOGO — PURE */

.devCredit img
{
    height: 120px;  
    
    width:auto;

    display:block;

    filter:none;     

    transition:none; 
}

/* NUCLEAR OPTION — disables ANY inherited hover */

.devCredit:hover,
.devCredit img:hover
{
    transform:none;

    filter:none;

    opacity:1;
}


/* =====================================================
   MOBILE MENU PANEL
===================================================== */

.mobileMenu
{
    position: fixed;

    inset: 0;

    width: 100%;

    height: 100vh;

    background: #000000;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translateY(-100%);

    will-change: transform;

    transform: translateY(-100%) translateZ(0);

    transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);

    z-index: 1100;
}

.mobileMenu.active
{
    transform: translateY(0);
}

.mobileMenuInner
{
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;

    text-align: center;
}

.mobileMenuInner a
{
    font-family: Orbitron;

    font-size: 22px;

    letter-spacing: 2px;

    text-decoration: none;

    color: #FFFFFF;

    position: relative;

    padding: 4px 10px;

    transition: 0.35s ease;
}

.mobileMenuInner a:not(.mobileCallBtn)::after
{
    content: "";

    position: absolute;

    bottom: -8px;

    left: 50%;

    transform: translateX(-50%);

    width: 0%;

    height: 2px;

    background: #CC18F5;

    box-shadow: 0 0 15px #CC18F5;

    transition: 0.35s ease;
}

.mobileMenuInner a:hover
{
    color: #CC18F5;

    text-shadow: 0 0 15px rgba(204, 24, 245, 0.35);
}

.mobileMenuInner a:not(.mobileCallBtn):hover::after
{
    width: 100%;
}

.mobileMenuInner a.active
{
    color: #CC18F5;

    opacity: 1;

    text-shadow: 0 0 12px rgba(204, 24, 245, 0.35);

    position: relative;
}

/* MOBILE CALL BUTTON */

.mobileCallBtn
{
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 72px;

    height: 72px;

    border-radius: 50%;

    background: #00FFA7;

    box-shadow:
        0 0 18px rgba(0, 255, 167, 0.35),
        0 0 40px rgba(0, 255, 167, 0.25);

    transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobileCallBtn svg
{
    width: 30px;

    height: 30px;

    stroke: #CC18F5;

    stroke-width: 2.6;
}

.mobileCallBtn:hover
{
    transform: translateY(-6px) scale(1.06);

    box-shadow:
        0 0 28px #00FFA7,
        0 0 60px rgba(0, 255, 167, 0.35);
}

.mobileCallBtn:active
{
    transform: scale(0.94);
}

.mobileCallBtn::after
{
    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(0, 255, 167, 0.18), transparent 70%);

    z-index: -1;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (hover: none)
{
    .categoryCard:active
    {
        transform: scale(0.97);

        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.35),
            0 0 22px rgba(0, 255, 167, 0.18);
    }
}

@media screen and (max-width: 1200px)
{
    .heroCards
    {
        display: none;
    }

}

@media screen and (max-width: 1000px)
{
    .storeBg
    {
        object-position: center 18%;
    }

    .storeOverlay
    {
        top: 48%;
    }
}

@media screen and (max-width: 960px)
{

    .navLinks
    {
        display: none;
    }

    .callBTN
    {
        display: none;
    }

    .hamburgerBTN
    {
        display: flex;

        width: 44px;

        height: 44px;

        align-items: center;

        justify-content: center;
    }

    .heroButtons
    {
        position: flex;
        bottom: auto;
        margin-top: 32px;
        left: auto;
        transform: none;
    }

    .addressPill
    {
        right: 34px;
    }


    .navDropdown
    {
        display: none;
    }

    .heroButtons
    {
        bottom: calc(100px + env(safe-area-inset-bottom));
    }

    .phoneText
    {
        display: none;
    }

    .phoneIcon
    {
        display: block;
    }

    .phoneIcon svg
    {
        fill: #CC18F5;
        stroke: none;
        width: 22px;
        height: 22px;
    }

    .callBTN
    {
        padding: 10px;

        border-radius: 50%;
    }

    .ownerSection {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .ownerImage
    {
        order: -1;
    }
}

@media screen and (max-width: 900px)
{
    .footerContainer
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 860px)
{
    .storefrontSection
    {
        height: 60vh;
    }

    .storeBg
    {
        object-position: center 15%;
    }

    .storeOverlay
    {
        top: 48%;
    }
}

@media screen and (max-width: 800px)
{
    .addressPill
    {
        top: 90px;

        right: 12px;
    }

    .ratingPill
    {
        top: 90px;

        left: 12px;
    }
}

@media screen and (max-width: 760px)
{
    .navLinks
    {
        display: none;
    }

    .callBTN
    {
        display: none;
    }

    .hamburgerBTN
    {
        display: flex;

        width: 44px;

        height: 44px;

        align-items: center;

        justify-content: center;
    }

    .navDropdown
    {
        display: none;
    }

    .heroButtons
    {
        bottom: calc(100px + env(safe-area-inset-bottom));
    }

    .ownerSection {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media screen and (max-height: 500px)
{
    .heroSection
    {
        min-height: 140vh;
    }

    .heroButtons
    {
        position: relative;
        bottom: auto;
        margin-top: 40px;
    }

    .callBTN
    {
        display: none;
    }

    .phoneIcon
    {
        display: none;
    }

}


@media screen and (max-width: 480px)
{
    .addressFull,
    .ratingFull
    {
        display: none;
    }

    .addressCompact,
    .ratingCompact
    {
        display: inline;
    }

    .ratingPill
    {
        top: 90px;
    }

    .heroButtons .glowBTN,
    .heroButtons .ghostBTN
    {
        flex: 1;
    }

    .ghostBTN svg
    {
        width: 15px;

        height: 15px;

        flex-shrink: 0;
    }

    .desktopText
    {
        display: none;
    }

    .mobileText
    {
        display: inline;
    }

    .ctaArrow
    {
        display: none;
    }

    .ghostBTN
    {
        padding: 12px 18px;
    }

    .categoryCard img
    {
        opacity: 1;
    }

    .categoryOverlay
    {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25), transparent);

        opacity: 1;
    }
}