/**
 * Pricing Cards Component
 * Pricing options and plan cards
 *
 * @package BeepBeep_AI
 * @since 5.0.0
 */

/* ==================================================
   PRICING OPTIONS GRID
   ================================================== */

.bbai-pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ==================================================
   PRICING CARD
   ================================================== */

.bbai-pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
}

.bbai-pricing-card--pro {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.bbai-pricing-card--featured {
    border-color: #1d4ed8;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.bbai-pricing-card--credits {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.bbai-pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

/* ==================================================
   PRICING HEADER
   ================================================== */

.bbai-pricing-header h4 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

/* ==================================================
   PRICING PRICE
   ================================================== */

.bbai-pricing-price {
    margin-bottom: 1.5rem;
}

.bbai-pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.bbai-pricing-period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.bbai-pricing-savings {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
    margin-top: 0.5rem;
}

.bbai-pricing-value {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* ==================================================
   PRICING FEATURES
   ================================================== */

.bbai-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.bbai-pricing-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

/* ==================================================
   PRICING BUTTONS
   ================================================== */

.bbai-pricing-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.bbai-pricing-btn--primary {
    background: #3b82f6;
    color: white;
}

.bbai-pricing-btn--primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.bbai-pricing-btn--secondary {
    background: #10b981;
    color: white;
}

.bbai-pricing-btn--secondary:hover {
    background: #059669;
    transform: translateY(-1px);
}

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

@media (max-width: 768px) {
    .bbai-pricing-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bbai-pricing-card--featured {
        transform: scale(1);
    }

    .bbai-pricing-amount {
        font-size: 2rem;
    }
}
