/* Premium Feature Styles */
.premium-feature {
    position: relative;
    transition: all 0.3s ease;
}

.premium-feature.feature-locked {
    opacity: 0.7;
    pointer-events: none;
}

.premium-feature.feature-unlocked {
    opacity: 1;
    pointer-events: all;
}

.premium-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: inherit;
    color: white;
    font-weight: 600;
    z-index: 10;
    flex-direction: column;
    gap: 8px;
}

.premium-lock .lock-icon {
    font-size: 24px;
}

.premium-lock .lock-text {
    font-size: 14px;
    text-align: center;
    max-width: 80%;
}

.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

/* Body states for premium */
body.premium-active .premium-only {
    display: block;
}

body.premium-inactive .premium-only {
    display: none;
}

body.premium-active .free-only {
    display: none;
}

body.premium-inactive .free-only {
    display: block;
}

/* Premium feature highlights */
.premium-feature.unlocked {
    border: 2px solid #34c759;
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.3);
}

.premium-upsell {
    background: linear-gradient(135deg, #007aff, #5856d6);
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin: 16px 0;
    text-align: center;
}

.premium-upsell-btn {
    background: white;
    color: #007aff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.premium-upsell-btn:hover {
    transform: translateY(-2px);
}