/* Payment Options Styling */
.cwb-payment-options {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.cwb-payment-option {
    cursor: pointer;
    display: block;
}

.cwb-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.cwb-payment-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.cwb-payment-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cwb-payment-radio:checked+.cwb-payment-card {
    border-color: var(--cwb-primary-color, #2271b1);
    background: rgba(34, 113, 177, 0.05);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.1);
}

.cwb-payment-icon {
    font-size: 32px;
    line-height: 1;
}

.cwb-payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cwb-payment-name {
    font-weight: 600;
    font-size: 16px;
    color: #1a202c;
}

.cwb-payment-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Success Banner Styling */
.cwb-success-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cwb-success-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cwb-success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    flex-shrink: 0;
}

.cwb-success-text h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 600;
}

.cwb-success-text p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.95;
}

.cwb-success-text strong {
    font-weight: 600;
    margin-right: 8px;
}

#cwb-book-another {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#cwb-book-another:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cwb-success-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cwb-success-content {
        flex-direction: column;
        text-align: center;
    }

    #cwb-book-another {
        width: 100%;
    }

    .cwb-payment-card {
        padding: 15px;
    }

    .cwb-payment-icon {
        font-size: 24px;
    }
}