@font-face {
    font-family: 'Manrope';
    src: url('../Manrope/Manrope-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {

    --main-color: #000;
    --text-color: #111;
    --font-family: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: #fff;
    background: #ff7631;
    overflow-x: clip;
}

/* ==================== HEADER ==================== */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ff7631;
    /*border-bottom: 1px solid var(--main-color);*/
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 0.6rem 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================== LOGO ==================== */
.navbar-brand img {
    height: 100px;
    width: auto;
    transition: height 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

header.scrolled .navbar-brand img {
    height: 100px;
}

/* ==================== NAVIGATION ==================== */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.nav-link {
    color: #FFF !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #dadada !important;
}

/* ==================== DROPDOWN ==================== */
.dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    min-width: 200px;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: capitalize;
    padding: 10px 20px;
    transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
    background: #f7f7f7;
    color: #000;
}

.dropdown-toggle::after {
    display: none !important;
}

/* ==================== MEGA MENU CSS ==================== */
@media (min-width: 992px) {
    .has-mega-menu {
        position: static !important;
    }
    
    .mega-menu {
        width: 100% !important;
        max-width: 1200px;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: 0 !important;
        padding: 20px 10px; /* Reduced padding on both sides */
        border-radius: 0 0 16px 16px; /* Flat top to connect with navbar */
        box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
        border: 1px solid #f1f1f1;
        border-top: none;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Scrollbar styling for mega menu */
    .mega-menu::-webkit-scrollbar {
        width: 6px;
    }
    .mega-menu::-webkit-scrollbar-thumb {
        background: #e0e0e0;
        border-radius: 4px;
    }
    
    .dropdown:hover>.dropdown-menu.mega-menu {
        transform: translateX(-50%) !important;
    }
}

/* Mega Menu Internal Styling */
.mega-category-block {
    padding: 10px; /* Reduced padding */
    border-radius: 12px;
    transition: background 0.3s ease;
    /* Removed height: 100% so it doesn't stretch and leave empty space */
}

.mega-category-block:hover {
    background: #fcfcfc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.mega-icon-box {
    width: 26px; /* Reduced from 32px */
    height: 26px; /* Reduced from 32px */
    border-radius: 6px; /* Slightly smaller radius */
    background: #fff3eb;
    color: #ff7631;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* Reduced from 14px */
    transition: all 0.3s ease;
}

.mega-category-title:hover .mega-icon-box {
    background: #ff7631;
    color: #fff;
}

.mega-category-title span {
    font-size: 14px; /* Reduced font size for category titles */
    line-height: 1.2;
    transition: color 0.3s ease;
}

.mega-category-title:hover span {
    color: #ff7631 !important;
}

.mega-subcategory-list {
    padding-left: 34px; /* Align with text, skipping the smaller icon */
}

.mega-subcategory-link {
    font-size: 13.5px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.mega-subcategory-link:hover {
    color: #ff7631 !important;
    transform: translateX(4px);
}

/* ==================== ICONS ==================== */
.header-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-left: auto;
}

.header-icons a {
    color: #000;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.header-icons a i{
    color: #FFF;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: #666;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #f5d300;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border: none;
    font-size: 1.4rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==================== MOBILE LAYOUT ==================== */
@media (max-width: 992px) {
    .nav-link {
        color: #000 !important;
    }

    .nav-link:hover {
        color: #414141 !important;
    }

    .navbar {
        padding: 0.6rem 1rem;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    /* Left: Hamburger menu */
    .navbar-toggler {
        justify-self: start;
        padding: 0;
    }

    /* Center: Logo */
    .navbar > .d-flex {
        justify-self: center;
    }

    .navbar-brand {
        justify-self: center;
        margin: 0;
    }

    .navbar-brand img,
    header.scrolled .navbar-brand img {
        height: 50px;
    }

    /* Right: Icons */
    .header-icons {
        justify-self: end;
        margin-left: 0;
        gap: 0.2rem;
    }

    .header-icons a {
        font-size: 1.2rem;
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    /* Mobile dropdown area fix */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
        padding: 1rem;
        z-index: 998;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-link {
        font-size: 15px;
        width: 100%;
    }

    .dropdown-menu {
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0.4rem 0;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown:hover>.dropdown-menu {
        display: none;
    }
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: white;
    position: relative;
    height: 40px;
    overflow: hidden;
}

.announcement-container {
    height: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-align: center;
    position: relative;
}

.announcement-text {
    color: #FFF;
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
    transform: translateY(100%);
}

.arrow-announcement {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.arrow-announcement:hover {
    opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .announcement-container {
        width: 80%;
    }
}

/* 🌈 Custom Toastr Styling */
#toast-container>.toast {
    border-radius: 10px !important;
    padding: 12px 16px 12px 45px !important;
    /* 👈 Add left padding for icon */
    font-size: 15px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    opacity: 0.95 !important;
    background-size: 24px !important;
    /* 👈 Icon size */
    background-repeat: no-repeat !important;
    background-position: 15px center !important;
    /* 👈 Icon position */
    line-height: 1.4 !important;
}

/* ✅ Success Toast */
#toast-container>.toast-success {
    background-color: #27ae60 !important;
    color: #fff !important;
    border-left: 6px solid #1e8449 !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") !important;
}

/* ✅ Info Toast */
#toast-container>.toast-info {
    background-color: #2980b9 !important;
    color: #fff !important;
    border-left: 6px solid #1f618d !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 9h2V7h-2v2zm0 8h2v-6h-2v6zm1-16C6.48 1 2 5.48 2 11s4.48 10 10 10 10-4.48 10-10S17.52 1 12 1z'/%3E%3C/svg%3E") !important;
}

/* ✅ Warning Toast */
#toast-container>.toast-warning {
    background-color: #f39c12 !important;
    color: #fff !important;
    border-left: 6px solid #e67e22 !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E") !important;
}

/* ✅ Error Toast */
#toast-container>.toast-error {
    background-color: #c0392b !important;
    color: #fff !important;
    border-left: 6px solid #922b21 !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") !important;
}

/* ✅ Close Button */
.toast-close-button {
    color: #fff !important;
    opacity: 0.9 !important;
    font-size: 18px !important;
    position: absolute !important;
    right: 10px !important;
    top: 8px !important;
}

.toast-close-button:hover {
    opacity: 1 !important;
}

/* ✅ Mobile Fix */
@media (max-width: 480px) {
    #toast-container>.toast {
        font-size: 14px !important;
        padding-left: 40px !important;
        background-size: 20px !important;
    }
}

/* 🔍 Search Wrapper Styles */
.search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box {
    transition: all 0.3s ease;
}

/* 🔹 Reduced font size for both input text & placeholder */
.search-input {
    font-size: 0.8rem;
    /* reduced text size */
    padding: 6px 0;
}

/* Placeholder text smaller + lighter */
.search-input::placeholder {
    font-size: 0.8rem;
    color: #999;
}

.search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* 🔽 Dropdown Styles */
.suggestion-box {
    z-index: 1050;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
}

/* Each product row */
.suggestion-item {
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.2s ease-in-out;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

/* Product image */
.suggestion-item img {
    border: 1px solid #ddd;
    background-color: #fff;
}

/* Product text */
.suggestion-item strong {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.1rem;
}

.suggestion-item small {
    font-size: 0.75rem;
    color: #6c757d;
}

/* View All Link */
.suggestion-box .text-center a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s ease-in-out;
}

.suggestion-box .text-center a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Scrollbar styling (for dropdown) */
.suggestion-box::-webkit-scrollbar {
    width: 6px;
}

.suggestion-box::-webkit-scrollbar-thumb {
    background-color: #cfcfcf;
    border-radius: 3px;
}

.suggestion-box::-webkit-scrollbar-thumb:hover {
    background-color: #b3b3b3;
}

/* Button adjustments */
.search-btn i {
    font-size: 1rem !important;
    color: #000 !important;
}

@media (max-width: 576px) {
    .search-wrapper {
        max-width: 100%;
    }

    .search-input {
        font-size: 0.65rem;
    }

    .search-input::placeholder {
        font-size: 0.65rem;
    }

    .suggestion-item strong {
        font-size: 0.75rem;
    }
}

/* 🌙 Fullscreen Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
    z-index: 1055;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 60px 10px;
    overflow-y: auto;
}

/* Container */
.search-container {
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results Scroll */
.search-results {
    max-height: 60vh;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

.result-item:hover {
    background-color: #f2f2f2;
}

/* Responsive */
@media (max-width: 576px) {
    .search-container {
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .btn-dark {
        font-size: 0.9rem;
    }
}
/* ==================== ALL CATEGORIES DESKTOP DROPDOWN ==================== */
.custom-category-dropdown {
    position: relative;
    z-index: 1000;
}

.category-btn {
    background-color: #f6b72a; /* Bright yellow */
    color: #1b322f; /* Dark teal */
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    min-width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.custom-category-dropdown:hover .category-btn {
    border-radius: 10px 10px 0 0;
}

.category-btn i.chevron-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.custom-category-dropdown:hover .category-btn i.chevron-icon {
    transform: rotate(90deg);
}

.category-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 520px;
    background-color: #1b322f; /* Dark teal background */
    list-style: none;
    padding: 10px;
    margin: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.category-menu-columns {
    display: flex;
    gap: 10px;
}

.category-column {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-category-dropdown:hover .category-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-menu li {
    padding: 2px 10px;
}

.category-menu li a {
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.category-menu li a:hover {
    background-color: #f6b72a; /* Bright yellow hover */
    color: #1b322f !important; /* Dark text on hover */
}

.category-menu li a:hover .icon-small, 
.category-menu li a:hover .menu-text {
    color: #1b322f !important;
}

.category-menu li a .icon-small {
    font-size: 14px;
    opacity: 0.9;
}


/* Force default open state */
.category-menu.default-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Adjust button border radius when default open */
.custom-category-dropdown:has(.default-open) .category-btn {
    border-radius: 10px 10px 0 0 !important;
}


/* Override the unset !important on anchors */
.category-menu li a, 
.category-menu li a .menu-text, 
.category-menu li a .icon-small {
    color: #ffffff !important;
}

.category-menu li a:hover, 
.category-menu li a:hover .menu-text, 
.category-menu li a:hover .icon-small {
    color: #1b322f !important;
}

/* ==================== TOP BRAND BANNER ==================== */
.top-brand-banner {
    width: 100%;
    background-color: #0b4d24; /* Green matching the side panels */
    border-bottom: 4px solid #ff7631; /* Accent divider line */
    font-family: var(--font-family);
}

.top-brand-banner .banner-wrapper {
    display: flex;
    min-height: 380px;
}

.top-brand-banner .banner-side {
    background-color: #0b4d24; /* Deep green */
    width: 25%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.top-brand-banner .banner-center {
    width: 50%;
    position: relative;
    overflow: hidden;
    background-color: #0b4d24; /* Fallback green background */
    display: flex;
    flex-direction: column;
}

.top-brand-banner .banner-center .carousel {
    flex: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.top-brand-banner .banner-center .slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.top-brand-banner .banner-center .slide {
    min-width: 100%;
    height: 100%;
}

.top-brand-banner .banner-center .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-brand-banner .banner-center .controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 16px;
    border-radius: 20px;
    z-index: 10;
    border: none;
}

.top-brand-banner .banner-center .arrow {
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0 5px;
}

.top-brand-banner .banner-center .dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
}

.top-brand-banner .banner-center .dot.active {
    background-color: #f6b72a; /* Gold dots */
}

.top-brand-banner .banner-center .pause-play {
    background: transparent;
    color: #fff;
    border: none;
    padding: 0;
    font-size: 11px;
    cursor: pointer;
}

.top-brand-banner .banner-bottom-bar {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.top-brand-banner .banner-title {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-brand-banner .banner-category-list li a {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 6px 12px;
}

.top-brand-banner .banner-category-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.top-brand-banner .category-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #f6b72a; /* Gold text */
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.category-menu li {
    padding: 2px 10px;
}

.category-menu li a {
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.category-menu li a:hover {
    background-color: #f6b72a; /* Bright yellow hover */
    color: #1b322f !important; /* Dark text on hover */
}

.category-menu li a:hover .icon-small, 
.category-menu li a:hover .menu-text {
    color: #1b322f !important;
}

.category-menu li a .icon-small {
    font-size: 14px;
    opacity: 0.9;
}


/* Force default open state */
.category-menu.default-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Adjust button border radius when default open */
.custom-category-dropdown:has(.default-open) .category-btn {
    border-radius: 10px 10px 0 0 !important;
}


/* Override the unset !important on anchors */
.category-menu li a, 
.category-menu li a .menu-text, 
.category-menu li a .icon-small {
    color: #ffffff !important;
}

.category-menu li a:hover, 
.category-menu li a:hover .menu-text, 
.category-menu li a:hover .icon-small {
    color: #1b322f !important;
}

/* ==================== TOP BRAND BANNER ==================== */
.top-brand-banner {
    width: 100%;
    background-color: #0b4d24; /* Green matching the side panels */
    border-bottom: 4px solid #ff7631; /* Accent divider line */
    font-family: var(--font-family);
}

.top-brand-banner .banner-wrapper {
    display: flex;
    min-height: 380px;
}

.top-brand-banner .banner-side {
    background-color: #0b4d24; /* Deep green */
    width: 25%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.top-brand-banner .banner-center {
    width: 50%;
    position: relative;
    overflow: hidden;
    background-color: #0b4d24; /* Fallback green background */
    display: flex;
    flex-direction: column;
}

.top-brand-banner .banner-center .carousel {
    flex: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.top-brand-banner .banner-center .slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.top-brand-banner .banner-center .slide {
    min-width: 100%;
    height: 100%;
}

.top-brand-banner .banner-center .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-brand-banner .banner-center .controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 16px;
    border-radius: 20px;
    z-index: 10;
    border: none;
}

.top-brand-banner .banner-center .arrow {
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0 5px;
}

.top-brand-banner .banner-center .dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
}

.top-brand-banner .banner-center .dot.active {
    background-color: #f6b72a; /* Gold dots */
}

.top-brand-banner .banner-center .pause-play {
    background: transparent;
    color: #fff;
    border: none;
    padding: 0;
    font-size: 11px;
    cursor: pointer;
}

.top-brand-banner .banner-bottom-bar {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.top-brand-banner .banner-title {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-brand-banner .banner-category-list li a {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 6px 12px;
}

.top-brand-banner .banner-category-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.top-brand-banner .category-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #f6b72a; /* Gold text */
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.top-brand-banner .banner-category-list li a:hover .category-icon-box {
    background-color: #f6b72a;
    color: #0b4d24;
}

/* ==================== PREMIUM OFFCANVAS SIDEBAR ==================== */
@media (max-width: 992px) {
    .offcanvas-start {
        border-right: none;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
        width: 85%;
        max-width: 350px;
    }
    
    .offcanvas-header {
        padding: 1.25rem 1.5rem;
        background-color: #0b4d24;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .offcanvas-header .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
        background-color: transparent !important;
    }
    
    .offcanvas-body {
        padding: 1.5rem 0; /* Removed horizontal padding to allow full-width items */
        background-color: #0b4d24;
    }

    .navbar-nav {
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 600;
        padding: 14px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
        border-radius: 8px;
        color: #ffffff !important;
    }

    .nav-link:hover, .nav-link:focus {
        color: #1b322f !important;
        background-color: #f6b72a;
        transform: translateX(5px);
    }

    /* Dropdown in mobile */
    .dropdown-menu.mega-menu {
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        margin-top: 5px;
        padding: 15px;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mega-category-block {
        padding: 10px 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mega-category-block:last-child {
        border-bottom: none;
    }
    
    .mega-category-title span {
        color: #ffffff !important;
    }
    
    .mega-category-title:hover span {
        color: #f6b72a !important;
    }

    .mega-icon-box {
        background: rgba(255, 255, 255, 0.1);
        color: #f6b72a;
    }

    .mega-subcategory-list {
        padding-left: 20px;
        margin-top: 10px;
    }

    .mega-subcategory-link {
        font-size: 14px;
        padding: 6px 0;
        color: #cccccc;
    }
    
    .mega-subcategory-link:hover {
        color: #f6b72a !important;
    }
    
    .offcanvas-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .offcanvas-contact {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: #eeeeee;
        font-weight: 500;
    }
    
    .offcanvas-contact a {
        color: #eeeeee !important;
    }
    
    .offcanvas-contact i {
        color: #f6b72a;
        font-size: 18px;
    }
    
    .offcanvas-social {
        display: flex;
        gap: 12px;
    }
    
    .offcanvas-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #f6b72a;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .offcanvas-social a:hover {
        background-color: #f6b72a;
        color: #1b322f;
        transform: translateY(-2px);
    }
}
