/* ========================================
   PAYMENT PAGE - COMPLETE STYLING
   File: public/css/payment-page.css
======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --pmt-primary-orange: #ff7a00;
    --pmt-orange-light: #ff9533;
    --pmt-orange-dark: #e66a00;
    --pmt-white: #ffffff;
    --pmt-cream: #f5e7da;
    --pmt-dark: #0d0d0d;
    --pmt-dark-light: #1a1a1a;
    --pmt-dark-medium: #222222;
    --pmt-dark-card: #181818;
    --pmt-silver: #e5e7eb;
    --pmt-silver-light: #f3f4f6;
    --pmt-silver-dark: #d1d5db;
    --pmt-black: #000000;

    /* Gradients */
    --pmt-gradient-primary: linear-gradient(135deg, #ff7a00, #ff9533);
    --pmt-gradient-secondary: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --pmt-gradient-glass: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 149, 51, 0.04));
    --pmt-gradient-overlay: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(26, 26, 26, 0.8));
    --pmt-gradient-card: linear-gradient(145deg, rgba(24, 24, 24, 0.95), rgba(34, 34, 34, 0.85));

    /* Shadows */
    --pmt-shadow-glow: 0 0 50px rgba(255, 122, 0, 0.35);
    --pmt-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --pmt-shadow-hover: 0 30px 80px rgba(255, 122, 0, 0.3);
    --pmt-shadow-primary: 0 25px 80px rgba(255, 122, 0, 0.35);
    --pmt-shadow-secondary: 0 15px 50px rgba(0, 0, 0, 0.6);

    /* Transitions */
    --pmt-transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --pmt-transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --pmt-radius-sm: 8px;
    --pmt-radius-md: 16px;
    --pmt-radius-lg: 24px;
    --pmt-radius-xl: 32px;

    /* Blur Effects */
    --pmt-blur-glass: blur(25px);
}

/* ========================================
   MAIN SECTION
======================================== */
.payment-section {
    padding: 80px 20px;
    background: var(--pmt-gradient-overlay);
    min-height: 100vh;
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 122, 0, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(255, 149, 51, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   PAGE TITLE
======================================== */
.payment-page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 50px;
    background: var(--pmt-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.payment-page-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 120px;
    height: 5px;
    background: var(--pmt-gradient-primary);
    border-radius: 3px;
    box-shadow: var(--pmt-shadow-glow);
}

/* ========================================
   LAYOUT
======================================== */
.payment-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* ========================================
   ORDER SUMMARY - LEFT COLUMN
======================================== */
.payment-car-summary {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.payment-car-card {
    background: var(--pmt-gradient-card);
    border-radius: var(--pmt-radius-lg);
    padding: 35px;
    box-shadow: var(--pmt-shadow-card);
    border: 1px solid rgba(255, 122, 0, 0.15);
    backdrop-filter: var(--pmt-blur-glass);
    transition: var(--pmt-transition-smooth);
    position: relative;
    overflow: hidden;
}

.payment-car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pmt-gradient-primary);
    box-shadow: var(--pmt-shadow-glow);
}

.payment-car-card::after {
    content: '💳';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.1;
}

.payment-car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pmt-shadow-hover);
}

.payment-car-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--pmt-white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.payment-car-card h3::before {
    content: '📋';
    font-size: 28px;
}

.payment-car-card p {
    font-size: 15px;
    color: var(--pmt-silver);
    margin-bottom: 18px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    transition: var(--pmt-transition-smooth);
}

.payment-car-card p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--pmt-primary-orange);
    font-size: 14px;
    font-weight: 900;
}

.payment-car-card p:hover {
    color: var(--pmt-white);
    padding-left: 30px;
}

.payment-car-card p strong {
    color: var(--pmt-white);
    font-weight: 700;
    display: inline-block;
    min-width: 160px;
}

/* ========================================
   FORM CONTAINER - RIGHT COLUMN
======================================== */
.payment-form-container {
    background: var(--pmt-gradient-card);
    border-radius: var(--pmt-radius-lg);
    padding: 45px;
    box-shadow: var(--pmt-shadow-card);
    border: 1px solid rgba(255, 122, 0, 0.15);
    backdrop-filter: var(--pmt-blur-glass);
    position: relative;
}

.payment-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--pmt-gradient-primary);
    border-radius: var(--pmt-radius-lg);
    opacity: 0;
    z-index: -1;
    transition: var(--pmt-transition-smooth);
}

.payment-form-container:hover::before {
    opacity: 0.1;
}

/* ========================================
   SECTION BLOCKS
======================================== */
.payment-section-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 122, 0, 0.1);
    position: relative;
}

.payment-section-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-section-block::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--pmt-gradient-primary);
    border-radius: 2px;
}

.payment-section-block h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--pmt-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-section-block h3::before {
    content: '🔐';
    font-size: 26px;
}

/* ========================================
   PAYMENT METHODS
======================================== */
.payment-payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.payment-payment-option {
    cursor: pointer;
}

.payment-payment-option input[type="radio"] {
    display: none;
}

.payment-option-card {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pmt-radius-md);
    padding: 30px 20px;
    cursor: pointer;
    transition: var(--pmt-transition-smooth);
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pmt-gradient-glass);
    transition: var(--pmt-transition-smooth);
}

.payment-payment-option input[type="radio"]:checked + .payment-option-card {
    border-color: var(--pmt-primary-orange);
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.2), rgba(255, 149, 51, 0.15));
    box-shadow: var(--pmt-shadow-primary);
    transform: translateY(-5px) scale(1.02);
}

.payment-payment-option input[type="radio"]:checked + .payment-option-card::before {
    left: 0;
}

.payment-payment-option input[type="radio"]:checked + .payment-option-card::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--pmt-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pmt-white);
    font-size: 16px;
    font-weight: 900;
    box-shadow: var(--pmt-shadow-glow);
}

.payment-option-card:hover {
    border-color: var(--pmt-orange-light);
    transform: translateY(-3px);
    box-shadow: var(--pmt-shadow-hover);
}

.payment-option-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--pmt-white);
    position: relative;
    z-index: 1;
    margin: 12px 0 8px 0;
}

.payment-option-card p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.payment-option-card i {
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* ========================================
   FORM ELEMENTS
======================================== */
.payment-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.payment-form-group label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--pmt-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-form-group label::before {
    content: '▸';
    color: var(--pmt-primary-orange);
    font-size: 14px;
}

.payment-form-input {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pmt-radius-sm);
    font-size: 15px;
    transition: var(--pmt-transition-smooth);
    background: rgba(26, 26, 26, 0.6);
    color: var(--pmt-white);
    font-weight: 500;
}

.payment-form-input::placeholder {
    color: var(--pmt-silver-dark);
}

.payment-form-input:focus {
    outline: none;
    border-color: var(--pmt-primary-orange);
    background: rgba(255, 122, 0, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
    transform: translateY(-2px);
}

.payment-form-input[readonly] {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
    font-weight: 700;
    cursor: not-allowed;
}

/* ========================================
   SUBMIT BUTTON
======================================== */
.payment-submit-btn {
    width: 100%;
    background: var(--pmt-gradient-primary);
    color: var(--pmt-white);
    border: none;
    padding: 22px;
    border-radius: var(--pmt-radius-md);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--pmt-transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: var(--pmt-shadow-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.payment-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.payment-submit-btn:hover::before {
    width: 500px;
    height: 500px;
}

.payment-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--pmt-shadow-hover);
}

.payment-submit-btn:active {
    transform: translateY(-2px);
}

.payment-submit-btn i {
    font-size: 22px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.payment-submit-btn span {
    position: relative;
    z-index: 1;
}

.payment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    pointer-events: none;
}

.payment-submit-btn:not(:disabled):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.4);
}

.payment-submit-btn:not(:disabled):active {
    transform: translateY(-1px) scale(0.98);
}

/* ========== ANIMATIONS ========== */
.pmt-dynamic-section {
    animation: pmt-fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pmt-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pmt-spin {
    to { transform: rotate(360deg); }
}

@keyframes pmt-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes pmt-shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes pmt-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8); }
}

@keyframes pmt-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes pmt-checkmark {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ========== LOADING SPINNER ========== */
.pmt-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: pmt-spin 0.8s linear infinite;
    margin: 0 auto;
}

/* ========== STRIPE CARD ELEMENT STATES ========== */
#pmt-card-element {
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    min-height: 50px;
    transition: all 0.3s ease;
}

#pmt-card-element.StripeElement--focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 10px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

#pmt-card-element.StripeElement--invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    animation: pmt-shake 0.4s ease;
}

#pmt-card-element.StripeElement--complete {
    border-color: #10b981 !important;
    background: #f0fdf4;
}

/* ========== CARD ERRORS ========== */
#pmt-card-errors {
    color: #dc2626;
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    background: #fee2e2;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    display: none;
}

#pmt-card-errors:not(:empty) {
    display: block;
    animation: pmt-fadeInUp 0.3s ease;
}

/* ========== CASH PAYMENT SECTION ========== */
.pmt-cash-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.35), 
                0 5px 15px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.pmt-cash-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pmt-pulse 3s ease-in-out infinite;
}

.pmt-cash-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pmt-cash-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: pmt-pulse 2s ease-in-out infinite;
}

.pmt-cash-title {
    flex: 1;
}

.pmt-cash-title h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pmt-cash-title p {
    color: #d1fae5;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.pmt-cash-content {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.pmt-cash-content p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}

.pmt-cash-content strong {
    font-size: 16px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ========== CARD PAYMENT SECTION ========== */
.pmt-card-section {
    position: relative;
}

.pmt-card-header {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.35),
                0 5px 15px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.pmt-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 100%);
    animation: pmt-shimmer 3s infinite;
}

.pmt-card-header-content {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.pmt-card-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pmt-card-title h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pmt-card-title p {
    color: #bfdbfe;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* ========== CARD FORM GROUP ========== */
.pmt-card-form-group {
    margin-bottom: 25px;
}

.pmt-card-form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--pmt-white);
}

/* ========== SUCCESS MESSAGE BOX ========== */
.pmt-success-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 5px solid #10b981;
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.pmt-success-box p {
    color: #065f46;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.pmt-success-box strong {
    font-weight: 800;
    color: #047857;
}

/* ========== LOADING OVERLAY ========== */
.pmt-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.pmt-loading-overlay.active {
    display: flex !important;
}

.pmt-loading-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: pmt-fadeInUp 0.4s ease;
}

.pmt-loading-content h3 {
    margin: 20px 0 12px 0;
    color: #1f2937;
    font-size: 22px;
    font-weight: 800;
}

.pmt-loading-content p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* ========== ERROR MESSAGE ENHANCEMENT ========== */
.payment-error-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #dc2626;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    animation: pmt-shake 0.5s ease;
}

.payment-error-box h4 {
    color: #dc2626;
    margin: 0 0 15px 0;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-error-box ul {
    margin: 0;
    padding-left: 25px;
    color: #991b1b;
}

.payment-error-box li {
    margin: 8px 0;
    font-weight: 600;
    line-height: 1.6;
}

/* ========== ENHANCED HOVER EFFECTS ========== */
.payment-option-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-option-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.3);
}

.payment-payment-option input[type="radio"]:checked + .payment-option-card {
    animation: pmt-pulse 0.5s ease;
}

.payment-payment-option input[type="radio"]:checked + .payment-option-card::after {
    animation: pmt-checkmark 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .payment-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .payment-car-summary {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .payment-section {
        padding: 50px 15px !important;
    }
    
    .payment-page-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }
    
    .payment-car-card,
    .payment-form-container {
        padding: 25px !important;
    }
    
    .payment-payment-methods {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .payment-option-card {
        padding: 25px !important;
        min-height: auto !important;
    }
    
    .payment-option-card h4 {
        font-size: 18px !important;
    }
    
    .payment-option-card p {
        font-size: 13px !important;
    }
    
    .payment-submit-btn {
        padding: 18px !important;
        font-size: 17px !important;
    }
    
    .pmt-cash-section,
    .pmt-card-header {
        padding: 28px !important;
    }
    
    .pmt-cash-icon-circle,
    .pmt-card-icon-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 30px !important;
    }
    
    .pmt-cash-title h4,
    .pmt-card-title h4 {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 30px 10px !important;
    }
    
    .payment-page-title {
        font-size: 26px !important;
        margin-bottom: 25px !important;
    }
    
    .payment-car-card,
    .payment-form-container {
        padding: 20px !important;
        border-radius: 14px !important;
    }
    
    .payment-car-card h3 {
        font-size: 20px !important;
    }
    
    .payment-car-card p {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .payment-section-block h3 {
        font-size: 19px !important;
    }
    
    .payment-option-card {
        padding: 20px 15px !important;
    }
    
    .payment-option-card i {
        font-size: 28px !important;
    }
    
    .payment-option-card h4 {
        font-size: 16px !important;
    }
    
    .payment-option-card p {
        font-size: 12px !important;
    }
    
    .payment-form-group label {
        font-size: 14px !important;
    }
    
    .payment-form-input {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    
    .payment-submit-btn {
        padding: 16px !important;
        font-size: 16px !important;
        gap: 10px !important;
    }
    
    .payment-submit-btn i {
        font-size: 18px !important;
    }
    
    .pmt-loading-content {
        margin: 0 20px;
        padding: 35px 25px !important;
    }
    
    .pmt-loading-content h3 {
        font-size: 19px !important;
    }
    
    .pmt-loading-content p {
        font-size: 14px !important;
    }
    
    .pmt-cash-section,
    .pmt-card-header {
        padding: 25px 20px !important;
        border-radius: 16px !important;
    }
    
    .pmt-cash-icon-circle,
    .pmt-card-icon-circle {
        width: 55px !important;
        height: 55px !important;
        font-size: 26px !important;
    }
    
    .pmt-cash-title h4,
    .pmt-card-title h4 {
        font-size: 19px !important;
    }
    
    .pmt-cash-content {
        padding: 20px !important;
    }
    
    .pmt-cash-content p {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }
    
    .payment-error-box {
        padding: 20px !important;
    }
}

@media (max-width: 375px) {
    .payment-page-title {
        font-size: 24px !important;
    }
    
    .payment-car-card,
    .payment-form-container {
        padding: 18px !important;
    }
    
    .payment-section-block {
        margin-bottom: 25px !important;
        padding-bottom: 25px !important;
    }
    
    .pmt-cash-section,
    .pmt-card-header {
        padding: 20px 16px !important;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .pmt-loading-overlay {
        display: none !important;
    }
}