/* premium-additions.css - Additional styles for Premium UI */

/* =========================================
   UPGRADE BUTTON IN NAV
   ========================================= */

.btn-upgrade {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    font-size: 0.9rem !important;
}

.btn-upgrade:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

/* =========================================
   PLAN BADGE STYLES
   ========================================= */

.plan-badge {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.plan-free {
    background: #f0f0f0 !important;
    color: #666 !important;
}

.plan-free:hover {
    background: #e0e0e0 !important;
}

.plan-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
}

.plan-pro:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

/* =========================================
   PRO BADGE IN BUTTONS
   ========================================= */

.upload-btn .pro-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    margin-left: 6px;
    vertical-align: middle;
}

/* =========================================
   MEMORY UPLOAD PROGRESS
   ========================================= */

.memory-upload-progress {
    background: #f8f9ff;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.memory-upload-progress p {
    color: #667eea;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* =========================================
   PRO BADGE INLINE (in memory cards)
   ========================================= */

.memory-audio-container {
    position: relative;
}

.memory-audio-container .pro-badge-inline {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* =========================================
   EXPORT BUTTON IN TIMELINE HEADER
   ========================================= */

.timeline-header .btn-secondary[data-premium] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.timeline-header .btn-secondary[data-premium] .pro-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    margin-left: 0;
}

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

@media (max-width: 768px) {
    .btn-upgrade {
        padding: 6px 12px !important;
        font-size: 0.85rem !important;
    }
    
    .plan-badge {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .upload-btn .pro-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}
