﻿/* Main Container */
.pricing-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.pricing-page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #333;
}

/* Toggle Switch */
.pricing-toggle {
    margin-bottom: 3rem;
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid #e9ecef;
}

.pricing-toggle input[type="radio"] {
    display: none;
}

.pricing-toggle label {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
}

.pricing-toggle input[type="radio"]:checked+label {
    background-color: #fff;
    color: #007bff;
    /* Main Theme Color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    /* Ensures all cards are same height */
}

/* Pricing Card */
.pricing-box {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    /* Better readability for long descriptions */
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.pricing-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.pricing-box p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    /* flex-grow: 1; Removed to use flex footer instead */
}

.pricing-footer {
    margin-top: auto;
    text-align: center;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 0.5rem !important;
    /* Closer to button */
    text-align: center;
}

.product-price small {
    font-size: 1rem;
    font-weight: 400;
    color: #adb5bd;
}

.pricing-box .btn {
    width: 100%;
    padding: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pricing-box .btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}