/**
 * Pro Upsell Card Component
 * Premium upgrade card for sidebar
 *
 * @package BeepBeep_AI
 * @since 5.0.0
 */

/* ==================================================
   PRO UPSELL CARD
   ================================================== */

.bbai-pro-upsell-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #0891b2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.bbai-pro-upsell-card:hover {
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.25);
    transform: translateY(-2px);
}

/* ==================================================
   PRO UPSELL HEADER
   ================================================== */

.bbai-pro-upsell-header {
    margin-bottom: 28px;
}

.bbai-pro-upsell-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ==================================================
   PRO UPSELL FEATURES
   ================================================== */

.bbai-pro-upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.bbai-pro-upsell-features li {
    display: flex;
    align-items: start;
    gap: 14px;
    padding: 10px 0;
    color: white;
    font-size: 15px;
    line-height: 1.6;
}

.bbai-pro-upsell-features li:first-child {
    padding-top: 0;
}

.bbai-pro-upsell-features li:last-child {
    padding-bottom: 0;
}

.bbai-feature-check {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==================================================
   PRO UPSELL BUTTON
   ================================================== */

.bbai-btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* ==================================================
   PRICING BADGE
   ================================================== */

.bbai-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.35);
}

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

@media (max-width: 1200px) {
    .bbai-pro-upsell-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bbai-pro-upsell-card {
        padding: 32px 24px;
    }

    .bbai-pro-upsell-title {
        font-size: 20px;
    }

    .bbai-pro-upsell-features li {
        font-size: 14px;
    }
}
