/* ============================================
   MODULAR BUTTON COMPONENT STYLES (GD Design)
   ============================================ */

/* Base Button Styles */
.btn {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 6.651px;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    height: 56px;
    min-width: 161px;
}

/* Green Primary Button */
.btn-primary {
    background: #005b68;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #004a54;
    color: #ffffff;
}

/* Green Secondary Button (Outline) */
.btn-secondary {
    background: transparent;
    border: 1px solid #005b68;
    color: #005b68;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #005b68;
    color: #ffffff;
}

/* Orange Primary Button */
.btn-orange-primary {
    background: #ed6a59;
    color: #ffffff;
}

.btn-orange-primary:hover,
.btn-orange-primary:focus {
    background: #d95a4a;
    color: #ffffff;
}

/* Orange Secondary Button (Outline) */
.btn-orange-secondary {
    background: transparent;
    border: 1px solid #ed6a59;
    color: #ed6a59;
}

.btn-orange-secondary:hover,
.btn-orange-secondary:focus {
    background: #ed6a59;
    color: #ffffff;
}

/* Outline Button (White bg with grey border) */
.btn-outline {
    background: #ffffff;
    border: 1px solid #d4d2e3;
    color: #ed6a59;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #f5f5f5;
    border-color: #ed6a59;
    color: #ed6a59;
}

/* Button Sizes */
.btn-sm {
    padding: 12px 20px;
    font-size: 14px;
    height: 44px;
    min-width: 120px;
}

.btn-lg {
    padding: 20px 32px;
    font-size: 18px;
    height: 64px;
    min-width: 180px;
}

/* 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;
    }
}
