/* ============================================
   PAYMENT MODAL - Base Structure (No Theme)
   Layout and positioning only.
   ============================================ */

/* Component Variables - Defaults */
:root {
    --modal-z-index: 2000;
}

/* Modal Container */
#globalCheckoutModal.modal {
    display: none;
    position: fixed;
    z-index: var(--modal-z-index);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Base overlay - can be overridden by theme */
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
#globalCheckoutModal .modal-content {
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

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

/* Modal Header */
#globalCheckoutModal .modal-header {
    padding: 20px 28px;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#globalCheckoutModal .modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#globalCheckoutModal .close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    border: 1px solid transparent;
}

/* Modal Body */
#globalCheckoutModal .modal-body {
    padding: 28px 24px 36px;
}

/* Checkout Summary */
.checkout-summary {
    padding: 24px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid transparent;
}

.checkout-summary h4 {
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 6px;
    border: 1px solid transparent;
}

.checkout-item:last-child {
    margin-bottom: 0;
}

.checkout-item span:first-child {
    font-weight: 500;
    font-size: 0.9rem;
}

.checkout-item span:last-child {
    font-weight: 700;
    font-size: 0.95rem;
}

.checkout-total {
    text-align: center;
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.checkout-total strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Form Styling */
#globalCheckoutModal .form-group {
    margin-bottom: 20px;
}

#globalCheckoutModal .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

#globalCheckoutModal .input-field {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    border: 2px solid transparent;
}

#globalCheckoutModal .input-field:focus {
    outline: none;
}

/* Payment Methods */
.payment-methods {
    margin: 24px 0 16px;
}

.payment-methods h4 {
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 600;
}

.payment-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.payment-option-card {
    position: relative;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 18px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.payment-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 2;
}

.payment-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.payment-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.payment-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-name {
    font-size: 1rem;
    font-weight: 700;
}

.payment-description {
    font-size: 0.8rem;
    text-align: center;
}

.payment-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.payment-option-card:has(input:checked) .payment-check {
    opacity: 1;
}

/* Pay Button */
#globalCheckoutModal .pay-button {
    margin-top: 24px;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#globalCheckoutModal .pay-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* ============================================
   PIX PAYMENT SCREEN - Structural
   ============================================ */

.pix-payment-screen {
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    border: 1px solid transparent;
}

.pix-logo {
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-logo-img {
    display: block;
    width: 50%;
    max-width: 140px;
    height: auto;
}

.pix-total-section {
    border-radius: 12px;
    padding: 14px 24px;
    margin: 0 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pix-total-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pix-total-value {
    font-size: 28px;
    font-weight: 700;
}

.pix-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 6px;
}

.pix-subtitle {
    font-size: 14px;
    margin: 0 0 20px;
}

.pix-qr-container {
    border-radius: 14px;
    padding: 16px;
    margin: 0 auto 20px;
    max-width: 280px;
}

.pix-qr-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.pix-info-section {
    border-radius: 12px;
    padding: 14px;
    margin: 0 0 14px;
    text-align: left;
    border: 1px solid transparent;
}

.pix-info-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.pix-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pix-info-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pix-info-value {
    font-size: 13px;
    font-weight: 500;
    word-break: break-all;
    line-height: 1.4;
}

.pix-code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pix-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 10px;
}

.pix-code-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.pix-copy-mini-btn {
    flex-shrink: 0;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pix-expiration-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 14px 0;
    font-size: 13px;
}

.pix-confirm-payment-button {
    width: 100%;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pix-footer-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 14px;
    margin-top: 16px;
    text-align: left;
}

.pix-footer-message svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pix-footer-message span {
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================
   PAYPAL PAYMENT SCREEN - Structural
   ============================================ */
.paypal-payment-screen {
    padding: 32px 24px;
    text-align: center;
}

.paypal-logo-container {
    margin-bottom: 24px;
}

.paypal-logo-img {
    max-width: 150px;
    height: auto;
}

.paypal-title {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.paypal-subtitle {
    margin-bottom: 24px;
}

.paypal-total-box {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.paypal-total-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.paypal-total-value {
    font-size: 32px;
    font-weight: 700;
}

.paypal-total-secondary {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Option 1: QR Code */
.paypal-option-box {
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid transparent;
}

.paypal-option-title {
    font-size: 16px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.paypal-qr-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.paypal-option-desc {
    font-size: 13px;
    margin: 0;
}

/* Option 2: Email */
.paypal-email-box {
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid transparent;
}

.paypal-email-title {
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.paypal-email-display {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.paypal-email-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.paypal-email-value {
    font-size: 15px;
    font-weight: 700;
    word-break: break-all;
}

/* Instructions */
.paypal-instructions {
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.paypal-instructions-content {
    font-size: 14px;
    line-height: 1.6;
}

.paypal-instructions-title {
    font-weight: 700;
}

/* Actions */
.paypal-confirm-btn {
    width: 100%;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.paypal-confirm-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.paypal-cancel-btn {
    width: 100%;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.paypal-footer-note {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-align: left;
}

.paypal-footer-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.paypal-footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.paypal-footer-text {
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   SUCCESS SCREEN - Structural
   ============================================ */
.order-success-screen {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

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

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

.success-animation {
    margin-bottom: 16px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #10b981;
}

.icon-line {
    height: 5px;
    background-color: #10b981;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 38px;
    left: 10px;
    width: 20px;
    transform: rotate(45deg);
    animation: animateLineTip 0.75s;
}

.icon-line.line-long {
    top: 30px;
    right: 6px;
    width: 38px;
    transform: rotate(-45deg);
    animation: animateLineLong 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.3);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 22px;
    z-index: 1;
    height: 70px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: transparent;
}

@keyframes animateLineTip {
    0% {
        width: 0;
        left: 1px;
        top: 16px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 16px;
    }

    70% {
        width: 28px;
        left: 1px;
        top: 40px;
    }

    84% {
        width: 14px;
        left: 8px;
        top: 38px;
    }

    100% {
        width: 20px;
        left: 10px;
        top: 38px;
    }
}

@keyframes animateLineLong {
    0% {
        width: 0;
        right: 24px;
        top: 30px;
    }

    65% {
        width: 0;
        right: 24px;
        top: 30px;
    }

    84% {
        width: 42px;
        right: 0;
        top: 26px;
    }

    100% {
        width: 38px;
        right: 6px;
        top: 30px;
    }
}

.success-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-order-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.success-order-number .order-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-order-number .order-number {
    font-size: 1.3rem;
    font-weight: 700;
}

.success-details {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid transparent;
}

.success-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.success-details .detail-row:last-child {
    border-bottom: none;
}/* ============================================
   PAYMENT MODAL - Standard Light Theme Override
   Restores the original "Clara Cerejinha" Standard look
   ============================================ */

/* Reset Modal Content Background to Light */
#globalCheckoutModal .modal-content {
    background: #fffafa; /* Light rose/white background */
    border: 1px solid #ffe9ef;
    box-shadow: 0 24px 80px rgba(212, 66, 115, 0.25);
}

/* Modal Header - Restore Pink Gradient */
#globalCheckoutModal .modal-header {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Close Button */
#globalCheckoutModal .close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#globalCheckoutModal .close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Checkout Summary Box */
#globalCheckoutModal .checkout-summary {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    border: 1px solid #fce7f3;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.05);
}

#globalCheckoutModal .checkout-summary h4 {
    color: #be185d;
}

/* Items */
#globalCheckoutModal .checkout-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

#globalCheckoutModal .checkout-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(236, 72, 153, 0.3);
}

#globalCheckoutModal .checkout-item span:first-child {
    color: #4a4a4a;
    font-weight: 500;
}

#globalCheckoutModal .checkout-item span:last-child {
    color: #db2777; /* Pinkish red for price */
}

/* Total Section */
#globalCheckoutModal .checkout-total {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(253, 242, 248, 0.5));
    border: 1px solid rgba(236, 72, 153, 0.2);
}

#globalCheckoutModal .checkout-total strong {
    color: #be185d;
    text-shadow: none;
}

/* Form Inputs */
#globalCheckoutModal .form-group label {
    color: #374151; /* Dark gray text */
}

#globalCheckoutModal .form-group input {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

#globalCheckoutModal .form-group input::placeholder {
    color: #9ca3af;
}

#globalCheckoutModal .form-group input:focus {
    border-color: #ec4899;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

/* Payment Methods Header */
#globalCheckoutModal .payment-methods h4 {
    color: #374151;
}

/* Payment Cards */
#globalCheckoutModal .payment-option-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

#globalCheckoutModal .payment-option-card:hover {
    background: #fdf2f8;
    border-color: #fbcfe8;
}

#globalCheckoutModal .payment-option-card:has(input:checked) {
    background: #fdf2f8;
    border-color: #ec4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
}

#globalCheckoutModal .payment-name {
    color: #374151;
}

#globalCheckoutModal .payment-description {
    color: #6b7280;
}

#globalCheckoutModal .payment-check {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

/* Pay Button */
#globalCheckoutModal #globalPayButton {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

#globalCheckoutModal #globalPayButton:hover:not(:disabled) {
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

#globalCheckoutModal #globalPayButton:disabled {
    background: #e5e7eb;
    color: #9ca3af;
}

/* PIX Screen Override */
#globalCheckoutModal .pix-payment-screen {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

#globalCheckoutModal .pix-title {
    color: #be185d;
}

#globalCheckoutModal .pix-subtitle {
    color: #6b7280;
}

#globalCheckoutModal .pix-total-section {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    box-shadow: none;
    border: 1px solid #fbcfe8;
}

#globalCheckoutModal .pix-total-label {
    color: #9d174d;
}

#globalCheckoutModal .pix-total-value {
    color: #be185d;
    text-shadow: none;
}

#globalCheckoutModal .pix-info-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

#globalCheckoutModal .pix-info-label {
    color: #6b7280;
}

#globalCheckoutModal .pix-info-value {
    color: #1f2937;
}

#globalCheckoutModal .pix-code-box {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
}

#globalCheckoutModal .pix-code-input {
    color: #374151;
}

#globalCheckoutModal .pix-expiration-timer {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #b45309;
}

#globalCheckoutModal .pix-expiration-timer.expired {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #b91c1c;
}

#globalCheckoutModal .pix-footer-message {
    background: #fdf2f8;
    border-color: #fbcfe8;
}

#globalCheckoutModal .pix-footer-message span {
    color: #9d174d;
}

#globalCheckoutModal .pix-footer-message svg {
    color: #db2777;
}

/* Success Screen */
#globalCheckoutModal .order-success-screen {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

#globalCheckoutModal .success-order-number .order-label {
    color: #1f2937;
}

#globalCheckoutModal .success-order-number .order-number {
    color: #059669;
    text-shadow: none;
}

#globalCheckoutModal .success-details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

/* ============================================
   PAYPAL STANDARD THEME OVERRIDES
   ============================================ */

#globalCheckoutModal .paypal-title {
    color: #be185d;
}

#globalCheckoutModal .paypal-subtitle {
    color: #6b7280;
}

#globalCheckoutModal .paypal-total-box {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    color: #be185d;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
    border: 1px solid #fce7f3;
}

#globalCheckoutModal .paypal-total-label {
    color: #9d174d;
}

#globalCheckoutModal .paypal-total-secondary {
    color: #db2777;
    opacity: 1;
}

/* Option Boxes */
#globalCheckoutModal .paypal-option-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

#globalCheckoutModal .paypal-option-title {
    color: #be185d;
}

#globalCheckoutModal .paypal-option-desc {
    color: #6b7280;
}

/* Email Box */
#globalCheckoutModal .paypal-email-box {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-color: #fbcfe8;
}

#globalCheckoutModal .paypal-email-title {
    color: #be185d;
}

#globalCheckoutModal .paypal-email-display {
    background: #ffffff;
    border: 1px solid #fce7f3;
}

#globalCheckoutModal .paypal-email-label {
    color: #9d174d;
}

#globalCheckoutModal .paypal-email-value {
    color: #be185d;
}

#globalCheckoutModal .paypal-instructions-content {
    color: #4b5563;
}

/* Instructions */
#globalCheckoutModal .paypal-instructions {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

#globalCheckoutModal .paypal-instructions-title {
    color: #be185d;
}

/* Cancel Button */
#globalCheckoutModal .paypal-cancel-btn {
    background: #f3f4f6;
    color: #4b5563;
}

#globalCheckoutModal .paypal-cancel-btn:hover {
    background: #e5e7eb;
}

/* Footer Note */
#globalCheckoutModal .paypal-footer-note {
    background: #fdf2f8;
    border-color: #fbcfe8;
}

#globalCheckoutModal .paypal-footer-text {
    color: #6b7280;
}

#globalCheckoutModal .paypal-footer-icon {
    color: #db2777;
}
