  /* Payment Method Styles */
        .payment-method-section {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            padding: 12px;
        }
 
        .payment-method-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .secure-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #059669;
            margin-left: auto;
        }

        .payment-option {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 16px 10px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
        }

        .payment-option:hover {
            border-color: #990e7b;
            background: #f8faff;
        }

        .payment-option.selected {
            border-color: #990e7b;
            background: #eff6ff;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .payment-option input[type="radio"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #990e7b;
        }

        .payment-option-content {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .payment-icon {
            width: 50px;
            height: 35px;
            object-fit: contain;
            background: #fff;
            padding: 5px;
            border-radius: 6px;
        }

        .payment-label {
            font-size: 15px;
            font-weight: 500;
            color: #374151;
        }

        .payment-badges {
            display: flex;
            gap: 5px;
            margin-left: auto;
        }

        .payment-badge-img {
            height: 24px;
            width: auto;
        }

        /* Offline Payment Details */
        .offline-payment-details {
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 20px;
            margin-top: 15px;
            display: none;
        }

        .offline-payment-details.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
        }

        .form-control {
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 14px;
            transition: all 0.2s;
        }

        .form-control:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            outline: none;
        }

        /* Order Summary */
        .order-summary-section {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 20px;
        }

        .summary-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            font-size: 14px;
            color: #6b7280;
            border-bottom: 1px solid #f3f4f6;
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            border-top: 2px solid #e5e7eb;
            margin-top: 10px;
        }

        .btn-pay {
            width: 100%;
            padding: 16px;
            background: #592050;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-pay:hover:not(:disabled) {
            background: #d66524;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
        }

        .btn-pay:disabled {
            background: #d1d5db;
            cursor: not-allowed;
        }

        .guarantee-box {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            border-radius: 10px;
            padding: 16px;
            margin-top: 20px;
            text-align: center;
        }

        .guarantee-title {
            font-size: 14px;
            font-weight: 600;
            color: #166534;
            margin-bottom: 8px;
        }

        .guarantee-text {
            font-size: 12px;
            color: #15803d;
            line-height: 1.5;
        }

        /* Coupon Section */
        .coupon-section .section-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .coupon-section .input-group .form-control {
            border: 1px solid #d1d5db;
            font-size: 14px;
            padding: 10px 14px;
        }

        .coupon-section .input-group .form-control:focus {
            border-color: #3b82f6;
            box-shadow: none;
        }

        .coupon-section .btn-primary {
            background: #3b82f6;
            border: 1px solid #3b82f6;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .coupon-section .btn-primary:hover {
            background: #2563eb;
            border-color: #2563eb;
        }

        .coupon-section .valid-feedback {
            color: #059669;
            font-size: 13px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .coupon-section .invalid-feedback {
            color: #dc2626;
            font-size: 13px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .alert-info {
            background: #dbeafe;
            border: 1px solid #93c5fd;
            border-radius: 8px;
            color: #1e40af;
        }

        /* Order Details Box */
        .order-details-box {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 20px;
        }

        .order-details-title {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .order-item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .order-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .order-item:first-child {
            padding-top: 0;
        }

        .order-item-image {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            background: #f3f4f6;
        }

        .order-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .order-item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .order-item-title {
            font-size: 13px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .order-item-price {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .current-price {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .original-price {
            font-size: 12px;
            color: #9ca3af;
            text-decoration: line-through;
        }
        .input-group-text {
            color:white;
        }
        input-group-text:hover{
             background: #d66524;
        }
        @media (max-width: 991px) {
        .btn {
            font-size: 14px !important;
            padding-right: 5px;
            padding-left: 5px;
            height: 40px;
        }
        
    } 
      /* Subscription Options Styles */
    .subscription-options-container {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        margin-bottom: 20px;
    }

    .subscription-title {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 20px;
        text-align: center;
    }

    
    .subscription-option {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s  ease;
            display: flex;
            gap: 15px;
            background: #fff;
            position: relative;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: baseline;
    }

    .subscription-option:hover {
        border-color: #af1c8f;
        background: #f8faff;
    }

    .subscription-option.selected,.subscription-option:focus   {
        border-color: #af1c8f;
        background: #eff6ff;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .subscription-option input[type="radio"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #a00c94;
        flex-shrink: 0;
    }

    .subscription-content {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .subscription-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .subscription-name {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .subscription-description {
        font-size: 13px;
        color: #6b7280;
    }

    .subscription-price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .price-amount {
        font-size: 18px;
        font-weight: 700;
        color: #07bb25;
    }

    .price-currency {
        font-size: 13px;
        color: #6b7280;
    }

    .subscription-icon {
        width: 40px;
        height: 40px;
        background: #eff6ff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .subscription-icon svg {
        width: 24px;
        height: 24px;
        color: #7c0a50;
    }

    .popular-badge {
        position: absolute;
        top: -10px;
        right: 15px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }

    /* RTL Support */
    [dir="rtl"] .subscription-content {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .subscription-price {
        align-items: flex-start;
    }

    [dir="rtl"] .popular-badge {
        right: auto;
        left: 15px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .subscription-option {
            padding: 14px;
        }

        .subscription-name {
            font-size: 14px;
        }

        .price-amount {
            font-size: 16px;
        }

        .subscription-icon {
            width: 35px;
            height: 35px;
        }

        .subscription-icon svg {
            width: 20px;
            height: 20px;
        }
    }
    @media (max-width: 768px) {
    .subscription-option {
        align-items: flex-start;
    }

    .subscription-content ,.subscription-icon,.subscription-name,subscription-description ,.payment-option-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    

.payment-badges{
    display: table-footer-group;
    }
    .subscription-info {
        width: 100%;
    }

    .subscription-price {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }

    .subscription-description {
        font-size: 12px;
    }
}
.cart-row{
    border-bottom:solid 0px #ececec;
}