/* Navigation Status Lookup Button */
.status-lookup-trigger {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.status-lookup-trigger:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

/* Feature 1: Status Lookup Modal */
.status-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 4, 8, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.status-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.status-modal-card {
    background: linear-gradient(145deg, rgba(13, 18, 30, 0.95) 0%, rgba(5, 8, 15, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 16px;
    width: 90%;
    max-width: 580px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.15);
}

.status-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

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

.status-modal-header h3 i {
    color: #d4af37;
}

.status-modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.status-modal-close:hover {
    color: #ffffff;
}

.status-input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.status-input-group input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
}

.status-input-group input:focus {
    border-color: #d4af37;
}

.status-input-group button {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.status-input-group button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.status-loading {
    color: #d4af37;
    font-size: 0.9rem;
    text-align: center;
    padding: 18px;
    font-weight: 600;
}

.status-box.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 16px;
    border-radius: 8px;
    color: #fca5a5;
    display: flex;
    gap: 12px;
    align-items: center;
}

.status-box.success {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.status-badge {
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-timeline {
    list-style: none;
    margin: 18px 0 12px;
    padding-left: 0;
}

.status-timeline li {
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
}

.status-timeline li.complete {
    color: #38df8b;
}

.status-timeline li.active {
    color: #d4af37;
    font-weight: 700;
}

.status-note {
    font-size: 0.78rem;
    color: #64748b;
    margin: 12px 0 0;
    line-height: 1.4;
}

/* Feature 5: Locale Toast */
.locale-toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(10, 15, 26, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.locale-toast-notification.visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #e2e8f0;
}

.toast-content i {
    color: #d4af37;
    font-size: 1.3rem;
}

.toast-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-btn-accept {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
}

.toast-btn-dismiss {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.3rem;
    cursor: pointer;
}

/* Feature 4: 4K Cinematic Ultra-Realistic Receipt */
.receipt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 4, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.receipt-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.receipt-card-cinematic {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96) 0%, rgba(6, 9, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 20px;
    width: 92%;
    max-width: 740px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.25), 0 30px 70px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.receipt-modal-overlay.active .receipt-card-cinematic {
    transform: scale(1);
}

.receipt-glass-header {
    background: rgba(0, 31, 63, 0.65);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.receipt-seal {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.receipt-title-box h2 {
    color: #ffffff;
    font-size: 1.35rem;
    margin: 4px 0 2px;
    font-weight: 800;
}

.receipt-title-box p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

.official-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.receipt-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.receipt-close-btn:hover {
    color: #ffffff;
}

.receipt-body {
    padding: 28px;
}

.receipt-status-banner {
    background: rgba(56, 223, 139, 0.1);
    border: 1px solid #38df8b;
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.receipt-status-banner i {
    font-size: 1.6rem;
    color: #38df8b;
}

.receipt-status-banner h4 {
    margin: 0;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
}

.receipt-status-banner p {
    margin: 2px 0 0;
    color: #94a3b8;
    font-size: 0.82rem;
}

.receipt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
}

.receipt-field {
    display: flex;
    flex-direction: column;
}

.receipt-field label {
    font-size: 0.74rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 700;
}

.receipt-field span {
    font-size: 0.94rem;
    color: #ffffff;
    font-weight: 600;
}

.highlight-id {
    color: #38bdf8 !important;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
}

.highlight-amount {
    color: #d4af37 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
}

.receipt-security-footer {
    margin-top: 22px;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.55;
    background: rgba(212, 175, 55, 0.06);
    padding: 14px;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.receipt-footer-actions {
    padding: 20px 28px;
    background: rgba(8, 12, 22, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.receipt-print-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.receipt-print-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.receipt-done-btn {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.receipt-done-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}