* {
    font-family: 'Oswald', sans-serif !important;
}

.stylish-navbar {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: 100px;
    padding: 15px 0;
}

.nav-link {
    color: #110b0b !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 .5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #977143 !important;
    text-shadow: 0 0 8px rgba(151, 113, 67, 0.8);
}

.nav-glow:hover {
    transform: translateY(-2px);
}

.logo-text {
    background: linear-gradient(135deg, #977143, lab(100% 0.01 -0.01 / 0.421));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo image styling for navbar */
.navbar-logo {
    height: 50px;
    width: auto;
    max-height: 60px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.dropdown-menu.dropdown-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: .5rem;
}

.dropdown-item {
    color: #2f2828;
    transition: all .3s ease;
}

.dropdown-item:hover {
    background: rgba(151, 113, 67, 0.318);
    color: #977143;
    border-radius: 6px;
}

.btn-glow {
    border: 1px solid #000000;
    background: #000000;
    color: #ffffff;
    transition: all .3s ease;
}

.btn-glow:hover {
    background: #333333;
    border: 1px solid #333333;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Gold styling for cart and search buttons */
.btn-cart, .btn-search {
    border: 1px solid #000000 !important;
    background: #ffffff !important;
    color: #000000 !important;
    transition: all .3s ease;
}

.btn-cart:hover, .btn-search:hover {
    background: #d0c8bf8d !important;
    border: 1px solid #977143 !important;
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(151, 113, 67, 0.5);
}

/* Remove shadow from 20% OFF span */
.d-block {
    text-shadow: none !important;
    box-shadow: none !important;
}

.stylish-offcanvas {
    background: #977143;
    color: #ffffff;
}

.stylish-offcanvas .offcanvas-title {
    background: none !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
}

.stylish-offcanvas .nav-link {
    color: #ffffff !important;
}

.stylish-offcanvas .nav-link:hover,
.stylish-offcanvas .nav-link.active {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Mobile navbar styling */
@media (max-width: 991.98px) {
    /* Mobile navbar container */
    .navbar .container-fluid {
        padding: 1rem;
    }
    
    /* Mobile header layout */
    .d-lg-none .d-flex {
        align-items: center;
        justify-content: center !important;
        position: relative;
        min-height: 60px;
    }
    
    /* Mobile hamburger button */
    .navbar-toggler {
        border: 2px solid #977143;
        padding: 0.5rem;
        background: transparent;
        border-radius: 4px;
        position: absolute;
        left: 5px;
        z-index: 10;
    }
    
    .navbar-toggler:hover {
        background: rgba(151, 113, 67, 0.1);
        border-color: #977143;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5em;
        height: 1.5em;
    }
    
    /* Mobile logo centered */
    .mobile-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex: none !important;
        margin: 0 !important;
        padding-left: 40px !important;
    }
    
    .mobile-logo .navbar-brand {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Sidebar cart/search buttons */
    .offcanvas-body .btn {
        text-align: left;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .offcanvas-body .btn i {
        width: 20px;
    }
}
