/**
 * Дополнительные стили для SportDecor
 * Дополняет Tailwind CSS
 */

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #D4AF37;
    color: #1e3a5f;
}

.btn-primary:hover {
    background-color: #B8960C;
}

.btn-outline {
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
}

.btn-outline:hover {
    background-color: #1e3a5f;
    color: white;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}
