/* Pricing Page Styles */

/* Pricing Hero */
.pricing-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.pricing-hero .section-header p {
    font-size: 1.25rem;
}

/* Pricing Grid */
.pricing {
    padding: 0 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    padding: 32px 24px 16px;
    text-align: center;
}

.pricing-card.popular .pricing-header {
    padding-top: 48px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-body {
    padding: 0 24px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Pricing Amount */
.pricing-amount {
    text-align: center;
    margin-bottom: 16px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: super;
}

/* Pricing Details */
.pricing-details {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.tryons-count {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.per-tryon {
    font-size: 14px;
    color: var(--text-secondary);
}

.savings {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Buttons */
.btn-block {
    width: 100%;
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Free Trial Section */
.free-trial {
    padding: 0 0 80px;
}

.trial-card {
    background: linear-gradient(135deg, #f0e6ff 0%, #e0d0ff 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.trial-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.trial-content {
    flex: 1;
}

.trial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.trial-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .trial-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .pricing-hero {
        padding: 100px 0 40px;
    }

    .trial-card {
        padding: 32px 24px;
    }

    .trial-icon {
        width: 64px;
        height: 64px;
    }

    .trial-icon svg {
        width: 32px;
        height: 32px;
    }
}
