
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* Top info bar */
.top-bar {
    background: #6a5c35;
    padding: 8px 4%;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

body::-webkit-scrollbar {
  display: none;
}


/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 1.6rem 38px;
    background: #000;
    position: relative;
    overflow: visible;
    position: relative;
    z-index: 4000;
}

a {
    text-decoration: none;
}



/* Logo + text */
.nav-left {
    display: flex;
    align-items: center;
    /* gap: 12px; */
    transition: opacity 0.4s ease;
    justify-content: flex-start;
    flex: 1;
}

.nav-left a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 3% !important;

}

.logo {
    width: 70px;
    height: 70px;
}

.brand-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(245, 238, 142, 1) 50%, rgba(217, 195, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Nav links */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    gap: 35px;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 1600;
}


.nav-links li {
    cursor: pointer;
    position: relative;
    font-size: 18px;
}

.nav-links .active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #f7d046;
    bottom: -6px;
    left: 0;
}

/* Right icons */
.nav-right {
    position: absolute;
    right: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
}


.search-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
}

.search-icon i {
    font-size: 30px;
}


.cart {
    position: relative;
}

.cart i {
    font-size: 30px;
}


.cart .count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f7d046;
    color: #000;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

/* Search box */
.search-box {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center!important;
    justify-content: center;
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    overflow: hidden;
    /* white-space: nowrap; */
    background: #000;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1500;
}


.search-box input {
    width: 420px;
    height: 52px;
    padding: 0 20px;
    border-radius: 30px 0 0 30px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-box button {
    height: 52px;
    padding: 0 18px;
    border-radius: 0 30px 30px 0;
    border: none;
    background: #f7d046;
    cursor: pointer;
    font-size: 20px;
}


.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-box button {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown base */
.dropdown {
    position: relative;
}

/* Dropdown menu box */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #f5f5f5;
    list-style: none;
    min-width: 240px;
    border-radius: 0px!important;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    pointer-events: auto;
    border: 1px solid #e0e0e0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
}

/* Show dropdown when toggled via JS (open class) - DESKTOP */
.dropdown.open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Dropdown items */
.dropdown-menu li {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    color: #333;
    border-left: 3px solid transparent;
    list-style: none;
}

/* Hover effect - golden background */
.dropdown-menu li:hover {
    background: #f7d046;
    color: #000;
    border-left-color: #f7d046;
    padding-left: 24px;
}




/* ACTIVE SEARCH STATE */


.navbar.search-active .search-wrapper > .search-icon {
    opacity: 0;
    pointer-events: none;
}

.navbar.search-active .nav-links {
    transform: translateX(calc(-50% - 120px));
}



.navbar.search-active .search-box {
    width: 480px;
    opacity: 1;
    pointer-events: auto;
}

.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    /* margin-right: 24px; */
    color: #fff;
}

/* Hide mobile close icon on desktop */
.mobile-close {
    display: none!important;
    visibility: hidden !important;
}

/* Force hide on desktop */
@media (min-width: 993px) {
    .mobile-close {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}


/* ===========================
   RESPONSIVE NAVBAR
=========================== */




/* MOBILE */
/* MOBILE */
@media (max-width: 992px) {

    .top-bar{
        font-size: 12px;
    }

    .navbar {
        padding: 12px 15px;
    }

    .nav-left {
        flex: 1;
        display: flex;
        align-items: center;
        /* gap: 8px; */
        min-width: unset;
        justify-content: center;
    }

    .nav-left a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-left: 0%!important;
        padding-right: 2% !important;
        
    }
    

    .logo {
        width: 50px;
        height: 50px;
    }

    .brand-text {
        font-size: 16px;
        white-space: nowrap;
    }

    .hamburger {
        display: block;
        font-size: 26px;
        cursor: pointer;
        padding-right: 80px!important;
    }

    .hamburger i {
        font-size: 26px;
    }

    .search-icon,
    .search-icon span {
        display: flex;
        align-items: center;
    }

    .search-icon i {
        font-size: 24px;
    }

    .search-icon span {
        font-size: 12px;
        display: none;
    }

    .cart i {
        font-size: 24px;
    }

    .cart .count {
        font-size: 11px;
        padding: 2px 4px;
        top: -6px;
        right: -8px;
    }

    /* Hide desktop nav links - Position as drawer */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 75%;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
        gap: 15px;
        transform: none;
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
    }

    /* Open drawer state */
    .navbar.menu-open .nav-links {
        left: 0;
    }

    /* Close icon styling */
    .mobile-close {
        display: block;
        width: 100%;
        text-align: right;
        font-size: 28px;
        margin-bottom: 15px;
        color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: flex-end;
    }

    .nav-links li {
        font-size: 18px;
        padding: 8px 0;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
    }

    /* Dropdown styling for mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown > a {
        display: flex;
        width: 100%;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        padding: 8px 0;
        transition: all 0.2s ease;
    }
    
    .dropdown.open > a {
        color: #f7d046;
    }

    .dropdown-menu {
        position: static;
        background: #f5f5f5;
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
        list-style: none;
        padding: 8px 0 8px 20px;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e0e0e0;
    }

    .dropdown.open .dropdown-menu {
        max-height: 500px;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 8px 0 8px 20px;
        animation: slideDown 0.3s ease;
        pointer-events: auto !important;
    }
    
    @keyframes slideDown {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .dropdown-menu li {
        padding: 12px 0;
        font-size: 16px;
        color: #333;
        cursor: pointer;
        transition: all 0.2s ease;
        padding-left: 10px;
    }
    
    .dropdown-menu li:hover {
        color: #000;
        background: #f7d046;
        padding-left: 15px;
        border-radius: 4px;
    }

    .dropdown-menu a {
        color: #333;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .dropdown-menu li:hover a {
        color: #000;
    }

    /* Right icons container */
    .nav-right {
        position: static;
        display: flex;
        gap: 12px;
        align-items: center;
        padding-right: 15px;
    }

    /* Search box on mobile */
    .search-box {
        width: 0 !important;
        height: 45px;
    }

    .search-box form input {
        height: 45px;
        font-size: 14px;
    }

    .search-box button {
        height: 45px;
        padding: 0 12px;
    }

    /* Search active state */
    .navbar.search-active .hamburger,
    .navbar.search-active .cart,
    .navbar.search-active .brand-text {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .navbar.search-active .search-box {
        width: calc(100vw - 80px) !important;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar.search-active .search-box form input {
        width: calc(100vw - 110px);
    }

}

@media (max-width: 415px){
    .hamburger{
        padding-right: 30px!important;
    }
}

/* RESET NAV LINK STYLES */
.nav-links a,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active {
    color: #fff;
    text-decoration: none;
}

/* Dropdown parent text */
.dropdown > a span {
    color: #fff;
}

/* Brand link reset */
.nav-left a {
    text-decoration: none;
}

.cart a {
    color: #fff;
    text-decoration: none;
}

.cart a i {
    color: #fff;
}


.difference-1100{
    height: 15px;
    width: 100%;
    background-color: #d6aa30;
    opacity: 1!important;
}



