/* Container for multiple cards */
.pricing-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tarifs .pricing-section > div {
    width: 378px;
}

.pricing-card > p, .pricing-section > p {
    width: 100%;
}

.coche {
    color: var(--secondary-color);
    font-size: 1.5rem;
    display: inline-block;
    width: 1.7rem;
    text-align: center;
}

.pricing-card {
    background-color: var(--primary-color);
    color: white;
    width: 378px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: var(--light-color);
    text-align: center;
    margin: 20px;
}

.card-header {
    background: linear-gradient(135deg, #88DFE6, #64C7DB);
    padding: 20px;
    text-align: center;
}

.card-header h2 {
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--secondary-color);
    text-align: center;
    display: inline-block;
}

.annual-price {
    width: 378px;
    text-align: center;
    color: var(--secondary-color);
}

.mini {
    font-size: 1rem;
}

.features-list {
    list-style-type: none;
    padding: 20px;
    font-size: 1.25rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}


.feature-list-text {
    font-weight: bold;
    display: inline-block;
    height: 2.1rem;
    margin-left: 10px;
    font-size: 1.25rem;
}

.feature-list-label {
    font-weight: bold;
    display: inline-block;
    height: 2rem;
    margin-left: 10px;
    font-size: 1.25rem;
}


label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Custom checkbox styles */
.custom-checkbox {
    appearance: none;
    width: 1.7rem;
    height: 1.7rem;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin: 5px -8px 5px 8px;
}

.custom-checkbox:checked {
    background-color: var(--secondary-color);
}

.custom-checkbox:checked::before {
    content: '';
    position: relative;
    top: -1px;
    width: 20px;
    height: 24px;
    display: inline-block;
    background: url('/svg/fleche-fonce.svg') no-repeat center;
    background-size: contain;
    left: 1px;
}


.cta-button {
    display: block;
    text-align: center;
    background-color: var(--dark-color);
    padding: 15px 0;
    margin: 20px 15px;
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

.counter-container {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    margin-left: 17px;
    width: 1.1rem;
}

#counter-value {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.counter-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.arrow-btn {
    border: none;
    color: var(--secondary-color);
    font-size: 1rem;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    font-weight: bolder;
    right: 31px;
    top: 1px;
    position: relative;
    background: url('/svg/arrow.svg') no-repeat center;
    background-size: contain;
    margin-left: 11px;
    padding: 15px;
}

.arrow-btn:active {
}

.up-arrow {
    rotate: 90deg;
}

.down-arrow {
    rotate: -90deg;
}

/* Responsiveness */
@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }

}
.feature-list-text, .feature-list-label {
    font-size: 1.1rem;
}

.mini {
    font-size: 0.8rem;
}
