* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --primary-dark: #333333;
    --light-bg: #f5f5f5;
    --dark-text: #1a1a1a;
    --medium-text: #666666;
    --light-text: #999999;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --error: #d32f2f;
    --success: #2e7d32;
    --warning: #ff9800;
    --info: #2196f3;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.receipt-card {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #000000;
    box-shadow: none;
}

.regular-card {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #dddddd;
}

.receipt-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000000;
}

.studio-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
}

.receipt-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666666;
    margin-top: 5px;
}

.receipt-divider {
    height: 1px;
    background: #000000;
    margin: 1rem 0;
}

.receipt-divider-dashed {
    height: 1px;
    background: repeating-linear-gradient(90deg, #000000, #000000 8px, transparent 8px, transparent 16px);
    margin: 1rem 0;
}

.info-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 5px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.info-label {
    font-weight: 500;
    color: #555555;
}

.info-value {
    font-weight: 500;
    color: #000000;
    text-align: right;
    word-break: break-word;
    max-width: 60%;
}

.amount-box {
    background: #000000;
    color: #ffffff;
    padding: 1.2rem;
    text-align: center;
    margin: 1rem 0;
    border: none;
}

.amount-box .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.amount-box .amount {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: 1px;
}

.amount-box .sub-label {
    font-size: 0.7rem;
    margin-top: 5px;
    opacity: 0.6;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
}

.pending-notice {
    background: #f8f8f8;
    border-left: 3px solid #000000;
    padding: 12px;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #333333;
}

.pending-notice i {
    margin-right: 6px;
}

.social-section {
    text-align: center;
    margin: 1.5rem 0 1rem;
    padding: 1rem 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.social-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
}

.social-icon.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-icon.facebook:hover {
    background: #0d5bd9;
    transform: translateY(-2px);
}

.social-icon.messenger {
    background: #0084ff;
    color: #ffffff;
}

.social-icon.messenger:hover {
    background: #0066cc;
    transform: translateY(-2px);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-icon.instagram:hover {
    transform: translateY(-2px);
}

.social-icon.youtube {
    background: #ff0000;
    color: #ffffff;
}

.social-icon.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 24px;
}

.btn {
    width: 100%;
    padding: 14px;
    border: 1px solid #000000;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Instrument Sans', sans-serif;
    text-align: center;
    text-decoration: none;
    display: block;
    background: transparent;
    color: #000000;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.btn-primary:hover:not(:disabled) {
    background: #333333;
}

.btn-primary:disabled {
    background: #cccccc;
    border-color: #cccccc;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #cccccc;
    color: #333333;
}

.btn-secondary:hover {
    border-color: #000000;
    background: #f8f8f8;
}

.btn-download {
    background: #000000;
    color: #ffffff;
    border: none;
}

.btn-download:hover {
    background: #333333;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.button-group .btn {
    flex: 1;
    margin-top: 0;
}

.error-message {
    background: #f8f8f8;
    border-left: 3px solid #000000;
    color: #000000;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #555555;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cccccc;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    color: #000000;
}

input:focus, select:focus {
    border-color: #000000;
}

.payment-method-option {
    padding: 1rem;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.payment-method-option:hover {
    border-color: #000000;
    background: #f8f8f8;
}

.payment-method-option.selected {
    border-color: #000000;
    background: #f8f8f8;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.payment-method-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.payment-method-logo-placeholder {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

.payment-method-info {
    flex: 1;
}

.payment-method-name {
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
}

.payment-method-desc {
    font-size: 0.7rem;
    color: #666666;
    margin-top: 2px;
}

.payment-details {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #dddddd;
}

.account-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    padding: 5px 0;
    margin-bottom: 10px;
}

.account-label {
    color: #666666;
}

.account-value {
    font-weight: 600;
    color: #000000;
    font-family: monospace;
}

.qr-preview {
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    display: none !important;
}

.qr-preview.active {
    display: block !important;
}

.qr-preview img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.qr-preview img:hover {
    transform: scale(1.05);
}

.qr-click-hint {
    font-size: 0.65rem;
    color: #888;
    margin-top: 8px;
}

.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.qr-modal.active {
    display: flex;
}

.qr-modal-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
}

.qr-modal-content img {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
}

.qr-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.qr-modal-close:hover {
    color: #ddd;
}

.upload-preview {
    margin-top: 12px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #dddddd;
    padding: 12px;
    position: relative;
}

.upload-preview img {
    max-width: 100%;
    max-height: 150px;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
}

.remove-image-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 6px 12px;
    font-size: 0.7rem;
    cursor: pointer;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 3px;
}

.remove-image-btn:hover {
    background: #990000;
}

.file-upload-box {
    border: 1px dashed #aaaaaa;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.file-upload-box:hover {
    border-color: #000000;
    background: #f5f5f5;
}

.file-upload-box i {
    font-size: 2rem;
    color: #666666;
    margin-bottom: 8px;
}

.file-upload-box p {
    color: #666666;
    font-size: 0.85rem;
}

.scan-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #000000;
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    margin-left: 6px;
    border-radius: 4px;
}

.ocr-status {
    margin-top: 12px;
    padding: 10px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.ocr-loading {
    background: #f0f0f0;
    border-left: 3px solid #666666;
}

.ocr-success {
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
    color: #2e7d32;
}

.ocr-error {
    background: #ffebee;
    border-left: 3px solid #f44336;
    color: #c62828;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #cccccc;
    border-top-color: #000000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.help-text {
    font-size: 0.65rem;
    color: #888888;
    margin-top: 6px;
    display: block;
}

hr {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 1rem 0;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f8f8;
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.receipt-item .amount {
    font-weight: 600;
    color: #000000;
}

.receipt-item .remove-receipt {
    color: #cc0000;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 2px 8px;
    border: 1px solid #cc0000;
    border-radius: 3px;
    background: transparent;
}

.receipt-item .remove-receipt:hover {
    background: #cc0000;
    color: white;
}

.total-box {
    background: #000000;
    color: white;
    padding: 12px;
    text-align: center;
    margin: 10px 0;
    border-radius: 4px;
}

.total-box .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.total-box .amount {
    font-size: 1.4rem;
    font-weight: 700;
}

.total-box .status {
    font-size: 0.6rem;
    margin-top: 4px;
}

.total-box .status.ready {
    color: #81c784;
}

.total-box .status.not-ready {
    color: #ffab91;
}

.receipts-list {
    max-height: 200px;
    overflow-y: auto;
    margin: 8px 0;
}

.btn-upload-more {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #f0f0f0;
    border: 1px dashed #666666;
    color: #333333;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Instrument Sans', sans-serif;
    text-align: center;
}

.btn-upload-more:hover {
    background: #e0e0e0;
    border-color: #000000;
}

.btn-upload-more i {
    margin-right: 8px;
}

@media (max-width: 480px) {
    body { padding: 12px; }
    .receipt-card { padding: 1.25rem; }
    .regular-card { padding: 1.25rem; }
    .studio-name { font-size: 1.4rem; }
    .amount-box .amount { font-size: 1.5rem; }
    .payment-method-logo { width: 35px; height: 35px; }
    .payment-method-logo-placeholder { width: 35px; height: 35px; font-size: 18px; }
    .qr-modal-content img { max-width: 220px; }
    .account-details { flex-direction: column; align-items: flex-start; gap: 2px; }
    .info-row { flex-direction: column; gap: 4px; }
    .info-value { text-align: left; max-width: 100%; }
    .button-group { flex-direction: column; }
    .social-icon { width: 40px; height: 40px; font-size: 20px; }
    .social-icon i { font-size: 20px; }
}

.auto-download-note {
    background: #f0f0f0;
    border: 1px solid #dddddd;
    padding: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #333333;
}

.thankyou-text {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin-top: 1rem;
}

.monospace {
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* ===== CUSTOM MODAL ===== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.custom-modal-overlay.active {
    display: flex;
}

.custom-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 440px;
    width: 92%;
    padding: 32px 28px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.custom-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.custom-modal-icon.warning {
    background: #fff3e0;
    color: #e65100;
}

.custom-modal-icon.danger {
    background: #ffebee;
    color: #c62828;
}

.custom-modal-icon.info {
    background: #e3f2fd;
    color: #0d47a1;
}

.custom-modal-icon.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.custom-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Instrument Sans', sans-serif;
}

.custom-modal-message {
    font-size: 0.9rem;
    text-align: center;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Instrument Sans', sans-serif;
}

.custom-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.custom-modal-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Instrument Sans', sans-serif;
    text-align: center;
    min-width: 100px;
}

.custom-modal-actions .btn-cancel {
    background: #f0f0f0;
    color: #333333;
}

.custom-modal-actions .btn-cancel:hover {
    background: #e0e0e0;
}

.custom-modal-actions .btn-confirm {
    background: #cc0000;
    color: #ffffff;
}

.custom-modal-actions .btn-confirm:hover {
    background: #aa0000;
}

.custom-modal-actions .btn-confirm-success {
    background: #2e7d32;
    color: #ffffff;
}

.custom-modal-actions .btn-confirm-success:hover {
    background: #1b5e20;
}

.custom-modal-actions .btn-confirm-info {
    background: #0d47a1;
    color: #ffffff;
}

.custom-modal-actions .btn-confirm-info:hover {
    background: #0a2e6e;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== NOTIFICATION STYLES ===== */
.custom-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    max-width: 420px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 100000;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9rem;
    animation: slideInRight 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.custom-notification-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.custom-notification-error {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.custom-notification-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
}

.custom-notification-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #e65100;
}

.custom-notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.custom-notification-close:hover {
    color: #333;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Receipt item removal animation */
.receipt-item-removing {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* ===== FLOATING SOCIAL MEDIA ICONS ===== */
.floating-socials {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: floatIn 0.5s ease forwards;
    opacity: 0;
    transform: translateX(30px);
    position: relative;
}

.floating-social-icon:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bd9);
    animation-delay: 0.1s;
}

.floating-social-icon.messenger {
    background: linear-gradient(135deg, #0084ff, #0066cc);
    animation-delay: 0.2s;
}

.floating-social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    animation-delay: 0.3s;
}

.floating-social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    animation-delay: 0.4s;
}

.floating-social-icon i {
    font-size: 22px;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-social-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'Instrument Sans', sans-serif;
}

.floating-social-icon:hover .floating-social-tooltip {
    opacity: 1;
    right: 65px;
}

@media (max-width: 768px) {
    .floating-socials {
        right: 12px;
        bottom: 80px;
        gap: 10px;
    }
    
    .floating-social-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .floating-social-icon i {
        font-size: 18px;
    }
    
    .floating-social-tooltip {
        display: none;
    }
}

/* ===== QR CODE DISPLAY FIXES ===== */
.qr-preview {
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    display: none !important;
    min-height: 60px;
}

.qr-preview.active {
    display: block !important;
}

.qr-preview img {
    max-width: 180px;
    width: auto;
    height: auto;
    max-height: 180px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 4px;
    border: 1px solid #eee;
}

.qr-preview img:hover {
    transform: scale(1.05);
}

.qr-preview .qr-click-hint {
    font-size: 0.65rem;
    color: #888;
    margin-top: 8px;
}

/* Payment method option styles */
.payment-method-option {
    padding: 1rem;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method-option:hover {
    border-color: #000000;
    background: #f8f8f8;
}

.payment-method-option.selected {
    border-color: #000000;
    background: #f8f8f8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-method-option .payment-details {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #dddddd;
}

/* Make QR code images responsive */
@media (max-width: 480px) {
    .qr-preview img {
        max-width: 140px;
        max-height: 140px;
    }
}

/* ===== VERTICAL PAYMENT METHOD LOGOS - NO CARDS ===== */
.payment-logos-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.payment-method-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
    background: transparent;
    border: none;
}

.payment-method-logo-wrapper:hover {
    transform: scale(1.08);
}

.payment-method-logo-wrapper .method-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.payment-method-logo-wrapper .method-logo-placeholder {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #666;
}

/* ===== PAYMENT DETAILS MODAL ===== */
.payment-details-modal .modal-content {
    max-width: 400px;
    width: 90%;
}

.payment-details-modal .modal-account-details {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 8px;
    margin: 12px 0;
}

.payment-details-modal .modal-account-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.payment-details-modal .modal-account-row:last-child {
    border-bottom: none;
}

.payment-details-modal .modal-account-label {
    color: #666;
}

.payment-details-modal .modal-account-value {
    font-weight: 600;
    color: #000;
}

.payment-details-modal .modal-qr-code {
    text-align: center;
    margin: 12px 0;
}

.payment-details-modal .modal-qr-code img {
    max-width: 200px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ===== PAYMENT METHOD MODAL ===== */
#paymentDetailsModal .modal-method-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: #000;
}

#paymentDetailsModal .modal-method-desc {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* ===== PAYMENT DETAILS MODAL OVERRIDES ===== */
#paymentDetailsModal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

#paymentDetailsModal.active {
    display: flex !important;
}

#paymentDetailsModal .qr-modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#paymentDetailsModal .qr-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10002;
}

#paymentDetailsModal .qr-modal-close:hover {
    color: #ddd;
}

/* Responsive */
@media (max-width: 480px) {
    .payment-method-logo-wrapper .method-logo {
        width: 60px;
        height: 60px;
    }
    
    .payment-method-logo-wrapper .method-logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .payment-logos-container {
        gap: 15px;
    }
    
    #paymentDetailsModal .qr-modal-content {
        padding: 20px;
        max-width: 95%;
    }
}