/* Pricing Page Specific Styles */

/* Main Page Container: Replaces max-w-[1200px] */
.pricing-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Grid Container: Replaces max-w-[900px] */
.pricing-grid {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    align-items: flex-start;
}

/* Custom Toggle Switch UI */
.toggle-checkbox-wrapper .peer:checked~.toggle-bg::after {
    transform: translateX(100%);
    border-color: white;
}

.toggle-checkbox-wrapper .peer:checked~.toggle-bg {
    background-color: #198754;
    /* primary color */
}

.toggle-bg {
    width: 3.5rem;
    /* w-14 */
    height: 1.75rem;
    /* h-7 */
    background-color: #e5e7eb;
    /* bg-gray-200 */
    border-radius: 9999px;
    /* rounded-full */
    transition: background-color 0.3s;
    position: relative;
}

.toggle-bg::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: white;
    border: 1px solid #d1d5db;
    /* border-gray-300 */
    border-radius: 9999px;
    /* rounded-full */
    height: 1.5rem;
    /* h-6 */
    width: 1.5rem;
    /* w-6 */
    transition: all 0.3s;
}



/* Pricing Card - FREE */
.pricing-card-free {
    background-color: white;
    padding: 2.5rem;
    /* p-10 */
    border-radius: 2.5rem;
    /* rounded-[2.5rem] */
    border: 1px solid #e5e7eb;
    /* border-gray-200 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    /* shadow-sm */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
    min-height: 750px;
    /* min-h-[750px] */
}

.pricing-card-free:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* hover:shadow-lg */
}

/* Pricing Card - PRO */
.pricing-card-pro {
    background-color: white;
    padding: 2.5rem;
    /* p-10 */
    border-radius: 2.5rem;
    /* rounded-[2.5rem] */
    border-width: 2px;
    border-color: #198754;
    /* border-primary */
    box-shadow: 0 25px 50px -12px rgba(25, 135, 84, 0.25);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
    min-height: 750px;
    /* min-h-[750px] */
}

.pricing-card-pro:hover {
    transform: scale(1.02);
    /* hover:scale-[1.02] */
}

/* Typography Utilities */
.discount-badge {
    font-size: 10px;
}

.text-small-caps {
    font-size: 11px;
}

.text-list-item {
    font-size: 13px;
}