body {
    font-family: 'Syne', sans-serif;
}

.navbar-nav{
    gap: 1rem;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.nav-item a {
    color: #9C9C9C;
    font-weight: 500;
    padding: 10px 15px;
}

.nav-item a:hover,
.icon-text:hover, 
.icon-text:hover i {
    color: #ff5722;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 25px;
    padding: 10px 15px;
    width: 250px;
}

.search-box {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #9C9C9C;
}

.search-box::placeholder {
    color: #999;
}

.search-icon {
    color: #707070;
    font-size: 18px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #c44d38;
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.navbar-brand img {
    height: 50px;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #9C9C9C;
}

.icon-text i {
    font-size: 24px;
    background-color: #e6e6e6;
    border-radius: 50%;
    padding: 8px;
}

.active-menu {
    color: #791a00 !important;
}

.active-menu:hover {
    color: #ff5722 !important;
}

@media (max-width: 768px) {
    .search-container {
        display: none;
    }
}