/*---------------  Navigation Css ---------------*/
.navbar{
   
}
.nav-item .nav-link {
    font-family: var(--secondary-font);
    color: black;
    font-weight: 600;
    font-size: 14px;
    color: #8b0505;
}

.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.btn-close:focus{
    outline: none;
    box-shadow: none;
}
.navbar-nav .nav-link{
    font-size: 14px;
}
.navbar-nav .nav-link.active {
    color: #7b1e1e;
}
.navbar-toggler{
    border: none;
    font-size: 16px;
}
/* Navbar links */
.navbar .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #7b1e1e;
}

/* Hover dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeDown 0.3s ease;
}

/* Dropdown animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown menu style */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icons */
.icon-btn {
    margin-left: 12px;
    position: relative;
}

.icon-btn img {
    width: 22px;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
}
/* User dropdown wrapper */
.user-dropdown {
    position: relative;
}

/* Dropdown menu */
.user-menu {
    position: absolute;
    top: 140%;
    right: 0;
    width: 180px;
    background: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* Show on hover */
.user-dropdown:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu links */
.user-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.user-menu li a:hover {
    background: #f5f5f5;
}

/* Divider */
.user-menu .divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

/* Logout color */
.user-menu .logout {
    color: #e63946;
}

/* Icons */
.icon-btn {
    margin-left: 12px;
    position: relative;
}

.icon-btn img {
    width: 22px;
}


.navbar-brand img{
    
}
.pre-header p {
    margin-bottom: 0;
    line-height: 32px;
}
.pre-header strong {
    color: #ffd98e;
    font-weight: 500;
}
header .navbar {
    padding: 6px 0;
}
.offcanvas-body ul li {
    font-family: "Montserrat", sans-serif;
    padding: 0 0;
}
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
}
.dropdown-item {
    font-size: 13px;
    font-weight: 600;
	line-height: 30px;
	transition: all 0.2s ease-in-out;
    color: #7b1e1e;
}
.navbar-nav  {
    margin-top: 4px;
}
.dropdown-item:hover {
        padding-left: 55px !important;
}
.dropdown-menu {
    width: 252px;
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #fff;
}