/* ==================== PRICING PAGE ==================== */

.pricing-page {
    max-width: var(--gj-max-width);
    margin: 0 auto;
    padding: var(--gj-space-3xl) var(--gj-page-px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gj-space-2xl);
}


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

.pricing-header {
    text-align: center;
}

.pricing-header h1 {
    font-size: var(--gj-text-3xl);
    font-weight: 800;
    color: var(--gj-text-primary);
}

.pricing-header p {
    font-size: var(--gj-text-lg);
    color: var(--gj-text-secondary);
    margin-top: var(--gj-space-sm);
}


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

.pricing-card {
    background: var(--gj-white);
    border: 2px solid var(--gj-brand);
    border-radius: var(--gj-radius-xl);
    padding: var(--gj-space-2xl);
    text-align: center;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gj-space-lg);
    box-shadow: var(--gj-shadow-lg);
}


/* ==================== SLIDER ==================== */

.pricing-slider-section {
    width: 100%;
}

.pricing-slider-label {
    display: block;
    font-size: var(--gj-text-sm);
    color: var(--gj-text-secondary);
    margin-bottom: var(--gj-space-md);
}

.pricing-slider {
    width: 100%;
    height: 6px;
    appearance: none;
    background: var(--gj-gray-200);
    border-radius: var(--gj-radius-full);
    outline: none;
    cursor: pointer;
}

.pricing-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gj-brand);
    cursor: pointer;
    border: 3px solid var(--gj-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform var(--gj-transition-fast);
}

.pricing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.pricing-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gj-brand);
    cursor: pointer;
    border: 3px solid var(--gj-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pricing-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: var(--gj-space-xs);
    padding: 0 12px;
    font-size: var(--gj-text-xs);
    color: var(--gj-text-muted);
}


/* ==================== PRICE DISPLAY ==================== */

.pricing-amount {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.pricing-currency {
    font-size: var(--gj-text-xl);
    font-weight: 700;
    color: var(--gj-text-primary);
    margin-top: 0.3em;
}

.pricing-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gj-text-primary);
    line-height: 1;
}

.pricing-per {
    font-size: var(--gj-text-sm);
    color: var(--gj-text-muted);
}

.pricing-payment-note {
    margin-top: var(--gj-space-md);
    display: inline-flex;
    align-items: center;
    gap: var(--gj-space-xs);
    font-size: var(--gj-text-xs);
    color: var(--gj-text-muted);
}

.pricing-stripe-logo {
    height: 25px;
    width: 100px;
    display: block;
    margin-left: var(--gj-space-xs);
}

/* Small amount (sidebar variant) */
.pricing-amount-sm {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-top: var(--gj-space-md);
}

.pricing-amount-sm .pricing-currency {
    font-size: var(--gj-text-lg);
    margin-top: 0.2em;
}

.pricing-amount-sm .pricing-value {
    font-size: 2.5rem;
}


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

.pricing-features {
    width: 100%;
    max-width: 560px;
}

.pricing-features h2 {
    font-size: var(--gj-text-xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--gj-space-lg);
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--gj-space-sm);
}

.pricing-features-list li {
    font-size: var(--gj-text-base);
    color: var(--gj-text-secondary);
    padding: var(--gj-space-sm) 0;
    border-bottom: 1px solid var(--gj-border-light);
}


/* ==================== BUNDLES ==================== */

.pricing-bundles {
    width: 100%;
    text-align: center;
}

.pricing-bundles h2 {
    font-size: var(--gj-text-xl);
    font-weight: 700;
    margin-bottom: var(--gj-space-xs);
}

.pricing-bundles-subtitle {
    font-size: var(--gj-text-sm);
    color: var(--gj-text-muted);
    margin-bottom: var(--gj-space-lg);
}

.pricing-bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gj-space-md);
    max-width: 560px;
    margin: 0 auto;
}

.pricing-bundle-card {
    background: var(--gj-white);
    border: 1px solid var(--gj-border);
    border-radius: var(--gj-radius-lg);
    padding: var(--gj-space-lg);
    text-align: center;
}

.pricing-bundle-card-highlight {
    border-color: var(--gj-brand);
    background: var(--gj-brand-subtle);
}

.pricing-bundle-count {
    font-size: var(--gj-text-lg);
    font-weight: 700;
    color: var(--gj-text-primary);
    margin-bottom: var(--gj-space-xs);
}

.pricing-bundle-discount {
    font-size: var(--gj-text-sm);
    font-weight: 600;
    color: var(--gj-brand);
}


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

@media (max-width: 639px) {
    .pricing-header h1 {
        font-size: var(--gj-text-2xl);
    }

    .pricing-value {
        font-size: 3rem;
    }

    .pricing-bundles-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}