/* Premium Access Overlay */
.premium-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.7);
    animation: premiumFadeIn 0.25s ease-out;
}

.premium-overlay-content {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 320px;
}

.premium-overlay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D9A48F 0%, #F2E9D8 100%);
    color: white;
    margin-bottom: 1rem;
}

.premium-overlay-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.premium-overlay-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.premium-overlay-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #D9A48F 0%, #F2E9D8 100%);
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.premium-overlay-btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.premium-overlay-dismiss {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
}

.premium-overlay-dismiss:hover {
    color: #64748b;
}

@keyframes premiumFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
