.top-choices {
    margin: 5.5% 5.5% 0 5.5%;
}

.top-choices-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: white;
}

.top-choices-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    margin-top: 2rem;
}

.top-choices-list-item-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-choices-img {
    width: 13.75vw;
    height: 17.85vw;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: 2px solid transparent;
}

.top-choices-img .item-rating-card {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.top-choices-img:hover .item-rating-card {
    opacity: 1;
}

.top-choices-img:hover {
    border: 2px solid #FF3B30;
}

.top-choices-link{
    text-decoration: none;
}


.top-choices-item-favorite {
    position: absolute;
    top: 5%;
    right: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.top-choices-card-bot {
    display: flex;
    justify-content: space-between;
}

.top-choices-card-left-side {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.top-choices-card-left-side-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: white;
    word-break: break-word;
}

.top-choices-card-left-side-price-container {
    display: flex;
    gap: 0.5rem;
}

.top-choices-card-left-side-original-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FF3B30;
    text-decoration: line-through;
}

.top-choices-card-left-side-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFCC00
}

.top-choices-card-right-side {
    background-color: #FF3B30;
    border-radius: 15px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 1550px) {
    .top-choices-container {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .top-choices-card-right-side {
        width: 50px !important;
        height: 50px !important;
    }

    .top-choices-img {
        width: unset !important
    }

    .top-choices-card-left-side-price {
        font-size: 1.25rem !important;
    }
    .top-choices-card-left-side-original-price{
        font-size: 1.25rem !important;
    }
}



@media (max-width: 1024px) {
    .top-choices-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
}