/**
 * Sleek, Premium Styles for Congress Registration Wizard.
 */

/* Import Outfit font for premium modern look */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.congress-wizard {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 1120px;
    margin: 40px auto;
    background: #ffffff;
    color: #0f172a !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Ensure all text inside wizard defaults to dark slate and overrides dark themes */
.congress-wizard,
.congress-wizard table,
.congress-wizard th,
.congress-wizard td,
.congress-wizard tr,
.congress-wizard p,
.congress-wizard span:not(.node-circle):not(.dashicons):not(.congress-badge),
.congress-wizard label,
.congress-wizard h1,
.congress-wizard h2,
.congress-wizard h3,
.congress-wizard h4,
.congress-wizard h5,
.congress-wizard h6,
.congress-wizard .step-title,
.congress-wizard .step-desc {
    color: #334155 !important;
}

.congress-wizard h1,
.congress-wizard h2,
.congress-wizard h3,
.congress-wizard h4,
.congress-wizard h5,
.congress-wizard h6,
.congress-wizard .step-title {
    color: #0f172a !important;
}

/* Steps Header Wizard */
.wizard-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    position: relative;
    user-select: none;
}

.wizard-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.node-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-label {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: color 0.4s ease;
}

.wizard-step-line {
    flex: 1;
    height: 2px;
    background-color: #e2e8f0;
    margin: 0 -10px;
    position: relative;
    top: -12px; /* aligns with middle of circle */
    z-index: 1;
    transition: background-color 0.4s ease;
}

/* Node States */
.wizard-step-node.active .node-circle {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
    transform: scale(1.1);
}

.wizard-step-node.active .node-label {
    color: #1e1b4b;
    font-weight: 700;
}

.wizard-step-node.completed .node-circle {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    transform: scale(1);
}

.wizard-step-node.completed .node-label {
    color: #10b981;
}

/* Form Container Content */
.form-section {
    opacity: 1;
    transform: none;
    margin-bottom: 20px;
}

/* Headers */
.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: #64748b;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.deadline-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #fef3c7;
    color: #d97706;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    margin-left: 10px;
}

/* Layout Form Grid */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 18px;
}

.form-group {
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    font-family: inherit;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #0f172a;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background-color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
    outline: none;
}

/* Field errors styling */
.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.form-group input.has-error:focus,
.form-group select.has-error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

.field-info {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Toggle Switch Styling */
.toggle-container {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 34px;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-text {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* Selection Cards (Registration Type / Hotel rooms) */
.card-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 10px;
}

.selection-card {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    display: flex;
}

.selection-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.card-price {
    font-size: 20px;
    font-weight: 800;
    color: #4f46e5;
    margin-top: auto;
}

.per-night {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.price-type {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

/* Selection card active hover states */
.selection-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.selection-card.active {
    border-color: #4f46e5;
    background-color: #faf5ff;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

.selection-card.active .card-price {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Checkbox Cards List (Social Program) */
.checkbox-selection-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-item-card {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.2s ease;
}

.checkbox-item-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: #4f46e5;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-item-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.item-price {
    font-size: 15px;
    font-weight: 700;
    color: #4f46e5;
}

.checkbox-item-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.checkbox-item-card.active {
    border-color: #4f46e5;
    background-color: #faf5ff;
}

/* Payment Method Selection Card */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.payment-method-card {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.method-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-icon {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 8px;
}

.method-icon span {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.method-title {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-align: center;
}

.payment-method-card.active {
    border-color: #4f46e5;
    background-color: #faf5ff;
}

.payment-method-card.active .method-icon,
.payment-method-card.active .method-title {
    color: #4f46e5;
}

/* Instruction details box styling */
.instruction-box {
    background-color: #f8fafc;
    border-left: 4px solid #4f46e5;
    border-radius: 0 10px 10px 0;
    padding: 20px;
    margin-bottom: 15px;
}

.instruction-box h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.instruction-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 10px;
}

.warning-text {
    font-size: 13px !important;
    background: #fffbeb;
    color: #b45309 !important;
    border: 1px solid #fef3c7;
    border-radius: 6px;
    padding: 10px 12px;
}

/* Invoice Box Summary */
.invoice-summary-box {
    background: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.invoice-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #475569;
}

.invoice-item span:first-child {
    font-weight: 500;
}

.invoice-item span:last-child {
    font-weight: 700;
    color: #0f172a;
}

.invoice-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.invoice-total span:first-child {
    font-size: 13px;
    font-weight: 700;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.invoice-total span:last-child {
    font-size: 24px;
    font-weight: 800;
    color: #1e40af;
}

/* Navigation Buttons Wizard */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.wizard-btn {
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
}

.btn-next, .btn-submit {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.btn-prev {
    background-color: #f1f5f9;
    color: #475569;
}

.btn-prev:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

/* Submission Error Banner */
.wizard-error-message, .wizard-step-error {
    background-color: #fef2f2;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #fca5a5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 10px;
}

.wizard-step-error {
    margin-top: 20px;
    margin-bottom: 0;
}

/* SUCCESS SCREEN */
.success-screen {
    text-align: center;
    padding: 20px 10px;
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon-wrapper span {
    font-size: 48px;
    width: 48px;
    height: 48px;
    line-height: 1;
}

.success-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 12px;
}

.success-message {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.registration-id-box {
    background-color: #f0fdf4;
    border: 2px dashed #86efac;
    color: #166534;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 35px;
}

.registration-id-box strong {
    font-size: 20px;
    color: #15803d;
    margin-left: 8px;
}

.success-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.success-column {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.success-column h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.success-column p {
    font-size: 14px;
    margin: 6px 0;
    color: #475569;
}

.success-instructions-box {
    text-align: left;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    padding: 20px;
}

.success-instructions-box h5 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
}

.success-instructions-box p {
    font-size: 13px;
    color: #1e40af;
    line-height: 1.5;
}

.btn-reset {
    background-color: #0f172a;
    color: #ffffff;
}

.btn-reset:hover {
    background-color: #1e293b;
}

/* Responsive Overrides */
@media(max-width: 768px) {
    .congress-wizard {
        padding: 20px;
        margin: 20px auto;
        border-radius: 12px;
    }
    
    .wizard-steps-header {
        margin-bottom: 30px;
    }
    
    .node-label {
        display: none; /* Hide labels on mobile to prevent clutter */
    }
    
    .wizard-step-line {
        top: -20px; /* Adjust line position since label is hidden */
    }
    
    .col-3, .col-6, .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .form-row {
        margin-bottom: 0;
    }
    
    .card-selection-grid {
        grid-template-columns: 1fr;
    }
}

/* Inline Login Form Styling */
#congress-login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#congress-login-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

#congress-login-form label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

#congress-login-form input[type="text"],
#congress-login-form input[type="password"] {
    font-family: inherit;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #0f172a;
    transition: all 0.2s ease;
}

#congress-login-form input[type="text"]:focus,
#congress-login-form input[type="password"]:focus {
    background-color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
    outline: none;
}

#congress-login-form .login-remember {
    flex-direction: row;
    align-items: center;
}

#congress-login-form .login-remember label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 0;
}

#congress-login-form .login-remember input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: #6366f1;
}

#congress-login-form .login-submit {
    margin-top: 10px;
}

#congress-login-form input[type="submit"] {
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    width: 100%;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transition: all 0.2s ease-in-out;
}

#congress-login-form input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

/* SMS OTP Login Tabs & Form Styles */
.congress-login-tabs {
    background: #f1f5f9 !important;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 25px;
}

.login-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
}

.login-tab-btn:hover {
    color: #1e293b;
}

.login-tab-btn.active {
    background: #ffffff !important;
    color: #4f46e5 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

#otp-identifier, #otp-code {
    font-family: inherit;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    background-color: #f8fafc;
    color: #0f172a;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

#otp-identifier:focus, #otp-code:focus {
    background-color: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
    outline: none;
}

#otp-code {
    width: 100% !important;
    max-width: 240px;
    margin: 0 auto;
    display: block;
    font-size: 24px;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 700;
}

/* ============================================
   SECURITY TRUST BAR
   ============================================ */
.wizard-security-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 4px;
}

.security-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #15803d !important;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
}

.security-bar-item svg {
    flex-shrink: 0;
    color: #16a34a;
}

.security-bar-divider {
    width: 1px;
    height: 18px;
    background: #86efac;
    flex-shrink: 0;
}

@media (max-width: 580px) {
    .security-bar-divider { display: none; }
    .wizard-security-bar { flex-direction: column; gap: 6px; }
    .security-bar-item { padding: 2px 8px; }
}

/* ============================================
   CREDIT CARD FORM — REDESIGNED
   ============================================ */
.cc-form-container {
    margin-top: 22px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* 3D Secure Banner */
.cc-3d-secure-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #1e3a5f, #1e40af);
    padding: 16px 22px;
    flex-wrap: wrap;
}

.cc-3d-secure-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cc-3d-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    flex-shrink: 0;
}

.cc-3d-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.3;
    margin-bottom: 3px;
}

.cc-3d-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.80) !important;
    line-height: 1.4;
}

.cc-3d-secure-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cc-troy-badge {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 900;
    color: #0c4a6e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 20px;
}

.cc-akbank-badge {
    background: #dc2626;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 900;
    color: #ffffff !important;
    letter-spacing: 1px;
    line-height: 20px;
}

/* Card fields container */
.cc-fields-body {
    padding: 22px 22px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.cc-group {
    display: flex;
    flex-direction: column;
}

.cc-col-12 { flex: 0 0 100%; }
.cc-col-4  { flex: 1; }

.cc-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cc-input {
    font-family: inherit;
    font-size: 15px;
    padding: 11px 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    color: #0f172a;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
}

.cc-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.cc-input.has-error {
    border-color: #ef4444;
    background: #fef2f2;
}

.cc-input-number {
    letter-spacing: 2px;
    font-size: 16px;
}

/* Trust Footer */
.cc-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 22px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.cc-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.cc-trust-ssl  { color: #16a34a !important; }
.cc-trust-3d   { color: #2563eb !important; }
.cc-trust-bank { color: #64748b !important; }

@media (max-width: 600px) {
    .cc-3d-secure-banner { flex-direction: column; align-items: flex-start; }
    .cc-3d-secure-right  { width: 100%; justify-content: flex-start; }
    .cc-row              { flex-wrap: wrap; }
    .cc-col-4            { flex: 0 0 100%; }
    .cc-trust-footer     { gap: 12px; }
}
