/* Custom navbar height */
body .header-section {
    height: 70px !important;
    min-height: 70px !important;
    background: #000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 50px !important;
}

/* Logo */
body .header-section .site-logo {
    padding-right: 80px !important;
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
}

body .header-section .site-logo img {
    height: 35px !important;
    width: auto !important;
    display: block !important;
}

body .header-section .site-logo h4 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 70px !important;
}

/* Navigation */
body .header-section .main-menu {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    height: 70px !important;
    align-items: center !important;
}

body .header-section .main-menu ul {
    display: flex !important;
    list-style: none !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    align-items: center !important;
}

body .header-section .main-menu ul li {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

body .header-section .main-menu ul li a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    padding: 8px 20px !important;
    border-radius: 3px !important;
    transition: 0.2s !important;
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
    line-height: 40px !important;
}

body .header-section .main-menu ul li a.active {
    background: #ffc61a !important;
    color: #000 !important;
}

body .header-section .main-menu ul li a:hover:not(.active) {
    color: #ffc61a !important;
}

/* Cart */
body .header-section .nav-right {
    margin-left: 60px !important;
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
}

body .header-section .nav-right .cart-link {
    color: #ffc61a !important;
    text-decoration: none !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
    padding: 0 15px !important;
}

body .header-section .nav-right .cart-link i {
    font-size: 25px !important;
}

body .header-section .nav-right .cart-link .cart-count {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    background: #ffc61a !important;
    color: #000 !important;
    border-radius: 50% !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 11px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    body .header-section {
        padding: 0 15px !important;
    }
    
    body .header-section .main-menu, 
    body .header-section .nav-right {
        display: none !important;
    }
    
    body .header-section .slicknav_menu {
        display: block !important;
    }
    
    body .header-section .slicknav_btn {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }
    
    body .header-section .slicknav_nav {
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: #000 !important;
        padding: 10px 0 !important;
    }
    
    body .header-section .slicknav_nav a {
        color: #fff !important;
        padding: 8px 15px !important;
        display: block !important;
        height: auto !important;
    }
    
    body .header-section .slicknav_nav a:hover,
    body .header-section .slicknav_nav a.active {
        background: #ffc61a !important;
        color: #000 !important;
    }
}

/* Content spacing */
body {
    padding-top: 70px !important;
}

/* Adjust dropdown positioning for the new navbar height */
header .navbar .nav > li > .dropdown-menu {
    margin-top: 0 !important;
}

/* Adjust the logo container */
header .logo {
    height: 70px !important;
}

/* Adjust the rightside content to account for new navbar height */
.rightside {
    padding-top: 70px !important;
}

/* Adjust fixed positioning */
.fixed-header > header,
.fixed > header {
    height: 70px !important;
} 