/**
 * Price Module Modular Stylesheet
 * Standardized per doc/core/mdv3.md guidelines
 */

/* ── 1. Layout & Header ─────────────────────────────────────────── */
.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.pricing-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0f172a;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 1.25rem;
}

/* ── 2. Pricing Cards & Modifiers ────────────────────────────────── */
.pricing-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card-pro {
    border-color: #6366f1 !important;
}

.pricing-card-max {
    border-color: #d97706 !important;
}

.pricing-card-ultra {
    border-color: #8b5cf6 !important;
}

/* ── 3. Badges & Spacer ─────────────────────────────────────────── */
.pricing-badge-spacer {
    height: 12px;
}

.pricing-badge {
    text-align: center;
    font-weight: 700;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background: #64748b;
    color: #ffffff;
}

.pricing-badge-pro {
    background: #6366f1;
    color: #ffffff;
}

.pricing-badge-max {
    background: #d97706;
    color: #ffffff;
}

.pricing-badge-ultra {
    background: #8b5cf6;
    color: #ffffff;
}

/* ── 4. Price & Typography ──────────────────────────────────────── */
.pricing-name {
    font-weight: 700;
    color: #0f172a;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.pricing-period {
    color: #64748b;
    font-size: 0.875rem;
}

/* ── 5. Features List ───────────────────────────────────────────── */
.pricing-features {
    font-size: 0.9rem;
}

.pricing-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.pricing-feature-label {
    color: #475569;
}

.pricing-feature-val {
    font-weight: 700;
    color: #0f172a;
}

/* ── 6. Action Buttons ───────────────────────────────────────────── */
.pricing-btn {
    border-radius: 10px;
    font-weight: 700;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.pricing-btn-primary {
    background-color: #4f46e5;
    color: #ffffff;
    border: none;
}

.pricing-btn-primary:hover {
    background-color: #4338ca;
    color: #ffffff;
}

.pricing-btn-outline {
    background-color: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.pricing-btn-outline:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.pricing-btn-current {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #cbd5e1;
    cursor: default;
}

.pricing-btn-renew {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #10b981;
}

.pricing-btn-renew:hover {
    background-color: #d1fae5;
    color: #047857;
}
