header{
		position: sticky;
            top: 0;

            z-index: 9995; 
}
.header-top {
    background: #fff4e5;
    color: #000;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 600
}

.navbar {
    padding: 0 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: white !important;

}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #2c3e50 !important;
}

.navbar-brand img{
	height:60px;
}

@media (min-width: 1200px) {
    .navbar .container {
        max-width: 1280px
    }
	.navbar .nav-cart{display: none}
}

.search-btn{cursor:pointer}

.navbar .nav-link {
    font-weight: 500;
    color: #34495e !important;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link:hover {
    color: #e74c3c !important;
}

.navbar .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #e74c3c;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover:after {
    width: 100%;
}
.navbar .nav-link i{font-size:20px}

.navbar .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.6rem;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 250px;
}

.search-input {
    padding-left: 40px;
    border-radius: 50px;
    border: 1px solid #dfe6e9;
    transition: all 0.3s;
}

.search-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
    border-color: #e74c3c;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
}

.cart-btn {
    position: relative;
    color: #34495e !important;
    transition: all 0.3s;
}

.cart-btn:hover {
    color: #e74c3c !important;
}

@media (max-width: 991.98px) {
    .search-box {
        width: 100%;
        margin: 10px 0;
    }

    .navbar-nav {
        padding: 10px;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
    }

    .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
	.navbar-brand{padding:0}
	
}