:root {
    --primary-orange: #FF5A2C;
    --dark-bg: #1a1a1a;
    --light-gray: #f4f4f4;
    --text-white: #ffffff;
    --text-dark: #333333;
    --transition-speed: 0.3s;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary-orange);
    color: var(--text-white);
    padding: 8px 20px;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-link {
    color: var(--text-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.highlight-contact {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    transition: background var(--transition-speed);
}

.highlight-contact:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* --- MAIN NAVBAR --- */
.navbar {
    background-color:white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.brand-logo {
    max-height: 75px; /* Restricts the logo height nicely */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-speed);
   
}



.nav-link:hover {
    color: var(--primary-orange);
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
    display: inline-block;
    transition: transform var(--transition-speed);
}

/* --- DROPDOWNS (DESKTOP) --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    min-width: 260px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
    border-radius: 4px;
    overflow: hidden;
    border-top: 3px solid var(--primary-orange);
}

.dropdown-menu li a {
    color: #4B4B4B;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-orange);
}

.drop-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Desktop Hover Triggers */
@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .has-dropdown:hover .arrow {
        transform: rotate(180deg);
    }
}

.menu-toggle {
    display: none; /* Hidden on desktop, triggered via media queries in responsive.css */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

/* Force the internal hamburger lines to be crisp, solid black */
.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000000 !important;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
   
}

/* ==========================================================================
   DESKTOP GLOBAL HIDDEN STATES (CRITICAL OVERRIDE)
   ========================================================================== */
.header-tagline-ticker {
    display: none !important;
}

/* --- Menu Toggle Helper Indicator --- */
/* --- Menu Toggle Hand Pointer --- */

/* Hide by default on Desktop views */
.menu-hand-pointer {
    display: none;
}

/* Show on Mobile and Tablet screens */
@media screen and (max-width: 1024px) {
    .navbar-container {
        position: relative; /* Context for absolute positioning */
    }

    .menu-hand-pointer {
        display: block !important;
        position: absolute;
        right: 48px; /* Places it precisely to the left side of the toggle lines */
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px; /* Distinct visual pointer size */
        z-index: 1000;
        pointer-events: none; /* Allows clicks to go right through if a user taps it */
        animation: pointAtToggle 1.2s infinite ease-in-out;
    }
}

/* Animation pushing towards the toggle menu button */
@keyframes pointAtToggle {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(6px); /* Bounces directly towards the 3 bars */
    }
}


