/*
=========================================================
ForexBug Hub

Checkout Styles

Version: 2.0.0
=========================================================
*/

.checkout-section {

    padding: 80px 20px;

    background: #f5f7fb;

    min-height: 100vh;

}

.checkout-container {

    max-width: 1200px;

    margin: auto;

}

.checkout-header {

    text-align: center;

    margin-bottom: 50px;

}

.checkout-header h1 {

    font-size: 2.5rem;

    font-weight: 700;

    color: #1f2937;

    margin-bottom: 15px;

}

.checkout-header p {

    color: #6b7280;

    font-size: 1.05rem;

}

.checkout-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;

}

.checkout-card {

    background: #ffffff;

    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 12px 35px rgba(0,0,0,.08);

}

.checkout-card h2 {

    color: #111827;

    margin-bottom: 20px;

}

.checkout-card h3 {

    margin-bottom: 20px;

    color: #374151;

}

.checkout-price {

    font-size: 2.4rem;

    font-weight: bold;

    color: #d4af37;

    margin-bottom: 25px;

}

.checkout-card hr {

    border: none;

    border-top: 1px solid #ececec;

    margin: 25px 0;

}

.membership-list {

    list-style: none;

    margin: 0;

    padding: 0;

}

.membership-list li {

    margin-bottom: 18px;

    color: #374151;

    line-height: 1.8;

}

.form-group {

    margin-bottom: 22px;

}

.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    color: #374151;

}

.form-group input,
.form-group select {

    width: 100%;

    padding: 14px;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    background: #ffffff;

    font-size: 15px;

    transition: all .25s ease;

    box-sizing: border-box;

}

.form-group input::placeholder {

    color: #9ca3af;

}

.form-group input:focus,
.form-group select:focus {

    outline: none;

    border-color: #d4af37;

    box-shadow: 0 0 0 4px rgba(212,175,55,.15);

}

.checkout-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 1.2rem;

    margin-bottom: 25px;

}

.checkout-button {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 12px;

    background: #d4af37;

    color: #ffffff;

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;

}

.checkout-button:hover {

    background: #b8962e;

    transform: translateY(-2px);

}

.checkout-button:disabled {

    background: #c7c7c7;

    cursor: not-allowed;

    transform: none;

}

.checkout-security {

    margin-top: 25px;

    text-align: center;

    color: #6b7280;

    font-size: .95rem;

    line-height: 1.8;

}

/* ==========================================
   Validation
========================================== */

.validation-error {

    display: none;

    margin-top: 8px;

    color: #dc2626;

    font-size: .9rem;

}

.input-error {

    border-color: #dc2626 !important;

    box-shadow: none !important;

}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 900px) {

    .checkout-grid {

        grid-template-columns: 1fr;

    }

    .checkout-header h1 {

        font-size: 2rem;

    }

    .checkout-card {

        padding: 25px;

    }

}