/* Reviews List Styling */
.reviews-list {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.review {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-header .review-details {
    flex: 1;
}

.review-name {
    font-weight: bold;
    /* font-size: 1rem; */
    color: #7ca9dd;
    font-size: x-large;
}

.review-date {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.review-stars {
    color: #f5a623;
    margin-top: 5px;
    font-size: 18px;
}

.review-message {
    margin-top: 10px;
    line-height: 1.5;
    color: #555;
}

.review-response {
    margin-top: 15px;
    padding: 10px;
    background: #f4f4ff;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.review-response strong {
    color: #007bff;
}

/* Star Rating Styles */
.star-rating {
    direction: rtl;
    display: inline-flex;
    font-size: 18px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #f5a623;
}

/* Rating style start*/

.review-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #444;
}

/* Overall Rating Section */
.card-overall {
    text-align: center;
    margin-bottom: 20px;
}

.overall-rating {
    font-size: 2rem;
    color: #f5a623;
    font-weight: bold;
}

.overall-stars {
    font-size: 1.5rem;
    color: #f5a623;
    margin: 5px 0;
}

.total-reviews {
    font-size: 0.9rem;
    color: #666;
}

/* Breakdown Section */
.card-breakdown {
    margin-top: 10px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 80px;
    font-size: 0.9rem;
    color: #666;
}

.rating-bar {
    flex: 1;
    height: 10px;
    background-color: #d4d4d4;
    margin: 0 10px;
    border-radius: 5px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background-color: #f5a623;
    transition: width 0.3s ease;
}

.rating-count {
    width: 30px;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
}

/* Star Rating Display */

.stars {
    --star-size: 24px;
    --star-color: #f5a623;
    --star-background: #ddd;
    --rating: 0;
    /* Default rating value */
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
    background:
        linear-gradient(90deg,
            var(--star-color) calc(var(--rating) / 5 * 100%),
            var(--star-background) calc(var(--rating) / 5 * 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Arial", sans-serif;
}

.customstartstyle {
    --star-size: 24px;
}

.stars::before {
    content: "★★★★★";
    /* Display 5 stars */
}

.rating-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

/* Rating style end */



/* style for tabs start */
.tabs-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.tab {
    text-align: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.tab:hover {
    color: #007bff;
}

.tab.active {
    border-bottom: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
}

.tab-content {
    width: 100%;
    overflow: auto;
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
}

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

/* style for tabs ends */

.description-container {
    /* max-height: 100px;
    overflow: scroll; */
    max-height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    font-size: 14px;
}

/* Basic styling for layout */
.slider-container {
    padding: 20px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

/* Main image styling */
.main-image {
    flex: 3;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 469px;
    transition: background-image 0.5s ease;
    position: relative;
    cursor: pointer;
}

.ellipsis {
    white-space: nowrap;
    /* Prevents the text from wrapping to the next line */
    overflow: hidden;
    /* Hides any text that overflows the container */
    text-overflow: ellipsis;
    /* Adds "..." at the end of the overflowed text */
}

/* Arrow button styling */
.arrow {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}

/* Positioning for left and right arrows */
.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Thumbnail container styling */
.thumbnail-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 469px;
    overflow: hidden;
}

/* Inner container for scrolling thumbnails */
.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.3s ease;
}

/* Thumbnail images */
.thumbnail {
    width: 160px;
    height: 130px;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 5px;
    border: 2px solid transparent;
}

/* Highlight active thumbnail */
.thumbnail.active {
    border-color: #3498db;
}

/* Thumbnail scroll arrows */
.thumbnail-arrow {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

/* Positioning for thumbnail scroll arrows */
.thumbnail-arrow-up {
    top: 5px;
    /* right: 10px; */
}

.thumbnail-arrow-down {
    bottom: 5px;
    /* right: 10px; */
}

/* Modal styling */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 88%);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content (full-size image) */
.modal-content {
    max-width: 90%;
    max-height: 90%;
}

/* Close button for modal */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.text-container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 99%;
    margin-bottom: 0px;
}

.slider-container {
    margin-top: 30px;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}

.slider-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-img {
    padding: 10px;

}

.slider-item {
    flex: 0 0 19%;
    /* Show 5 items in the viewport */
    box-sizing: border-box;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.slider-item img {
    max-width: 100%;
    height: 200px;
    border-radius: 8px;
}

.buttonslider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 17px;
    cursor: pointer;
    z-index: 10;
}

.buttonslider:focus {
    outline: none;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.free {
    background-color: #5cb85c;
}

.commercial {
    background-color: #c00;
}



.product-priceheading {
    margin-top: 0px;
    font-weight: 700;
    text-align: right;
}

@media screen and (max-width: 992px) {
    .product-priceheading {
        text-align: left;
    }

    .review-header {
        display: block;
    }
}

.product-price {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    border: 0;
    color: #fff;
    display: inline-block;
    line-height: 1em;
    padding: 4px 14px;
    border-radius: 3px;
    font-size: 12px;
}

.product-descriptionn {
    font-size: 14px;
    color: #555;
    padding: 0 10px;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}



.rel-anc :hover {
    text-decoration: none;
}

.addminaccess {
    margin-top: 20px;
    text-align: right;
}

.hide {
    display: none !important;
}

/* see also slider style */

.container_seealso {
    width: 100%;
    /* height: 100vh; */
    /* background: #A4152C; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
.lSPager.lSpg{
    display: none;
}
.box {
    width: 215px;
    height: 376px;
    background: white;
    border-radius: 10px;
    /* box-shadow: 2px 10px 12px rgba(0, 0, 0, .5); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 20px 5px;
    text-align: center;
    border: 1px solid #ddd;
}

.box:hover {
    /* background-color: #17171D; */
    transform-style: preserve-3d;
    transform: scale(1.02);
    transition: all ease .3s;
}

.box:hover .marvel {
    color: #C0292B;
    transition: all ease .5s;
}

.model {
    height: 350px;
    max-height: 100%;
    max-width: 100%;
}

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.details p {
    font-family: calibri;
    font-weight: bold;
    color: #6A6A74;
    text-align: center;
    margin-top: 20px;
}

.marvel {
    color: #32323E;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: Bebas Kai;
    font-size: 25px;
}

.logo {
    height: 60px;
}

.slider-img img {
    max-width: 100%;
}

.lSPrev,
.lSNext {
    background-color: black;
    opacity: 1 !important;
}


@media(max-width: 720px) {
    .box {
        width: 200px;
        height: 360px;
    }

    .model {
        height: 250px;
    }

    .details p {
        font-size: 14px;
        width: 250px;
    }
}

@media(max-height: 600px) {
    .container_seealso {
        /* height: 90%; */
    }
}