/* Advance Payment Styling */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.payment-options .btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid transparent;
}

.payment-options .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-color: #ffc107;
    color: #212529;
}

.payment-options .btn-warning:hover {
    background: linear-gradient(135deg, #e0a800 0%, #d39e00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.payment-options .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
}

.payment-options .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.payment-options .btn small {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
    display: block;
    font-weight: 400;
}

.payment-options .btn i {
    margin-right: 6px;
}

/* Pricing feature list styling */
.pricing-feature-list li {
    padding: 4px 0;
    font-size: 0.9rem;
}

.pricing-feature-list li i {
    margin-right: 8px;
    width: 16px;
    color: var(--thm-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-options {
        gap: 8px;
    }
    
    .payment-options .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Plan summary styling for advance payment */
.sp-summary {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-summary li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.sp-summary li:last-child {
    border-bottom: none;
}

.sp-summary .total-costs {
    font-weight: bold;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 6px;
    padding: 12px;
    margin: 10px -15px -10px -15px;
    font-size: 1rem;
}

.sp-summary .gst-info {
    font-style: italic;
    color: #6c757d;
    border-bottom: none;
    padding: 4px 0;
}

.sp-summary .gst-info small {
    font-size: 0.8rem;
}