:root { 
    --op-black: #000000;
    --op-white: #ffffff;
    --op-neon: #c5ff00;
    --op-grey-dark: #111111;
    --op-grey-light: #f5f5f5;
    --op-font-main: 'Inter', sans-serif;
    --op-font-accent: 'Oswald', sans-serif;
    
    --accent: #c3e56f; 
    --accent-glow: rgba(195, 229, 111, 0.4); 
    --bg: #ffffff; 
    --card-light: #f7f7f7; 
    --card-dark: #000000; 
    --text-dark: #000000; 
    --text-light: #ffffff; 
    /* FLUID PADDING: From 60px on mobile to 200px on 4K */
    --inner-px: clamp(20px, 10vw, 200px);
}


* { box-sizing: border-box; }
html { height: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; margin: 0; min-height: 100%; }
body.no-scroll { overflow: hidden; }

.page-content {
    width: 100%;
    position: relative;
    min-height: 100vh;
}

/* --- WHOLESALE GLOBAL HEADER --- */
.op-wholesale-header {
    background: #000;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #111;
}

.op-nav-container {
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.op-nav-logo img {
    height: 40px;
    width: auto;
}

.op-nav-logo span {
    font-family: var(--op-font-accent);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    text-decoration: none;
}

.op-nav-main {
    display: flex;
    gap: 40px;
}

.op-nav-link {
    font-family: var(--op-font-accent);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: 0.3s;
}

.op-nav-link:hover {
    color: var(--op-neon);
}

.op-nav-actions {
    display: flex;
    align-items: center;
}

.op-nav-account {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 10px 20px;
    border: 1px solid #222;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.op-nav-account:hover {
    background: #1a1a1a;
    border-color: #333;
}

.op-nav-account svg {
    width: 16px;
    height: 16px;
    color: var(--op-neon);
}

/* --- ACCOUNT BUTTON (STANDARD HEADER) --- */
.btn-account-round {
    width: 45px;
    height: 45px;
    background: #000;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 15px;
}

.btn-account-round:hover {
    border-color: var(--op-neon);
    background: #111;
}

.btn-account-round svg {
    width: 18px;
    height: 18px;
    transition: 0.3s;
}

.btn-account-round:hover svg {
    color: var(--op-neon);
    transform: scale(1.1);
}

/* SIDE NAVIGATION (Restored for non-shop pages) */
.side-nav {
    position: fixed; right: 40px; top: 50%; transform: translateY(-50%);
    z-index: 900; display: flex; flex-direction: column; gap: 20px;
}
.nav-dot-item {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 15px; text-decoration: none;
}
.nav-label {
    color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; opacity: 0; transform: translateX(10px); transition: 0.4s;
    pointer-events: none;
}
.nav-dot-item:hover .nav-label { opacity: 0.6; transform: translateX(0); }
.nav-dot {
    width: 6px; height: 6px; background: #fff; opacity: 0.2; border-radius: 50%;
    transition: 0.4s;
}
.nav-dot-item:hover .nav-dot, .nav-dot-item.active .nav-dot {
    opacity: 1; transform: scale(1.5); background: var(--op-neon);
    box-shadow: 0 0 15px var(--accent-glow);
}

#preloader { 
    position: fixed; 
    inset: 0; 
    background: #000; 
    z-index: 100000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.preloader-content { display: flex; flex-direction: column; align-items: center; }
.preloader-logo-img { height: 80px; width: auto; object-fit: contain; }
.preloader-text-logo { font-family: 'Oswald', sans-serif; font-size: 8rem; font-weight: 800; color: #fff; letter-spacing: -5px; }
.preloader-hidden { transform: translateY(-100%); pointer-events: none; }

/* 2. SURGICAL CURSOR SYSTEM (DESKTOP) */
#custom-cursor {
    width: 12px; height: 12px; background: #fff; border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 1000000;
    top: 0; left: 0; opacity: 0; transition: opacity 0.3s;
    mix-blend-mode: difference;
}
#custom-cursor.appearing { opacity: 1; }

#cursor-aura {
    width: 0px; height: 0px; background: #fff; border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 999999;
    top: 0; left: 0; opacity: 0; 
    transition: opacity 0.4s, width 0.4s, height 0.4s, border-radius 0.4s;
    display: flex; align-items: center; justify-content: center;
    mix-blend-mode: difference;
}

#cursor-center-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 900; color: #000;
    text-align: center; line-height: 1; opacity: 0; transform: scale(0.8);
    transition: 0.3s; text-transform: uppercase;
    letter-spacing: 2px;
}

#cursor-aura.expand {
    width: 100px; height: 100px; opacity: 1;
}
#cursor-aura.expand #cursor-center-text { opacity: 1; transform: scale(1); }

#cursor-aura.expand-aura {
    width: 40px; height: 40px; opacity: 0.4;
}
/* --- GLOBAL NAVIGATION VISIBILITY ENGINE --- */

/* 1. DESKTOP MODE (Screen > 1024px) */
@media (min-width: 1025px) {
    .hamburger-btn { display: none !important; }
    .mobile-menu-overlay { display: none !important; }
}

/* 2. MOBILE MODE (Screen <= 1024px) */
@media (max-width: 1024px) {
    /* Hide standard horizontal pills and dots */
    .desktop-nav, 
    .desktop-actions, 
    .side-nav { display: none !important; }
    
    /* Ensure hamburger is visible and centered vertically in actions */
    .hamburger-btn { display: flex !important; }
    
    /* Shop (Wholesale) specific mobile clean-up */
    .op-nav-main, 
    .op-nav-actions { display: none !important; }
}

/* Logo visibility is handled in mobile.css */
