/* Sticky Container */
.sticky-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; /* Ensure background is solid to avoid content bleed-through */
}

/* Main Header */
.main-header {
    padding: 15px 80px;
}

/* Navbar */
.navbar {
    display: flex !important;
}

.center-align{
    display: flex;
    justify-self: center;
}

.menu-center{
    display: flex;
    justify-content: center;
}

/* Navbar Brand */
.navbar-brand {
    width: 8%;
    margin-right: 10%;
}

.navbar-brand img {
    width: 100%;
}

/* Nav Links */
.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color) !important;
}

/* Shipping Banner */
.shipping-banner {
    background: #fff3e0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.shipping-banner marquee {
    color: #e65100;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.shipping-banner marquee:hover {
    animation-play-state: paused;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-content {
        display: block;
    }
    .desktop-content {
        display: none;
    }

    .main-header {
        padding: 10px 20px;
        flex-direction: row;
        display: flex;
    }

    .navbar-brand {
        width: 15%;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-toggler {
        font-size: 1.5rem;
        color: #333;
        border: none;
        background: none;
    }

    .navbar-collapse {
        display: none;
        flex-direction: column;
    }

    .navbar-collapse.show {
        display: flex;
    }
}

/* Ensure other elements like floating cart and WhatsApp button are unaffected */
.floating-cart {
    position: fixed;
    background: #fff !important;
    padding: 10px;
    border: var(--primary-color) solid 2px;
    border-radius: 50%;
    bottom: 20px;
    right: 1.5%;
    z-index: 1000;
}

.whatsapp-float {
    position: fixed;
    bottom: 95px;
    left: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}