/* Product Card Component Styles - Updated Design */




.product-card-wrapper {
    display: flex;
    justify-content: center;
    width: 280px;
    position: relative;
    height: auto;
    border-radius: 12px;
    flex: 0 0 280px


}
.product-card-wrapper  h4{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 24px;
}
.product-card-wrapper .wp-block-buttons{
    position: absolute;
    bottom: 20px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.product-card-wrapper strong{
    font-weight: 900;
        font-family: 'Suisse Intl' , sans-serif;
}
.product-card {
    background: white;
    position: relative;
    color: #26265A;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 0 20px;
    width: 280px;
}

.product-card__price {
    background: #06FE02;
    width: max-content;
    padding:  10px 20px;
    font-size: 36px;
    color: #26265A;
    font-weight: 900;
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 12px;
    text-align: center;

}

.product-card_title_wrapper{
    margin-top: 70px;
    text-align: center;
}

.product-card__title {
    font-size: 36px;
    color: #26265A;
    font-weight: 800;
    text-align: center;

}
.product-card__top-title{
    font-size: 24px;
    color: #26265A;
    font-weight: 800;
    text-align: center;
}

.product-card__badge{
    color: #F88126;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    height: 30px;

}
.product-card__description {
    flex-grow: 1;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    margin-bottom:30px;
    font-family: 'Suisse Intl' , sans-serif;

}

.product-card__cta {
    background: #26265A;
    color: white;
    text-align: center;
    padding:  12px 24px;
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 900;
    font-family: 'Suisse Intl' , sans-serif;

}

.product-card-send-info{
    display: flex;
    gap: 10px;
}

.product-card-send-info p{
    font-size: 16px;
    font-family: 'Suisse Intl' , sans-serif;
    font-weight: 300;
}
.product-card-send-info img{
    width: 24px;
    max-width: none;
}

.relation{
    position: relative;
}

.absolut-bottom{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

@media(max-width: 600px){
    .product-card-wrapper{
        max-width: 100%;
    }
}

