.site-header {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-family: "Grold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* ✅ CORRECTION */
    font-weight: 400;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    height: 65px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.search-input {
    padding: 10px;
    border-radius: 8px;
    border: none;
    width: 300px;
    font-size: 14px;
    margin-right: auto;
}

.stock-phone-icon-container {
    display: flex;
    gap: 100px;
}

.stock-phone-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.stock-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.4s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.switch input:checked + .slider {
    background-color: green;
}

.switch input:checked + .slider::before {
    transform: translateX(24px);
}

.stock-complet {
    color: limegreen;
}

.phone-number {
    color: var(--primary-yellow);
    font-family: "Grold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.9em;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.icon {
    height: 28px;
    cursor: pointer;
    filter: brightness(0) invert(1);
}

.icon-cart {
    margin-top: 3px;
    cursor: pointer;
}

.cart-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-yellow);
    color: black;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
}
