/* Checkout Page Specific Styles */

/* Base Layout Overrides */
.checkout-page {
    padding-top: 10px !important;
    padding-bottom: 120px;
}

.page-title {
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    font-size: 1.8rem;
    line-height: 1.2;
}

/* Compact Form Groups */
.form-group {
    margin-bottom: 15px !important;
}

.form-group label {
    margin-bottom: 4px !important;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px !important;
    height: auto;
}

/* Compact Wrapper for Mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .checkout-page {
        padding-top: 5px !important;
    }

    .page-title {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }

    .checkout-grid {
        gap: 20px !important;
    }

    /* Order Summary Compactness */
    .order-summary {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        padding: 15px !important;
    }

    .summary-title {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .summary-item {
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }

    .payment-method {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .payment-method h3 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
}
/* Support Modal */
.support-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.support-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.support-modal {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.support-modal-overlay.active .support-modal {
    transform: translateY(0);
}

.support-modal h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: white;
}

.support-btn:active {
    transform: scale(0.98);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-call {
    background-color: #1a1a1a;
    color: white;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}
