/* Header Styles */

/* Top Header */
.top-header {
    background: #0b2baa;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header .container {
    width: 100%;
}

.top-header .me-4 {
    margin-right: 1rem;
}

.top-header .phone-number {
    color: #0df8de;
}

/* Main Header */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0b2baa, #0df8de);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon i {
    color: white;
    font-size: 20px;
}

.logo-text .company-name {
    color: #0b2baa;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.logo-text .company-subtitle {
    color: #0df8de;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.location-selector {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    width: 100%;
    background: white;
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #f8f9fa;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.user-icon {
   text-decoration: none;
    color: #3e445a;
    font-size: 18px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e2e4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-price {
    font-weight: 600;
    color: #333;
}

.cart-icon-container {
    position: relative;
}

.cart-icon {
    color: #0df8de;
    font-size: 18px;
    width: 40px;
    height: 40px;
    background-color: #e7fcfa;
    border-color: #e7fcfa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-count {
   position: absolute;
    top: 0px;
    right: -11px;
    background: #0df8de;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.nav-link-item:hover {
    color: #0b2baa;
}

.nav-link-item i {
    color: #0b2baa;
}

.nav-link-item.active {
    color: #0b2baa;
}

/* Responsive */
@media (max-width: 768px) {
    .top-header {
        font-size: 12px;
        padding: 6px 0;
    }

    .main-header {
        padding: 10px 0;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text .company-name {
        font-size: 16px;
    }

    .nav-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .search-input {
        padding: 10px 40px 10px 12px;
    }
}