/* ============================================
   MODULAR BUTTON COMPONENT STYLES
   ============================================ */

/* Base Button Styles */
.btn {
    display: inline-flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "General Sans Variable", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.831px solid transparent;
    backdrop-filter: blur(16.618px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primary Button (Brown background, white text) */
.btn-primary {
    background: #833C1E;
    border-color: #833C1E;
    color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #6B3118;
    border-color: #6B3118;
    color: #FFFFFF;
}

/* Outline Button (White background, brown text and border) */
.btn-outline {
    background: #FFFFFF;
    border-color: #833C1E;
    color: #833C1E;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #833C1E;
    border-color: #833C1E;
    color: #FFFFFF;
}

/* Button Sizes */
.btn-sm {
    padding: 12px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 20px 32px;
    font-size: 16px;
}

/* Button Full Width */
.btn-block {
    width: 100%;
    display: flex;
}

/* Disabled State */
.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn {
        padding: 14px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 14px;
    }
}