.product-highlights {
    margin-top: 7.5%;
}

.highlight-banner-container {
    height: 80vh;
    background-color: #16181b;
    display: flex;
    width: 100%;
}

.highlight-banner-left-side {
    width: 42%;
}

.left-side-container {
    padding: 7.5% 17% 4% 13.5%;
    height: 83%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-side-title {
    font-size: 4.2vw;
    font-family: 'Bayon', sans-serif;
    font-weight: 400;
    color: white;
    line-height: 1;
}

.left-side-by-container {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2%;
}

.left-side-by {
    font-family: inherit;
    font-weight: inherit;
    color: #FFCC00 !important;
}

.highlight-banner-right-side {
    width: 58%;
    position: relative;
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-side-rating {
    margin-bottom: 5%;
}

.left-side-details {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 300;
    color: white;
    font-size: 1.2rem;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
}

.left-side-buttons {
    display: flex;
    gap: 1.5rem;
}

.hightlight-banner-navigation-arrows {
    position: absolute;
    right: 9%;
    bottom: 7%;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
}

.left-navigation-arrow {
    transform: rotate(90deg);
    width: 0.75rem;
    height: 0.75rem;
    filter: brightness(0) saturate(100%);
}

.right-navigation-arrow {
    transform: rotate(270deg);
    width: 0.75rem;
    height: 0.75rem;
    filter: brightness(0) saturate(100%);
}

.navigation-arrow-container {
    background-color: rgba(255, 204, 0, 0.45);
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    user-select: none;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

.navigation-arrow-container:hover {
    background-color: rgba(255, 204, 0, 1);
}

.navigation-divider {
    height: 1.25rem;
    border-left: 2px solid white;
}

.highlight-banner-navigation-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    gap: 1.5rem;
    height: 12px;
}

.navigation-segment {
    width: 6.25vw;
    height: 10px;
    background-color: rgba(255, 204, 0, 0.25);
    border-radius: 10px;
    transition: height 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.navigation-segment:hover {
    height: 12px;
    background-color: #ffcc00;
}

.highlight-radio {
    display: none;
}

.tab-content {
    display: none;
}

.tab-content:target {
    display: flex;
}

.tab-content.active:target~.tab-content.active {
    display: none;
}

.tab-content.active {
    display: flex;
}

.big-favorite-checkbox {
    display: none;
}

.big-favorite-label {
    position: relative;
    display: inline-block;
    width: 128px;
    height: 128px;
    cursor: pointer;
}

.big-favorite-label::before,
.big-favorite-label::after {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.3s ease-in-out,
        background-image 0s;
}

.big-favorite-label::before {
    background-image: url("/assets/FrontPage/big_favorite_heart.svg");
    opacity: 1;
}

.big-favorite-label::after {
    background-image: url("/assets/FrontPage/big_favorite_heart_full.svg");
    opacity: 0;
}

.big-favorite-checkbox:checked+.big-favorite-label::before {
    opacity: 0;
}

.big-favorite-checkbox:checked+.big-favorite-label::after {
    opacity: 1;
}

.big-favorite-checkbox:not(:checked)+.big-favorite-label:hover::before {
    background-image: url("/assets/FrontPage/big_favorite_heart_hover.svg");
}



@media (max-width: 1024px) {
    .left-side-buttons {
        margin-top: 10%;
        flex-direction: column-reverse !important;
        align-items: center !important;
    }

    .favorite-wrapper{
        display: flex;
        width: 100%;
        justify-content: flex-end;

    }

    .left-side-details {
        -webkit-line-clamp: 6;
    }

    .buy-now-long-button {
        width: 100% !important;
    }

    .navigation-segment {
        width: 10%;
    }


}

@media (max-width: 768px) {
    .left-side-details {
        -webkit-line-clamp: 5;
    }

    .left-side-title {
        font-size: 20px !important;
    }
}