.pricing-card-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    height: 450px;
}

.pricing-card-container {
    width: 100%;
    position: relative;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: #F6F7FA;
    border: 1px solid #E9EBF3;
    border-radius: 36px;
    box-sizing: border-box;
    align-items: flex-start;
    padding: 32px;
    gap: 16px;
    will-change: box-shadow;
    box-shadow: 0px 12px 62px 0px rgba(26, 30, 101, 0.04), 0px 3.618px 18.691px 0px rgba(26, 30, 101, 0.03), 0px 1.503px 7.763px 0px rgba(26, 30, 101, 0.02), 0px 0.543px 2.808px 0px rgba(26, 30, 101, 0.01);
}


.pricing-description {
    height: 144px;
    overflow: auto;
}

.pricing-products-section {
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    will-change: max-height;
}

.pricing-products-section > * {
    font-size: 14px;
} 

.pricing-card:hover .pricing-products-section {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.price-transition {
    transition: opacity 0.2s ease-in-out;
}

.faded {
    opacity: 0;
}

.currency-switch {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #414859;
}

.currency-switch-input {
    display: none;
}

.currency-switch-label {
    font-family: Involve-Semibold;
    display: block;
    font-size: 12px;
    padding: 4px 8px;
    cursor: pointer;
    background-color: transparent;
    color: #242338;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#eur:checked ~ .currency-switch-label[for="eur"],
#usd:checked ~ .currency-switch-label[for="usd"] {
    background-color: #242338;
    color: #F6F7FA;
}

@media screen and (max-width: 768px) {
    .pricing-description {
        height: 100px;
    }

    .pricing-products-section {
        max-height: none;
        overflow: visible;
    }

    .pricing-card-wrapper {
        height: auto;
    }
}
