.site-offers-bar {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a3e;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 101;
    box-shadow: 0 4px 18px rgba(26, 26, 62, 0.12);
    border-bottom: 1px solid rgba(26, 26, 62, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.site-offers-bar__content {
    display: flex;
    align-items: center;
    gap: 10px 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    min-width: 0;
}

.site-offers-bar__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(26, 26, 62, 0.12);
    color: #1a1a3e;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-offers-bar__link {
    color: #1a1a3e;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-offers-bar__link:hover {
    text-decoration: underline;
}

.site-header {
    background-color: #1a1a3e;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 24px;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-image {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    margin-left: 80px;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: #a78bfa;
}

.site-commander-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a3e;
    text-decoration: none;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-commander-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.site-commander-btn:active {
    transform: translateY(0);
}

.site-menu-toggle {
    display: none;
    background: #fbbf24;
    color: #1a1a3e;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .site-offers-bar {
        padding: 10px 16px;
        font-size: 12px;
    }

    .site-offers-bar__content {
        gap: 8px;
    }

    .site-offers-bar__content > span:not(.site-offers-bar__badge) {
        flex: 1 1 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .site-logo-image {
        height: 50px;
    }

    .site-nav {
        margin-left: 0;
        gap: 12px;
        flex-direction: column;
        width: 100%;
        order: 3;
        flex-basis: 100%;
        display: none;
        padding: 15px 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        font-size: 13px;
        padding: 8px 12px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .site-commander-btn {
        padding: 8px 16px;
        font-size: 13px;
        width: auto;
    }

    .site-menu-toggle {
        display: block;
        margin-left: auto;
    }
}
