.featured_product_details_wrapper {
    max-width: unset !important;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 10px;
    width: 100%;
    height: 100%;
}

.featured_product_details {
    border-radius: 8px;
    padding: 5px 20px;
    box-sizing: border-box;
    background-color: #f2eee7;
    font-weight: 300;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    transition: .1s ease-in-out;
}

.featured_details_radio {
    flex-grow: 1;
    padding: 0 20px 0 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.featured_details_radio span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: transparent;
    box-sizing: border-box;
    border: 3px solid #444;
    display: block;
}

.featured_details_radio.checked span {
    background-color: var(--main-color);
}

.featured_detail {
    flex-grow: 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.featured_detail .modultxt {
    padding: 5px 0 0;
}

#featured_product_details_foto {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
}


.featured_detail h3 {
    font-weight: 500;
    color: #444;
    margin-bottom: 4px;
    margin-top: 0;
    width: 100%;
    text-align: left;
  }