/* Modern Header Styles - Unified across all pages */
.header {
    background: transparent;
    transition: background 0.3s ease;
}

.header__wrapper {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    max-width: 1140px;
    margin: 12px auto 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
}

.logo__img {
    width: 170px;
}

@media (min-width: 1280px) {
    .logo__img {
        width: 170px;
    }
}

.header__manufacturer {
    position: relative;
    border: none;
    border-radius: 5px;
    padding: 0 10px 0 35px;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    line-height: 44px;
}

/* Status Icon for Manufacturer */
.header__manufacturer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004182'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Hide old decor elements if any */
.header__manufacturer::after {
    display: none;
}

.phone__link {
    color: #1e293b;
    font-weight: 700;
    transition: color 0.2s;
}

.phone__link:hover {
    color: #004182;
    text-decoration: none;
}

.phone__link_type_phone {
    font-size: 19px;
}

/* Header Button Modernization */
.header__btn-container .btn {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
    font-size: 14px;
    font-weight: 700;
    padding: 0 25px;
    height: 44px;
    line-height: 44px;
    border-radius: 22px;
    transition: all 0.2s ease;
}

.header__btn-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

/* Navigation Modernization */
.desktop-nav__link {
    font-weight: 500;
    color: #334155;
    padding: 16px 20px;
    position: relative;
    font-size: 15px;
}

.desktop-nav__link:hover,
.desktop-nav__link_active {
    color: #004182;
}

.desktop-nav__link::after {
    background: #004182;
    height: 3px;
    border-radius: 3px 3px 0 0;
    bottom: 0;
}

/* Cart icon link styling */
.header__cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 15px;
}

.header__cart-link svg {
    vertical-align: middle;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
}