.pwa-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--forest-deep);
    border-top: 2px solid var(--khaki);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transition: bottom 0.3s ease;
}
.pwa-banner--visible {
    bottom: 0;
}
.pwa-banner--hiding {
    bottom: -100px;
}
.pwa-banner-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--parchment);
    font-size: 0.85rem;
    line-height: 1.4;
}
.pwa-banner-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}
.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.pwa-btn-install {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--forest-deep);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
}
.pwa-btn-close {
    font-size: 1.1rem;
    color: var(--khaki-pale);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 600px) {
    .pwa-banner {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: 480px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        border: 2px solid var(--khaki);
        border-bottom: none;
    }
    .pwa-banner--visible {
        bottom: 0;
    }
    .pwa-banner--hiding {
        bottom: -100px;
    }
}

.score-slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
}
.score-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
}
.score-slider {
    height: 8px;
    border-radius: 4px;
}
@media (pointer: coarse) {
    .score-slider::-webkit-slider-thumb {
        width: 36px;
        height: 36px;
        border-width: 3px;
    }
    .score-slider::-moz-range-thumb {
        width: 36px;
        height: 36px;
        border-width: 3px;
    }
    .score-slider {
        height: 10px;
        border-radius: 5px;
    }
    .nav-toggle {
        padding: 10px;
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
    }
    .nav-toggle span {
        width: 24px;
        height: 3px;
    }
    .main-nav a {
        padding: 0.85rem 0;
        font-size: 1.05rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .tab-btn,
    .btn,
    .filter-select,
    .filter-input,
    .form-input,
    select,
    button {
        min-height: 44px;
    }
    .awards-controls {
        gap: 0.75rem;
    }
}
.hero-cta-install {
    background: transparent;
    border: 2px solid rgba(196, 162, 101, 0.4);
    color: var(--khaki-pale);
    font-size: 0.8rem;
}
.hero-cta-install:hover {
    background: rgba(196, 162, 101, 0.15);
    border-color: var(--khaki);
    color: var(--khaki-light);
}
