/* ============================================
   BOOKING MODAL - MODERN DESIGN
   Mobile-First, Beautiful, Premium
   ============================================ */

:root {
    /* Baseline Theme for Modals (v6.1 Consolidation) */
    --primary: #00D4FF;
    /* Cyber Blue */
    --secondary: #B00BFF;
    /* Neon Purple */
    --accent: #FFD93D;
    /* Bright Yellow */
    --purple: #6C5CE7;
    --bg-navy: #0f172a;
    /* Deep Navy */
    --text-main: #ffffff;
    /* Pure White */
    --text-dim: #94a3b8;
    /* Blue Grey */
    --border: rgba(255, 255, 255, 0.15);
    --glass-panel: rgba(255, 255, 255, 0.05);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 41, 0.85);
    /* Darker overlay */
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content - Premium Bento Style */
.modal-content.bento-modal {
    background: linear-gradient(145deg, #0f0c29 0%, #302b63 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 2rem;
    max-width: 950px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    text-align: left;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

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

/* Close Button - More modern */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-close:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(90deg);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(176, 11, 255, 0.4);
}

/* Bento Layout */
.bento-header {
    margin-bottom: 2rem;
    padding-right: 3rem;
}

.modal-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
    letter-spacing: -1px;
    background: none;
    -webkit-text-fill-color: white;
}

.modal-subtitle {
    color: var(--text-dim);
    font-size: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1025px) {
    .bento-grid {
        grid-template-columns: 1.6fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "form sticker"
            "form price";
    }

    .bento-sticker {
        grid-area: sticker;
    }

    .bento-price {
        grid-area: price;
    }

    .bento-form {
        grid-area: form;
    }
}

/* Bento Box Base Card */
.bento-box {
    background: var(--glass-panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.75rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-box:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.bento-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Sticker Box */
.booking-sticker-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.booking-sticker-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.booking-stock-pill {
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
}

/* Price Box */
.bento-price.is-free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.free-badge-large {
    font-size: 2.75rem;
    font-weight: 900;
    color: #10b981;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.price-display-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-current.highlight {
    background: none;
    -webkit-text-fill-color: initial;
    color: #fff;
    text-shadow: 0 0 20px rgba(176, 11, 255, 0.5);
}

.price-original {
    text-decoration: line-through;
    color: var(--text-dim);
    opacity: 0.6;
    font-size: 1.25rem;
    font-weight: 400;
}

.price-meta {
    font-size: 0.875rem;
    color: var(--text-dim);
    font-weight: 600;
}

.price-display-wrapper.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styling - Premium Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 641px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    display: block;
    opacity: 0.9;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    /* Dark Input */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-dim);
    opacity: 0.5;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

/* Form Validation States */
.form-group.error input {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.form-group.error input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.form-group.valid input {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.form-group.valid input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 500;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* Quantity Bento */
.quantity-bento-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-selector.bento-style {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.4rem;
    align-items: center;
    width: 160px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.quantity-selector input {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex: 1;
}

/* Final Submit Button */
.btn-bento-submit {
    margin-top: 2rem;
    width: 100%;
    padding: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #1e1b3d 0%, var(--purple) 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(155, 209, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-bento-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(155, 209, 255, 0.4);
    filter: brightness(1.1);
}

.btn-bento-submit:active {
    transform: translateY(0);
}

/* Mobile Specific Tweaks */
@media (max-width: 640px) {
    .modal-content.bento-modal {
        padding: 1.5rem;
        border-radius: 24px;
        width: 100%;
        margin: 0;
        max-height: 100vh;
    }

    .modal-title {
        font-size: 1.75rem;
    }

    .bento-box {
        padding: 1.25rem;
    }

    .free-badge-large {
        font-size: 2rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .quantity-bento-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .quantity-selector.bento-style {
        width: 100%;
    }
}

/* Keep previous utility classes */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dim);
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-total {
    font-size: 1.5rem;
    font-weight: 800;
    padding-top: 1rem;
    border-top: 1.5px solid var(--border);
    margin-top: 0.75rem;
    color: var(--text-main);
}

.price-total span:last-child {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Payment Instructions */
.payment-instructions {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.instructions-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.875rem;
    color: var(--text-main);
}

.payment-instructions ul {
    margin-left: 1.25rem;
    line-height: 1.8;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.payment-instructions li {
    margin-bottom: 0.5rem;
}

.payment-instructions li:last-child {
    margin-bottom: 0;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-block {
    width: 100%;
}

/* Success Modal */
.success-modal {
    text-align: left;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-summary {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-total {
    font-size: 1.375rem;
    font-weight: 800;
    padding-top: 1rem;
    border-top: 1.5px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.75rem;
    color: white;
}

.success-instructions {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.success-instructions ol {
    margin-left: 1.25rem;
    line-height: 1.9;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.success-instructions li {
    margin-bottom: 0.75rem;
}

.success-instructions li:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #fbbf24;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Success Modal Specifics */
.success-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: celebrate 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes celebrate {
    from {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
    }

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

.highlight-ref {
    color: #fbbf24;
    font-family: monospace;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item .item-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.summary-item .item-value {
    color: white;
    font-weight: 600;
}

.summary-item.total-row {
    margin-top: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item.total-row .item-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8b5cf6;
}

.summary-item.total-row.is-free .item-value {
    color: #10b981;
}

.success-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.success-steps-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.action-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-bento-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-bento-action.primary {
    background: #0070ba;
    /* PayPal Blue */
    color: white;
}

.btn-bento-action.primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-bento-action.secondary {
    background: #229ED9;
    /* Telegram Blue */
    color: white;
}

.btn-bento-action.secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-close-final {
    margin-top: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.btn-close-final:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Payment Confirmation Card (Separate Box) */
.bento-payment-confirmation {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), rgba(15, 23, 42, 0.4));
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.payment-instruction-large {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.payment-instruction-large strong {
    color: #10b981;
}

.payment-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.payment-proof-input-large {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-family: monospace;
    transition: all 0.3s ease;
}

.payment-proof-input-large:focus {
    outline: none;
    border-color: #10b981;
    background: #0f172a;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.btn-payment-confirm {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-payment-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
    filter: brightness(1.1);
}

.payment-note {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

.payment-note strong {
    color: #94a3b8;
}

/* Premium Digital Receipt Styles */
.receipt-card {
    background: linear-gradient(145deg, #0f172a, #1e1b4b);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 1.5rem auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: #fff;
}

.receipt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.receipt-header {
    text-align: center;
    margin-bottom: 2rem;
}

.receipt-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(155, 209, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1px solid rgba(155, 209, 255, 0.2);
}

.receipt-title {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.receipt-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.receipt-body {
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.receipt-row:last-child {
    margin-bottom: 0;
}

.receipt-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.receipt-value {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Inter', monospace;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.receipt-screenshot-guide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.receipt-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    line-height: 1.4;
}

.receipt-download-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-download-receipt {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    color: #1a1a2e;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-download-receipt:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    filter: brightness(1.1);
}

.btn-done-receipt {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-done-receipt:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

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

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

@media (max-width: 640px) {
    .receipt-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

.modal-content.bento-modal {
    margin: 0;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 100%;
    position: fixed;
    bottom: 0;
    max-height: 90vh;
    animation: slideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpMobile {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (min-width: 1025px) {
    .success-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}