/* buttons.css - Все кнопки (CTA, первичные, вторичные) */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', 'Roboto', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: 0.3px;
}

.button-primary {
    background: var(--company-yellow);
    color: #ссс;

}

.button-primary:hover {
    background: #1D3E5C;
    transform: translateY(-1px);
    color: white;
}

.button-light {
    background: white;
    color: var(--color-primary);
}

.button-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}


.button-secondary {
        background: transparent;
        color: var(--company-yellow);
        border: 1px solid var(--company-yellow);
    }

.button-secondary:hover {
    background: rgba(245, 166, 35, 0.1);
}

.button-outline {
    background: transparent;
    border: 1px solid #E5E7EB;
    color: #1A1A1A;
}

.button-outline:hover {
    border-color: #2C5F8A;
    color: #2C5F8A;
}

.button-danger {
    background: #D32F2F;
    color: white;
}

.button-danger:hover {
    background: #B71C1C;
}

.button-small {
    padding: 6px 12px;
    font-size: 12px;
}

.button-large {
    padding: 14px 32px;
    font-size: 16px;
}

.button-block {
    width: 100%;
    display: flex;
}

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.button-icon {
    padding: 10px;
    border-radius: 4px;
}

.button-icon svg {
    width: 20px;
    height: 20px;
}



.download-button {
    background: #F5F7FA;
    border: 1px solid #E5E7EB;
    color: #2C5F8A;
    padding: 8px 16px;
    font-size: 13px;
}

.download-button:hover {
    background: #EBEEF2;
}

@media (max-width: 768px) {
    .button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .button-large {
        padding: 12px 24px;
    }
}

.light-text {
    color: var(--color-text-light);
}

.light-text:hover {
    color: var(--color-text-light);
}