.product-tile-container {
    position: relative;
    flex-basis: calc(25% - 12px);
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    font-family: 'Outfit', sans-serif;
}


.product-tile-container img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    max-height: 174px;
    object-fit: cover;
    aspect-ratio: 9 / 6;
}

.product-tile-container .highlight-bubble {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #0e3056d1;
    color: white;
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    font-weight: 600;
    text-transform: uppercase;
}

.product-tile-container .highlight-new{
    background-color: orange;
}


.overlap-highlights {
    position: absolute;
    right: 7px;
    display: flex;
    gap: 5px;
    bottom: 0px;
}

.overlap-highlights .cancellation-policy, .overlap-highlights .tour-length {
    position: relative;
    color: orange;
    background-color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 3px 5px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
}


.cancellation-policy-mobile {
    color: orange;
    align-items: flex-end;
    margin-bottom: 12px;
    font-weight: 600;
    display: none;
}

.cancellation-policy-mobile .material-icons {
    font-size: 13px;
    width: 13px;
    height: 13px;
    margin-right: 4px;
}

.overlap-highlights .material-icons {
    font-size: 13px;
    width: 13px;
    height: 13px;
    margin-left: 3px;
}


.product-tile-text-section {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.text-align-bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.product-tile-text-section h3 {
    text-transform: capitalize;
    font-size: 19px;
    color: #0E3056;
    font-weight: 700;
    min-height: 50px;
}

.product-tile-text-section .reviews-container {
    display: flex;
    align-items: center;
    margin: 8px 0 8px 0;
    flex-wrap: wrap;
    row-gap: 6px;
}

.reviews-container .material-icons {
    width: 20px;
    height: 20px;
    font-size: 20px;
    margin-right: 3px;
    color: #FFA500;
    margin-left: 0;
}

.recent-bookings {
    display: flex;
    align-items: center;
    color: #0E3056;
    font-weight: 600;
    font-size: 13px;
    background: rgba(14, 48, 86, 0.1);
    width: fit-content;
    padding: 4px 5px;
    margin-bottom: 12px;
    border-radius: 2px;
}

.recent-bookings .material-icons {
    width: 17px;
    height: 17px;
    font-size: 17px;
    margin-right: 3px;
    color: #0E3056;
}

.recent-bookings i {
    font-size: 12px;
    margin-right: 5px;
    color: #0E3056;
}

.reviews-container span {
    margin: 0 3px;
    color: #0E3056;
}

.reviews-container .review-score {
    font-weight: 600;
}

.reviews-container .review-stats {
    font-size: 13px;
}


.product-highlights {
    margin: 0 !important;
    padding-left: 23px !important;
}

.product-highlights li {
    color: #0E3056;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.product-highlights li:last-child {
    margin-bottom: 8px;
}

.product-tile-text-section .pricing-line {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    row-gap: 7px;
    flex-wrap: wrap;
    color: #0E3056;
    min-height: 40px;
}

.from-label {
    margin-right: 5px;
}

.product-tile-text-section .retailPrice {
    text-decoration: line-through;
    margin-right: 5px;
    font-size: 12px;
}

.product-tile-text-section .fromPrice {
    color: orange;
    font-size: 19px;
    font-weight: 700;
}

.product-tile-text-section .price-guarantee {
    display: flex;
    align-items: stretch;
    font-size: 10px;
}

.product-tile-text-section .price-guarantee .material-icons {
    font-size: 12px;
    height: 12px;
    width: 12px;
    margin-left: 2px;
    color: orange;
}

.spacer {
    margin: 0 1px 2px 1px !important;
}

@media (max-width: 1350px) {
    .overlap-highlights .cancellation-policy {
        display: none;
    }

    .cancellation-policy-mobile {
        display: flex;
    }
}

@media (max-width: 1150px) {
    .product-tile-container {
        flex-basis: calc(50% - 6px);
    }

    .product-tile-text-section h3 {
        min-height: unset;
    }
}

@media (max-width: 767px) {
    .frontpage-boat-row {
        padding: 0 10px;
    }

    .reviews-container .review-stats {
        font-size: 12px;
    }

    .reviews-container span {
        margin: 0 2px;
    }

    .recent-bookings {
        font-size: 10px;
    }

}

@media (max-width: 415px) {
    .recent-bookings {
        font-size: 9px;
    }

    .cancellation-policy-mobile {
        font-size: 12px;
    }

}

@media (max-width: 340px) {
    .recent-bookings {
        font-size: 8px;
    }

    .cancellation-policy-mobile {
        font-size: 11px;
    }
}