/* Checkout Page Styles - KavachAV Theme */
.checkout-wrapper {
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.checkout-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

    .checkout-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 45px;
    width: auto;
}

.tagline {
    font-size: 14px;
    color: #FF6600;
    font-weight: 600;
    padding-left: 15px;
    border-left: 2px solid #e9ecef;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
}

    .trust-badge i {
        font-size: 16px;
    }

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 50px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #FF6600;
    border-color: #FF6600;
    color: white;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.step.active .step-label {
    color: #FF6600;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px;
}

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 40px;
}

.fs-14px{
    font-size:14px;
}


/* Billing Section */
.billing-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.080);
    height: auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

    .section-header i {
        font-size: 24px;
        color: #FF6600;
    }

    .section-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
    }

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 10px;
}

    .form-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: #334155;
        margin-bottom: 8px;
        font-size: 14px;
    }

        .form-group label i {
            color: #FF6600;
            font-size: 14px;
        }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus {
        outline: none;
        border-color: #FF6600;
        box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    }

select.form-control {
    cursor: pointer;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 8px;
}

.payment-option {
    position: relative;
}

    .payment-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .payment-option label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
        margin-bottom: 0;
        font-weight: 500;
    }

    .payment-option input[type="radio"]:checked + label {
        border-color: #FF6600;
        background: rgba(255, 102, 0, 0.05);
        color: #FF6600;
    }

    .payment-option label i {
        font-size: 18px;
        color: inherit;
    }

/* Order Summary */
.summary-section {
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.080);
    border-radius: 20px;
}

.order-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

    .summary-header i {
        font-size: 24px;
        color: #FF6600;
    }

    .summary-header h3 {
        font-size: 20px;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
    }

/* Plan Details */
.plan-details {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    margin-bottom: 25px;
}

.plan-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6600, #E62E2E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .plan-icon i {
        font-size: 28px;
        color: white;
    }

.plan-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.plan-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 12px;
    color: #64748b;
}

    .badge i {
        font-size: 12px;
    }

/* Price Breakdown */
.price-breakdown {
    margin-bottom: 25px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #64748b;
    font-size: 14px;
}

    .breakdown-item.total {
        padding-top: 15px;
        border-top: 2px solid #f1f5f9;
        font-size: 18px;
        font-weight: 700;
        color: #1e293b;
    }

    .breakdown-item.discount {
        color: #10b981;
    }

.total-price {
    color: #FF6600;
    font-size: 20px;
}

/* Payment Security */
.payment-security {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #64748b;
}

    .security-item i {
        color: #10b981;
        font-size: 14px;
    }

/* Pay Button */
.pay-button {
    width: 100%;
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

    .pay-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    }

    .pay-button:active {
        transform: translateY(0);
    }

    .pay-button i {
        font-size: 18px;
    }

.button-subtext {
    font-size: 12px;
    font-weight: normal;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .trust-badges img {
        height: 30px;
        width: auto;
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }

        .trust-badges img:hover {
            opacity: 1;
        }

/* Customer Support */
.customer-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 13px;
}

    .customer-support i {
        font-size: 20px;
        color: #FF6600;
    }

    .customer-support a {
        color: #FF6600;
        text-decoration: none;
        font-weight: 600;
    }

        .customer-support a:hover {
            text-decoration: underline;
        }

/* Back Link */
.back-link {
    text-align: center;
    margin: 30px 0 50px;
}

    .back-link a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #64748b;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .back-link a:hover {
            color: #FF6600;
        }

/* Responsive Design */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .summary-section {
        position: static;
    }

    .progress-steps {
        margin: 30px 0;
    }

    .step-line {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .checkout-header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
    }

    .tagline {
        border-left: none;
        padding-left: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .billing-section,
    .order-summary {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .progress-steps {
        display: none;
    }
}

@media (max-width: 480px) {
    .plan-details {
        flex-direction: column;
        text-align: center;
    }

    .plan-icon {
        margin: 0 auto;
    }

    .plan-meta {
        justify-content: center;
    }

    .trust-badges img {
        height: 25px;
    }

    .pay-button {
        font-size: 16px;
        padding: 14px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.billing-section,
.order-summary {
    animation: fadeInUp 0.5s ease-out;
}

/* Form Validation Styles */
.form-control:invalid:focus {
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading State */
.pay-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}




.card-type-options {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.card-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
}

    .card-option:hover {
        background-color: #f8f9fa;
        border-color: #4F46E5;
    }

    .card-option input[type="radio"] {
        margin: 0;
        cursor: pointer;
    }

    .card-option label {
        cursor: pointer;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .card-option label i {
            font-size: 18px;
        }

    .card-option:has(input[value="indian"]) label i {
        color: #28a745;
    }

    .card-option:has(input[value="international"]) label i {
        color: #dc3545;
    }