/* Styles personnalisés pour la section de tarification dynamique */

.subscription-selector {
    text-align: center;
    margin: 40px 0;
}

.selector-container {
    display: inline-block;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.selector-btn {
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
}

.selector-btn.active {
    background: linear-gradient(45deg, #F8136B, #FF9C00) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(248,19,107,0.3) !important;
}

.selector-btn:not(.active) {
    background: transparent;
    color: #666;
}

.selector-btn:hover:not(.active) {
    background: rgba(248,19,107,0.1);
    color: #F8136B;
}

.period-info {
    margin-top: 20px;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

/* Styles pour les cartouches de tarification */
.pricing-card:nth-child(1) .pricing-block-two,
.pricing-card:nth-child(3) .pricing-block-two {
    background: white !important;
    border: 2px solid #e9ecef !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

.pricing-card:nth-child(2) .pricing-block-two {
    background: linear-gradient(135deg, #F8136B, #FF9C00) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(248,19,107,0.3) !important;
}

.pricing-card:nth-child(1) .pricing-table h4,
.pricing-card:nth-child(3) .pricing-table h4 {
    color: #333 !important;
}

.pricing-card:nth-child(1) .pricing-table .price-display,
.pricing-card:nth-child(3) .pricing-table .price-display {
    color: #F8136B !important;
}

.pricing-card:nth-child(2) .pricing-table h4,
.pricing-card:nth-child(2) .pricing-table .price-display {
    color: white !important;
}

.price-period {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
    font-weight: normal;
}

.pricing-card:nth-child(2) .price-period {
    color: rgba(255,255,255,0.8) !important;
}

/* Animation pour les changements de prix */
.price-display, .period-duration {
    transition: all 0.4s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .selector-btn {
        padding: 10px 20px;
        font-size: 14px;
        margin: 2px;
    }
    
    .selector-container {
        padding: 6px;
    }
    
    .subscription-selector h3 {
        font-size: 20px;
    }
}