.page-wrapper {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.product-view-page {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top-section {
    width: 100%;
    display: flex;
    gap: 2rem;
}

.gallery {
    display: flex;
    flex-direction: row;
}

.thumb-list {
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 16px;
    margin-bottom: 10px;
}

.thumb-list li {
    margin-bottom: 0.5rem;
}

.thumb-list img {
    width: 90px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
}

.main-image {
    width: 400px;
    height: 540px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.item-rating-card {
    position: absolute;
    top: 3%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    background-color: rgba(9, 9, 9, 0.8);
    border-radius: 5rem;
}

.item-rating-card-booth {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.item-rating {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    background-color: rgba(9, 9, 9, 0.8);
    border-radius: 5rem;
}

.rating-text {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 200;
    color: white;
    font-size: 16px;
}

.star-icon {
    margin-bottom: 3px;
    width: 20px !important;
}

.product-favorite {
    position: absolute;
    top: 3%;
    right: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.favorite-checkbox {
    display: none;
}

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

.favorite-label::before,
.favorite-label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    transition: opacity 0.3s ease-in-out;
}

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

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

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

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


.inline-icon {
    vertical-align: middle;
    width: 1rem;
    filter: invert(1);
    margin-right: 0.2rem;
}

/* RIGHT SIDE STARTS HERE!! */
.summary {
    flex: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center the content horizontally */
}

.summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content to the left */
    width: 100%;
    max-width: 650px;
    /* Optional: limit width */
}

.title {
    font-family: 'Bayon', sans-serif;
    font-weight: 400;
    font-size: 46px;
    margin: 0 0 0.5rem;
    color: #fff;
    line-height: 1;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 25px;
}

.info-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.product-info-text {
    color: #fff;
    margin: 2px;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
}

.product-info-sub-text {
    color: #0088FF;
    margin: 2px;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.meta-line a {
    color: #38f;
    text-decoration: none;
}

.file-link img {
    width: 1rem;
    vertical-align: text-bottom;
    margin-right: 0.3rem;
}

.price {
    font-size: 2rem;
    color: #FFCC00;
    font-family: 'Outfit-Light', sans-serif;
    font-weight: 200 !important;
    margin: 1rem 0;
}

.actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


.fav-text {
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    color: #999999;
}


.bottom-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit-Light', sans-serif;
    font-weight: 100;
    color: #fff
}

.booth-image {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.booth-info p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.product-details p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.booth-avatar {
    width: 48px;
    height: 48px;
    border-radius: 75%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.booth-info h2 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.product-details {
    width: 50%;
}

.product-details h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.booth-info {
    width: 50%;
}

.booth-info a {
    color: #38f;
    text-decoration: none;
}

.product-details a {
    color: #38f;
    text-decoration: none;
}

.buy-now-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.1vw;
    width: 100% !important;
    max-width: 650px;
    padding: 25px;
    background-color: rgba(255, 59, 48, 0.25);
    border: 1px solid #FF3B30;
    border-radius: 9999rem;
    width: fit-content;
    color: white;
    margin-top: 10px;
    transition: background-color 0.5s ease-in;
    cursor: pointer;
}

.buy-now-button:hover {
    background-color: #FF3B30;
}

.product-information-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    width: 100%;
}

.description {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    width: 100%;
}

.description-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.description-text {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0.5rem;
    font-family: 'Outfit-Light', sans-serif;
    text-align: justify;
}

.product-details-bottom {
    display: flex;
    align-items: flex-start;
}

.file-details {
    width: 50%;
    font-family: 'Outfit-Light', sans-serif;
    display: flex;
    flex-direction: column;
}

.share-on-socials {
    width: 50%;
    font-family: 'Outfit-Light', sans-serif;
}

.file-details p {
    margin: 1px 0;
    padding: 0;
}

.social-icon {
    border: 1px solid #FFCC00;
    border-radius: 15px;
    padding: 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
    overflow: hidden;
}

.social-icon.copy-paste-icon {
    background-image: url("/assets/FrontPage/Socials/share_icon.svg");
}

.social-icon.twitter-icon {
    background-image: url("/assets/FrontPage/Socials/share_twitter.svg");
}

.social-icon.facebook-icon {
    background-image: url("/assets/FrontPage/Socials/share_face.svg");
}






.section-title {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin: 50px 0px;
    padding-left: 5%;

    font-family: 'Outfit', sans-serif;
    font-weight: 300;

}


.you-may-list {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 100px;
    gap: 1.5rem;
    width: max-content;
    margin-bottom: 100px;
}

.you-may-item {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    font-family: 'Outfit-Light', sans-serif;
    font-weight: 100;
    max-width: 165px;
    min-height: 270px;
    max-height: 270px;
    position: relative;
}

.you-may-item-img {
    position: relative;
    height: 205px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: filter 0.2s;
}

.you-may-item-img:hover {
    filter: brightness(1.05);
}

.you-may-item-fav {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: 28px;
    width: 28px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    display: flex;
    ;
    justify-content: center;
    align-items: center;
}

.you-may-item-fav .favorite-checkbox {
    display: none;
}

.you-may-item-fav .favorite-label {
    width: 18px;
    height: 18px;
    display: inline-block;
    cursor: pointer;
    background: url("/assets/FrontPage/favorite_heart.svg") center/contain no-repeat;
    transition: background-image 0.2s;
}

.you-may-item-fav .favorite-checkbox:checked+.favorite-label {
    background-image: url("/assets/FrontPage/favorite_heart_full.svg");
}

.you-may-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}

.you-may-item-details .name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.you-may-item-details .you-may-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #FFCC00;
}

.you-may-item-details .you-may-item-price .old {
    text-decoration: line-through;
    font-weight: 400;
    color: #f33;
    margin-right: 0.5rem;
}

.you-may-item-cta {
    height: 100%;
    align-self: flex-end;
}

.you-may-item-cta button {
    background: #FF3B30;
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.you-may-item-cta button:hover {
    transform: scale(1.05);
}

.you-may-item-cta img {
    width: 15px;
}

.you-may-item-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="radio"][name="stl-file-tab"] {
    display: none;
}


.reviews-menu {
    margin-top: 65px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3.75rem;
    border: 1px solid #FFCC00;
    padding: 2px;
}

.review-option {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #999999;
    padding: 6px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

#tab-popular:checked~.stl-files-list-container #panel-popular {
    display: flex;
}


#tab-newest:checked~.stl-files-list-container #panel-newest {
    display: flex;
}

#tab-popular:checked~.reviews-menu label[for="tab-popular"],
#tab-newest:checked~.reviews-menu label[for="tab-newest"] {
    background-color: #FFCC00;
    color: black;
    border-radius: 3.75rem;
}


.product-reviews {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    font-family: 'Outfit', sans-serif;
    color: #eee;
}

.written-reviews {
    margin-left: 100px;
    width: 100%;
}

.reviews-overall {
    width: 20%
}


.reviews-overall p {
    margin: 1px 0;
    color: #FFCC00;
    padding: 0;
}

.reviews-overall h3 {
    margin-bottom: 0px;
    margin-top: 0px;
}


.product-details-bottom h3 {

    font-size: 18px;
    font-family: 'Outfit-Light', sans-serif;
    font-weight: 200;
}



.review-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-text {
    flex: 1;
    padding: 30px 40px;
    background: #0a0a0a;
    border: 1px solid #FF383C;
    border-radius: 999px;
    color: #fff;
    font-size: 16px;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
}

.review-text::placeholder {
    color: #D9D9D9;
    font-size: 10px;
    font-family: 'Outfit-Light', sans-serif;
    font-weight: 100;
}

.review-submit {
    background: #FF383C;
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-submit img {
    width: 1.2rem;
}


.review-rating-input {
    margin-left: 100px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-label {
    font-size: 1.1rem;
}

.star-inputs {
    display: flex;
    gap: 0.5rem;
}

.star-inputs .star {
    width: 1.5rem;
    filter: grayscale(100%) brightness(50%);
    cursor: pointer;
}

.star-inputs .star.filled {
    filter: none;
}

.reviews-separator {
    border: none;
    border-top: 1px solid #ffffff;
    margin-bottom: 1.5rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    display: flex;
    gap: 1rem;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    color: #FF383C;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Outfit-Light', sans-serif;
}

.review-date {
    color: #FFCC00;
    font-size: 0.9rem;
    align-self: flex-end;
    font-family: 'Outfit-Light', sans-serif;
}

.review-score {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Outfit-Light', sans-serif;
    color: #FFF;
    font-size: 16px;
}

.review-score .star-icon {
    width: 1rem;

}

.review-text-body {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-family: 'Outfit-Light', sans-serif;
}

.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-feedback {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.like-icon,
.dislike-icon {
    width: 1.2rem;
    cursor: pointer;
}

.dislike-icon {
    transform: scaleX(-1) scaleY(-1);
}

.like-count,
.dislike-count {
    color: #FFCC00;
    font-size: 16px;
    font-family: 'Outfit-Light', sans-serif;
}

.review-links a {
    margin-left: 1.5rem;
    color: #FFCC00;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit-Light', sans-serif;
}

.review-links a img {
    width: 1rem;
}


.see-replies {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 50px;
}

.see-replies-text {

    margin-left: 10px;
    font-family: 'Outfit', sans-serif;
    color: #999999
}


.category-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: 5px;
    transition: background-color 0.2s ease-in-out;
}

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

#left-arrow-container:hover {
    background-color: #FFCC00;
}



.you-may-list-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.you-may-item-link {
    text-decoration: none;
}



.review-submit-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .you-may-list-wrapper {
        margin-left: -10%;
    }

    .you-may-item-img {
        width: 100%;
    }

    .you-may-list {
        flex-wrap: wrap;
        width: 100%;
    }

    .you-may-item {
        flex: 0 0 30%;
        max-width: 30%;
    }
}


@media (max-width: 768px) {
    .you-may-list-wrapper {
        margin-left: -15%;
        margin-right: 5%;
    }

    .you-may-item {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .top-section {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 750px) {
    .product-reviews {
        flex-direction: column;
    }

    .written-reviews {
        margin-left: 0px;
        margin-top: 50px;
    }

    .social-icons-prod-page {
        display: flex !important;
        margin-top: unset !important;
        gap: unset !important;
        justify-content: space-around !important;
        flex-flow: unset !important;
    }

    .reviews-overall {
        width: 100%;
    }

    .review-rating-input {
        margin-left: 0px;
    }

    .review-item {

        gap: 6px;
    }

    .review-text {

        padding: 15px;
    }

    .review-submit {
        display: none;
    }

    .review-submit-mobile {
        background: #FF383C;
        border: none;
        width: 100%;
        height: 64px;
        border-radius: 10px;
        cursor: pointer;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-image {
        width: unset;
    }

    .summary {
        width: 100%;
    }

    .buy-now-button {
        font-size: 15px;
    }

    .product-details h3 {
        margin-top: 10px;
    }

    .you-may-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .you-may-list {
        margin-left: 50px;
    }

    .review-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-links a {
        margin-left: 0px;
        margin-top: 15px;
    }

    .review-feedback {

        display: flex;
        width: 100%;
        gap: 23px;
        justify-content: flex-start;
    }

    .review-links {

        display: flex;
        width: 100%;
        gap: 10px;
        justify-content: flex-start;
    }

    .page-wrapper {
        width: 90vw;
    }

    .section-title {

        padding-left: 15%;
    }
}