/* Sticky left column for review/referral/price */
.sticky-review {
    position: sticky;
    top: 104px;
    z-index: 10;
    background: #ffffff;
    box-shadow: none;
}
.container {
    overflow: visible;
}
@media (max-width: 991px) {
    .sticky-review {
        position: static;
        top: auto;
        box-shadow: none;
        border: none;
        background: none;
        padding: 0;
        background: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-bottom: 0;
    }
}
.checkout-title {
        overflow: visible;
        min-height: 1200px;
    font-weight: 700;
    text-align: center;
        min-height: 900px;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}
.mini-review {
    font-size: 1.08rem;
    text-align: left;
    box-shadow: none;
}
.price-summary {
    font-size: 1.35rem;
    font-weight: 700;
    color: #198754;
    text-align: left;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: none;
    padding: 0;
}
.form-label {
    font-weight: 500;
}
.checkout-btn {
    font-size: 1.2rem;
    padding: 0.85rem;
    border-radius: 8px;
}
.d-flex.gap-2 > input.form-control {
    flex: 1 1 auto;
    min-width: 0;
}
#referralFeedback {
    font-size: 0.98rem;
    color: #198754;
    background: none;
    border: none;
    padding: 0;
    margin-top: 0.5rem;
}
.mb-3 {
    margin-bottom: 1.3rem !important;
}
@media (max-width: 600px) {
    .checkout-title { font-size: 1.4rem; }
    .row { flex-direction: column; }
}

/* Payment Method Styling - SPECIFIC TO PAYMENT METHODS ONLY */
.payment-method-container .form-check {
    border-radius: 6px;
    padding: 0.75rem;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.payment-method-container .form-check:hover {
    background-color: #f0f0f0;
}

.payment-method-container .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0;
    margin-right: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.payment-method-container .form-check-input:checked {
    background-color: #0066CC;
    border-color: #0066CC;
}

.payment-method-container .form-check-label {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Payment Logo Styling */
.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0;
}

.stripe-logo {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    font-size: 24px;
}

.paypal-logo {
    background: linear-gradient(135deg, #003087 0%, #001f4d 100%);
    font-size: 16px;
    letter-spacing: 2px;
}


