        /* ==============================
                   Checkout Page Specific Styles
                   All styles are scoped with .checkout-wrapper
                   to prevent affecting the navbar
                   ============================== */
        .checkout-wrapper {
            --primary: #1A886D;
            --primary-dark: #0e5f4a;
            --primary-light: #e8f5f0;
            --secondary-gold: #D4AF37;
            --secondary-gold-dark: #b4941b;
            --secondary-gold-light: #f5e7c8;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --text-light: #ffffff;
            --bg-light: #f8fafc;
            --bg-warm: #f7f5f2;
            --border-light: #e2e8f0;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(26, 136, 109, 0.15);
            --radius-md: 12px;
            --radius-lg: 24px;
            --transition: all 0.3s ease;
        }

        /* Hero Section with Islamic Pattern */
        .checkout-wrapper #hero {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            overflow: hidden;
            isolation: isolate;
        }

        .checkout-wrapper #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.1'%3E%3Cpath d='M50 0 L61.8 34.5 L100 34.5 L69.1 55.5 L80.9 90 L50 69.1 L19.1 90 L30.9 55.5 L0 34.5 L38.2 34.5 Z' fill='white'/%3E%3C/svg%3E");
            background-size: 60px 60px;
            opacity: 0.1;
            z-index: 0;
        }

        .checkout-wrapper #hero::after {
            content: '﷽';
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: 'Noto Naskh Arabic', serif;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        .checkout-wrapper #hero svg {
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .checkout-wrapper #hero h1 {
            position: relative;
            z-index: 1;
            font-weight: 700;
            font-size: clamp(24px, 6vw, 48px);
            margin-bottom: 16px;
            color: var(--text-light);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 0.8s ease-out;
            line-height: 1.3;
            padding: 0 10px;
        }

        .checkout-wrapper #hero p {
            position: relative;
            z-index: 1;
            max-width: 700px;
            font-size: clamp(14px, 4vw, 20px);
            color: var(--text-light);
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            line-height: 1.6;
            padding: 0 15px;
        }

        .checkout-wrapper .hero-dome {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50% 50% 0 0;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            z-index: 1;
        }

        /* Checkout Section */
        .checkout-wrapper .checkout-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
        }

        .checkout-wrapper .checkout-section .container {
            display: flex;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Left Grid - Course Details */
        .checkout-wrapper .checkout-section .left-grid {
            width: 55%;
        }

        .checkout-wrapper .checkout-section .left-grid .card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            overflow: hidden;
        }

        .checkout-wrapper .checkout-section .left-grid .card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.1) 50%);
            border-radius: 0 var(--radius-lg) 0 0;
            z-index: 0;
        }

        .checkout-wrapper .checkout-section .left-grid .card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(26, 136, 109, 0.1) 50%, transparent 50%);
            border-radius: 0 0 0 var(--radius-lg);
            z-index: 0;
        }

        .checkout-wrapper .media-container {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .checkout-wrapper .media-container img,
        .checkout-wrapper .media-container video {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            display: block;
        }

        .checkout-wrapper .media-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold-dark) 100%);
            color: var(--text-dark);
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(12px, 3vw, 14px);
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
            z-index: 2;
        }

        .checkout-wrapper .nav-tabs {
            border-bottom: 2px solid rgba(212, 175, 55, 0.2);
            gap: 5px;
            margin-bottom: 25px !important;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 5px;
            -webkit-overflow-scrolling: touch;
        }

        .checkout-wrapper .nav-tabs::-webkit-scrollbar {
            display: none;
        }

        .checkout-wrapper .nav-tabs .nav-link {
            font-weight: 600;
            font-size: clamp(13px, 3vw, 15px);
            color: var(--text-muted);
            border: none;
            padding: 10px 16px;
            border-radius: 50px;
            transition: var(--transition);
            white-space: nowrap;
            background: transparent;
        }

        .checkout-wrapper .nav-tabs .nav-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .checkout-wrapper .nav-tabs .nav-link.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(26, 136, 109, 0.3);
        }

        .checkout-wrapper .tab-content {
            position: relative;
            z-index: 1;
        }

        /* IMPORTANT: These class names won't affect navbar */
        .checkout-wrapper .checkout-card-title {
            font-size: clamp(1.5rem, 5vw, 2rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            line-height: 1.3;
            word-break: break-word;
        }

        .checkout-wrapper .checkout-card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary-gold));
            border-radius: 4px;
        }

        .checkout-wrapper .checkout-description {
            font-size: clamp(0.95rem, 3vw, 1.1rem);
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 25px;
            word-break: break-word;
        }

        .checkout-wrapper .stats {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .checkout-wrapper .stat-item {
            flex: 1;
            min-width: 120px;
            background: var(--primary-light);
            padding: 15px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
        }

        .checkout-wrapper .stat-item strong {
            display: block;
            color: var(--primary);
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 5px;
            word-break: break-word;
        }

        .checkout-wrapper .stat-item span {
            color: var(--text-muted);
            font-size: clamp(0.8rem, 2.5vw, 0.95rem);
        }

        .checkout-wrapper .key-features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .checkout-wrapper .key-features-list li {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: var(--primary-light);
            border-radius: var(--radius-md);
            margin-bottom: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
            flex-wrap: wrap;
        }

        .checkout-wrapper .key-features-list li:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-sm);
            border-color: var(--secondary-gold);
        }

        .checkout-wrapper .key-features-list li img {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-md);
            object-fit: cover;
            border: 2px solid var(--secondary-gold);
        }

        .checkout-wrapper .feature-content {
            flex: 1;
            min-width: 150px;
        }

        .checkout-wrapper .feature-content strong {
            display: block;
            font-size: clamp(1rem, 3vw, 1.2rem);
            color: var(--primary);
            margin-bottom: 8px;
            word-break: break-word;
        }

        .checkout-wrapper .feature-content em {
            font-size: clamp(0.85rem, 2.5vw, 1rem);
            color: var(--text-muted);
            font-style: normal;
            line-height: 1.6;
            word-break: break-word;
        }

        /* Right Grid - Checkout Form */
        .checkout-wrapper .checkout-section .right-grid {
            width: 45%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .checkout-wrapper .customer-info,
        .checkout-wrapper .order-summary,
        .checkout-wrapper .payment-methods {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            overflow: hidden;
        }

        .checkout-wrapper .customer-info h2,
        .checkout-wrapper .order-summary h2,
        .checkout-wrapper .payment-methods h2 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }

        .checkout-wrapper .customer-info h2::after,
        .checkout-wrapper .order-summary h2::after,
        .checkout-wrapper .payment-methods h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary-gold));
            border-radius: 3px;
        }

        .checkout-wrapper .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .checkout-wrapper .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .checkout-wrapper .form-group label {
            font-size: clamp(0.85rem, 2.5vw, 0.95rem);
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkout-wrapper .form-group label i {
            color: var(--secondary-gold);
        }

        .checkout-wrapper .form-group input {
            padding: 12px 14px;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-md);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            transition: var(--transition);
            background: white;
            width: 100%;
        }

        .checkout-wrapper .form-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(26, 136, 109, 0.1);
            outline: none;
        }

        .checkout-wrapper .order-summary .entry-header {
            display: flex;
            justify-content: space-between;
            padding: 10px 0 15px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.2);
            font-weight: 600;
            color: var(--text-muted);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .checkout-wrapper .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            flex-wrap: wrap;
            gap: 10px;
        }

        .checkout-wrapper .summary-item:last-child {
            border-bottom: none;
        }

        .checkout-wrapper .summary-item span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            word-break: break-word;
        }

        .checkout-wrapper .summary-item span i {
            color: var(--secondary-gold);
        }

        .checkout-wrapper .summary-item.total {
            margin-top: 10px;
            padding-top: 20px;
            border-top: 2px solid rgba(212, 175, 55, 0.3);
        }

        .checkout-wrapper .summary-item.total span {
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            font-weight: 700;
            color: var(--primary);
        }

        .checkout-wrapper .summary-item.total .row {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* EPS Payment Button */
        .checkout-wrapper .eps-pay-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 16px 18px;
            border-radius: 50px;
            font-size: clamp(1rem, 3.5vw, 1.2rem);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border: 1px solid var(--secondary-gold);
            box-shadow: 0 8px 20px rgba(26, 136, 109, 0.3);
        }

        .checkout-wrapper .eps-pay-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(26, 136, 109, 0.4);
        }

        .checkout-wrapper .eps-pay-btn i {
            font-size: 1.3rem;
        }

        .checkout-wrapper .eps-pay-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .checkout-wrapper .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, .3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .checkout-wrapper .empty-state {
            text-align: center;
            padding: 30px;
            color: var(--text-muted);
            font-size: 1rem;
            background: var(--primary-light);
            border-radius: var(--radius-md);
            border: 2px dashed rgba(212, 175, 55, 0.3);
        }

        .checkout-wrapper .empty-state i {
            font-size: 3rem;
            color: var(--secondary-gold);
            margin-bottom: 1rem;
        }

        .checkout-wrapper .subscription-placeholder {
            background: var(--primary-light);
            padding: 40px;
            text-align: center;
            border-radius: var(--radius-md);
        }

        .checkout-wrapper .subscription-placeholder i {
            font-size: 4rem;
            color: var(--secondary-gold);
        }

        .checkout-wrapper .subscription-placeholder h3 {
            color: var(--primary);
            margin-top: 15px;
            font-size: 1.5rem;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==============================
                   Mobile Responsive Design
                   All scoped within .checkout-wrapper
                   ============================== */
        @media (max-width: 992px) {
            .checkout-wrapper .checkout-section .container {
                flex-direction: column;
                padding: 0 15px;
            }

            .checkout-wrapper .checkout-section .left-grid,
            .checkout-wrapper .checkout-section .right-grid {
                width: 100%;
            }

            .checkout-wrapper .stats {
                flex-direction: column;
            }

            .checkout-wrapper .stat-item {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .checkout-wrapper #hero {
                padding: 40px 12px;
            }

            .checkout-wrapper #hero h1 {
                font-size: 24px;
            }

            .checkout-wrapper #hero p {
                font-size: 14px;
            }

            .checkout-wrapper .checkout-section {
                padding: 30px 0;
            }

            .checkout-wrapper .checkout-section .left-grid .card,
            .checkout-wrapper .customer-info,
            .checkout-wrapper .order-summary,
            .checkout-wrapper .payment-methods {
                padding: 18px;
            }

            .checkout-wrapper .form-row {
                flex-direction: column;
                gap: 15px;
            }

            .checkout-wrapper .form-group {
                width: 100%;
            }

            .checkout-wrapper .form-group input {
                padding: 10px 12px;
                font-size: 14px;
            }

            .checkout-wrapper .nav-tabs .nav-link {
                padding: 8px 14px;
                font-size: 13px;
            }

            .checkout-wrapper .key-features-list li {
                padding: 15px;
                gap: 12px;
            }

            .checkout-wrapper .key-features-list li img {
                width: 60px;
                height: 60px;
            }

            .checkout-wrapper .feature-content strong {
                font-size: 1rem;
            }

            .checkout-wrapper .feature-content em {
                font-size: 0.9rem;
            }

            .checkout-wrapper .entry-header {
                font-size: 0.9rem;
            }

            .checkout-wrapper .summary-item {
                padding: 10px 0;
            }

            .checkout-wrapper .summary-item span {
                font-size: 0.95rem;
            }

            .checkout-wrapper .summary-item.total span {
                font-size: 1.1rem;
            }

            .checkout-wrapper .eps-pay-btn {
                padding: 14px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .checkout-wrapper #hero {
                padding: 30px 10px;
            }

            .checkout-wrapper #hero h1 {
                font-size: 20px;
                padding: 0 5px;
            }

            .checkout-wrapper #hero p {
                font-size: 13px;
                padding: 0 8px;
            }

            .checkout-wrapper .hero-dome {
                width: 80px;
                height: 30px;
            }

            .checkout-wrapper #hero svg {
                width: 50px;
                height: 35px;
            }

            .checkout-wrapper .checkout-section .left-grid .card,
            .checkout-wrapper .customer-info,
            .checkout-wrapper .order-summary,
            .checkout-wrapper .payment-methods {
                padding: 15px;
            }

            .checkout-wrapper .checkout-card-title {
                font-size: 1.3rem;
                padding-bottom: 12px;
            }

            .checkout-wrapper .checkout-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .checkout-wrapper .nav-tabs .nav-link {
                padding: 6px 10px;
                font-size: 11px;
            }

            .checkout-wrapper .nav-tabs .nav-link i {
                margin-right: 4px;
                font-size: 0.9rem;
            }

            .checkout-wrapper .stat-item {
                padding: 12px;
            }

            .checkout-wrapper .stat-item strong {
                font-size: 1rem;
            }

            .checkout-wrapper .stat-item span {
                font-size: 0.8rem;
            }

            .checkout-wrapper .key-features-list li {
                padding: 12px;
                gap: 10px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .checkout-wrapper .key-features-list li img {
                width: 50px;
                height: 50px;
            }

            .checkout-wrapper .feature-content {
                text-align: center;
            }

            .checkout-wrapper .feature-content strong {
                font-size: 0.95rem;
                text-align: center;
            }

            .checkout-wrapper .feature-content em {
                font-size: 0.85rem;
            }

            .checkout-wrapper .customer-info h2,
            .checkout-wrapper .order-summary h2,
            .checkout-wrapper .payment-methods h2 {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }

            .checkout-wrapper .customer-info h2 i,
            .checkout-wrapper .order-summary h2 i,
            .checkout-wrapper .payment-methods h2 i {
                font-size: 1rem;
            }

            .checkout-wrapper .form-group label {
                font-size: 0.85rem;
            }

            .checkout-wrapper .form-group input {
                padding: 8px 10px;
                font-size: 13px;
            }

            .checkout-wrapper .entry-header {
                font-size: 0.8rem;
                padding: 8px 0 12px;
            }

            .checkout-wrapper .summary-item {
                padding: 8px 0;
            }

            .checkout-wrapper .summary-item span {
                font-size: 0.9rem;
            }

            .checkout-wrapper .summary-item span i {
                font-size: 0.9rem;
            }

            .checkout-wrapper .summary-item.total {
                padding-top: 15px;
            }

            .checkout-wrapper .summary-item.total span {
                font-size: 1rem;
            }

            .checkout-wrapper .summary-item.total .row {
                gap: 5px;
            }

            .checkout-wrapper .payment-details {
                padding: 15px;
            }

            .checkout-wrapper .payment-details i.fa-credit-card {
                font-size: 2.5rem !important;
            }

            .checkout-wrapper .payment-details h4 {
                font-size: 1rem;
                margin: 8px 0;
            }

            .checkout-wrapper .payment-details p {
                font-size: 0.85rem;
            }

            .checkout-wrapper .eps-pay-btn {
                padding: 12px;
                font-size: 0.95rem;
                gap: 8px;
            }

            .checkout-wrapper .eps-pay-btn i {
                font-size: 1rem;
            }

            .checkout-wrapper .spinner {
                width: 16px;
                height: 16px;
            }

            .checkout-wrapper .empty-state {
                padding: 20px;
                font-size: 0.9rem;
            }

            .checkout-wrapper .empty-state i {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 360px) {
            .checkout-wrapper #hero h1 {
                font-size: 18px;
            }

            .checkout-wrapper #hero p {
                font-size: 12px;
            }

            .checkout-wrapper .checkout-section .left-grid .card,
            .checkout-wrapper .customer-info,
            .checkout-wrapper .order-summary,
            .checkout-wrapper .payment-methods {
                padding: 12px;
            }

            .checkout-wrapper .checkout-card-title {
                font-size: 1.2rem;
            }

            .checkout-wrapper .nav-tabs .nav-link {
                padding: 5px 8px;
                font-size: 10px;
            }

            .checkout-wrapper .stat-item {
                padding: 10px;
            }

            .checkout-wrapper .stat-item strong {
                font-size: 0.9rem;
            }

            .checkout-wrapper .stat-item span {
                font-size: 0.75rem;
            }

            .checkout-wrapper .feature-content strong {
                font-size: 0.9rem;
            }

            .checkout-wrapper .feature-content em {
                font-size: 0.8rem;
            }

            .checkout-wrapper .summary-item span {
                font-size: 0.85rem;
            }

            .checkout-wrapper .eps-pay-btn {
                padding: 10px;
                font-size: 0.9rem;
            }
        }

        /* Landscape Mode */
        @media (orientation: landscape) and (max-height: 600px) {
            .checkout-wrapper #hero {
                padding: 20px 15px;
            }

            .checkout-wrapper #hero h1 {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .checkout-wrapper #hero p {
                font-size: 14px;
            }

            .checkout-wrapper .checkout-section {
                padding: 20px 0;
            }

            .checkout-wrapper .form-row {
                flex-direction: row;
            }
        }

        /* RTL Support */
        [dir="rtl"] .checkout-wrapper .checkout-card-title::after {
            left: auto;
            right: 0;
        }

        [dir="rtl"] .checkout-wrapper .customer-info h2::after,
        [dir="rtl"] .checkout-wrapper .order-summary h2::after,
        [dir="rtl"] .checkout-wrapper .payment-methods h2::after {
            left: auto;
            right: 0;
        }

        [dir="rtl"] .checkout-wrapper .key-features-list li:hover {
            transform: translateX(-5px);
        }
