/* ===== PASAPORTE GASTRONÓMICO - STYLES ===== */

/* Container */
.passport-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    min-height: 100vh;
}

/* ===== LOADING STATE ===== */
.passport-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1.5rem;
    color: var(--text-muted);
}

.passport-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== LOGIN REQUIRED ===== */
.passport-login-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

.login-required-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.passport-login-required h2 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.passport-login-required p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
}

/* ===== PASSPORT HEADER ===== */
.passport-header {
    margin-bottom: 2rem;
}

.passport-cover {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.passport-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
}

.passport-cover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.passport-emblem {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.passport-cover h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.passport-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.passport-holder {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    border: 1px solid var(--border);
    border-top: none;
}

.passport-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.passport-info {
    flex: 1;
}

.passport-info h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.passport-number {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.passport-member-since {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.passport-level-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.passport-level-badge {
    font-size: 0.8rem;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 0.3px;
}

.passport-level-pts {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: auto;
}

.passport-xp-bar-wrap {
    margin-top: 0.4rem;
}

.passport-xp-bar-bg {
    height: 4px;
    background: var(--surface-light);
    border-radius: 2px;
    overflow: hidden;
}

.passport-xp-bar-fill {
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.passport-xp-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
    text-align: right;
    margin-top: 0.25rem;
}

/* ===== STATS DASHBOARD ===== */
.passport-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--surface);
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== SCAN QR BUTTON ===== */
.scan-section {
    margin-bottom: 2rem;
}

.btn-scan-qr {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.4);
    font-family: inherit;
}

.btn-scan-qr:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30, 58, 138, 0.5);
}

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

.btn-scan-qr svg {
    flex-shrink: 0;
}

/* ===== SECTION TITLES ===== */
.stamps-section .section-title,
.badges-section .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== BADGES ===== */
.badges-section {
    margin-bottom: 2.5rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.badge-card {
    background: var(--surface);
    border: 2px solid #d4af37;
    border-radius: var(--radius-lg);
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.badge-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
}

.badge-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.badge-locked {
    opacity: 0.35;
    border-color: var(--border);
    filter: grayscale(1);
}

.badge-locked:hover {
    opacity: 0.5;
    transform: none;
    box-shadow: none;
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.badge-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.badge-description {
    font-size: 0.7rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.badge-progress {
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.badge-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.badge-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f0d68a);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.badge-progress-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.badge-unlocked-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #1a1a1a;
    font-weight: 800;
    z-index: 2;
}

/* ===== STAMPS GRID ===== */
.stamps-section {
    margin-bottom: 2rem;
}

.stamps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.stamp-card {
    aspect-ratio: 1;
    background: var(--surface);
    border: 3px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: stampIn 0.4s ease backwards;
}

.stamp-card:nth-child(even) {
    transform: rotate(2deg);
}

.stamp-card:nth-child(3n) {
    transform: rotate(-1deg);
}

.stamp-card:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: #3b82f6;
    z-index: 2;
}

@keyframes stampIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(15deg);
    }
    to {
        opacity: 1;
    }
}

.stamp-card:nth-child(1) { animation-delay: 0.05s; }
.stamp-card:nth-child(2) { animation-delay: 0.1s; }
.stamp-card:nth-child(3) { animation-delay: 0.15s; }
.stamp-card:nth-child(4) { animation-delay: 0.2s; }
.stamp-card:nth-child(5) { animation-delay: 0.25s; }
.stamp-card:nth-child(6) { animation-delay: 0.3s; }
.stamp-card:nth-child(7) { animation-delay: 0.35s; }
.stamp-card:nth-child(8) { animation-delay: 0.4s; }

.stamp-border {
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.stamp-image {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.stamp-details {
    text-align: center;
}

.stamp-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stamp-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: capitalize;
    margin-bottom: 0.15rem;
}

.stamp-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.stamp-postmark {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #dc2626;
    transform: rotate(15deg);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    opacity: 0.85;
    background: rgba(220, 38, 38, 0.08);
    z-index: 1;
}

/* Wrapper posicionable para la imagen — contiene los sellos absolutos */
.stamp-img-wrap {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.stamp-img-wrap .stamp-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: inherit;
    margin-bottom: 0;
    flex: unset;
}

/* Sello individual — esparcido sobre la imagen estilo pasaporte real */
.stamp-seal {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #E63946;
    background: rgba(220, 38, 38, 0.13);
    color: #E63946;
    font-size: 0.48rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    backdrop-filter: blur(3px);
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(220,38,38,0.2);
}

/* En book scroller la imagen cubre todo el grid-row:1 */
.stamps-book-scroller .stamp-img-wrap {
    grid-row: 1;
    border-radius: 0;
}

.stamp-notes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 2rem 0.75rem 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stamp-card:hover .stamp-notes {
    opacity: 1;
}

.stamp-notes p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.3;
}

/* ===== STAMPS PAGE SCROLLER ===== */
.stamps-section {
    position: relative;
}

.stamps-book-scroller {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 1rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
    border-radius: var(--radius-lg);
    /* Subtle page tray shadow */
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stamps-book-scroller::-webkit-scrollbar {
    height: 4px;
}

.stamps-book-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.stamps-book-scroller::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 2px;
}

/* Each stamp is a full page */
.stamps-book-scroller .stamp-card {
    flex: 0 0 calc(100% - 2rem);
    width: calc(100% - 2rem);
    height: 380px;
    aspect-ratio: unset;
    scroll-snap-align: center;
    transform: none;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 0;
    overflow: hidden;
}

.stamps-book-scroller .stamp-card:nth-child(even),
.stamps-book-scroller .stamp-card:nth-child(3n) {
    transform: none;
}

.stamps-book-scroller .stamp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-color: #3b82f6;
    z-index: 2;
}

/* Image fills the card */
.stamps-book-scroller .stamp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    min-height: 0;
    flex: unset;
    grid-row: 1;
}

/* Details bar at the bottom */
.stamps-book-scroller .stamp-details {
    grid-row: 2;
    background: var(--surface);
    padding: 0.75rem 1rem 0.75rem 1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stamps-book-scroller .stamp-name {
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stamps-book-scroller .stamp-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.stamps-book-scroller .stamp-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Visit count badge */
.stamp-visit-count {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(30, 58, 138, 0.88);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Postmark repositioned for full-page card */
.stamps-book-scroller .stamp-postmark {
    top: 1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
    font-size: 0.65rem;
}

/* Notes overlay on hover */
.stamps-book-scroller .stamp-notes {
    grid-row: 1;
    position: absolute;
    bottom: 56px; /* above the details bar */
}

/* Dots indicator */
.stamps-page-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.75rem;
}

.stamps-page-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s;
}

.stamps-page-dots .dot.active {
    background: #3b82f6;
    width: 18px;
    border-radius: 3px;
}

/* ===== EMPTY PASSPORT ===== */
.empty-passport {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-passport .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-passport h3 {
    color: var(--text);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-passport p {
    font-size: 0.95rem;
    max-width: 350px;
    margin: 0 auto;
}

/* ===== QR MODAL ===== */
.qr-modal {
    max-width: 440px;
}

.qr-input-section {
    text-align: center;
}

.qr-icon-display {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.qr-instruction {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.qr-input {
    width: 100%;
    padding: 1rem;
    background: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.qr-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.qr-input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.visit-notes {
    width: 100%;
    padding: 0.875rem;
    background: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    max-height: 150px;
    outline: none;
    transition: var(--transition);
    margin-top: 1rem;
    box-sizing: border-box;
}

.visit-notes:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.visit-notes::placeholder {
    color: var(--text-muted);
}

/* ===== SUCCESS MODAL ===== */
.success-stamp-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.success-stamp {
    width: 150px;
    height: 150px;
    border: 4px solid #d4af37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    animation: stampSlam 0.5s ease;
    transform: rotate(-10deg);
}

@keyframes stampSlam {
    0% {
        transform: scale(3) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(0.9) rotate(-15deg);
    }
    100% {
        transform: scale(1) rotate(-10deg);
        opacity: 1;
    }
}

.success-stamp-icon {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 800;
}

.success-stamp-text {
    font-size: 0.75rem;
    color: #d4af37;
    font-weight: 700;
    text-align: center;
    padding: 0 0.5rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.success-stamp-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.success-title {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.success-btn {
    margin-top: 0.5rem;
}

/* ===== BADGE UNLOCK ANIMATION ===== */
.badge-just-unlocked {
    animation: badgeUnlock 0.6s ease;
}

@keyframes badgeUnlock {
    0% { transform: scale(1); }
    30% { transform: scale(1.15); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* ===== PASSPORT NAV BUTTON ===== */
.passport-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
    color: white !important;
    border: none !important;
}

.passport-btn:hover {
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .passport-container {
        padding: 5rem 1rem 2rem;
    }

    .passport-cover {
        padding: 2rem 1.5rem;
    }

    .passport-cover h1 {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .passport-emblem {
        font-size: 3rem;
    }

    .passport-holder {
        padding: 1.25rem;
        gap: 1rem;
    }

    .passport-photo {
        width: 56px;
        height: 56px;
    }

    .passport-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stamps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stamps-book-scroller .stamp-card {
        height: 320px;
    }

    .badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .badge-card {
        padding: 1rem 0.5rem;
    }

    .badge-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .passport-container {
        padding: 4.5rem 0.75rem 2rem;
    }

    .passport-cover {
        padding: 1.75rem 1rem;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .passport-cover h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .passport-holder {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .stamps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stamps-book-scroller .stamp-card {
        height: 280px;
    }

    .stamp-card {
        padding: 0.75rem;
    }

    .stamp-postmark {
        width: 36px;
        height: 36px;
        font-size: 0.55rem;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-scan-qr {
        font-size: 1rem;
        padding: 1rem;
    }

    .qr-input {
        font-size: 0.95rem;
    }
}
