/* ===== HEADER BUTTONS — ОДИНАКОВЫЙ ВИД НА ВСЕХ СТРАНИЦАХ ===== */

/* Top Bar */
.top-bar-link {
    transition: color 0.2s;
}
.top-bar-link:hover {
    color: #FF6B00 !important;
}

/* Header Actions — все страницы одинаково */
@media (min-width: 1024px) {
    /* Контейнер кнопок */
    #header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 0 !important;
        gap: 20px !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        transform: none !important;
        translate: none !important;
        -webkit-transform: none !important;
        flex-shrink: 0 !important;
    }

    /* Кнопка Логин */
    #login-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: auto !important;
        max-width: none !important;
        width: auto !important;
        height: auto !important;
        padding: 8px 12px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    #login-btn:hover {
        background: #F0F2F5 !important;
    }
    #login-btn:active {
        transform: scale(0.95) !important;
    }

    /* Кнопка Корзина */
    #cart-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: auto !important;
        max-width: none !important;
        width: auto !important;
        height: auto !important;
        padding: 8px 12px !important;
        margin: 0 !important;
        margin-right: 0 !important;
        border-radius: 12px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    #cart-btn:hover {
        background: #F0F2F5 !important;
    }
    #cart-btn:active {
        transform: scale(0.95) !important;
    }

    /* Иконки внутри кнопок */
    #login-btn i,
    #login-btn svg,
    #cart-btn i,
    #cart-btn svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    /* Текст внутри кнопок */
    #login-btn .text-xs,
    #cart-btn .text-xs {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
}

/* Mobile — единообразный вид */
@media (max-width: 1023px) {
    #header-actions {
        gap: 4px !important;
        padding: 0 !important;
    }
    #login-btn,
    #cart-btn {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

