.product-title {
    font-weight: 700;
    font-size: 16px;
}

.product-desc {
    font-size: 12px;
}

.product-img {
    width: 179px;
    height: auto;
}

.product-img-thumbnail {
    width: 110px;
    height: auto;
}

.product-img-summary {
    width: 80px;
    height: auto;
}

.product-qty {
    font-size: 14px;
    background: #FEA11D;
    color: #FFFFFF;
    font-weight: 400;
}

.float-right-card {
    position: fixed;
    right: 0;
    color: white;
    background-color: #752AEC;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 10px 0 0 10px;
    text-decoration: none;
    cursor: pointer;
}

.external-link {
    top: 150px;
}

.external-link i {
    font-size: 11px;
}

#float-cart {
   top: 50%;
   padding: 10px;
}

#float-cart i {
    font-size: 14px;
}

.cart-divider {
    opacity: 1;
    margin: 4px 0;
}

.cart-counter {
    position: absolute !important;
    background: #EF512F;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 8px;
    margin-top: 3px;
}

.cart-modal-total {
    padding: 5px 25px;
    font-family: Helvetica;
    font-size: 14px;
    text-align: center;
    border-radius: 20px;
    color: white;
    width: fit-content;
}

.cart-header {
    padding-bottom: 12px;
    border-bottom: 1px solid #BABFD1;
}

.cart-item {
    border-bottom: 1px solid #BABFD1;
    padding: 12px 0;
}

.cart-total {
    font-weight: 400;
    font-size: 12px;
    text-align: right;
    color: #240042;
}

.product-subtotal {
    font-size: 16px;
    color: #240042;
}

.order-summary-card {
    background: #BABFD11A;
    border: 1px solid #BABFD1;
    box-shadow: 0px 4px 10px 0px #00000040;
    font-size: 14px;
    color: #000000;
    border-radius: 10px;
    padding: 10px 15px;
}

.order-summary {
    font-size: 14px;
}

.product-card {
    cursor: pointer;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.thumbnail-grid#reviewThumbnailGrid {
    grid-template-columns: repeat(5, 1fr);
}
.thumbnail-item {
    position: relative;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-item:hover {
    border-color: #240042;
}
.thumbnail-item.active {
    border-color: #240042;
}
.more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #240042;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background-color: #24004280;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}

.main-image {
    width: 250px;
    height: 250px;
    margin: auto;
}

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

.product-desc-container {
    background-color: #E8E9ED; 
    border-left: 4px solid #240042;
}

.rating-stars .bi-star-fill {
    color: #f39c12; /* Different gold color */
  }
  
.rating-stars .bi-star {
    color: #ced4da; /* Different empty star color */
}

/* .rating-stars {
    font-size: 14px;
}

.rating-stars .bi {
    margin-right: 0.5rem;
}

.rating-stars .bi {
    transition: all 0.2s ease-in-out;
}

.rating-stars .bi:hover {
    transform: scale(1.2);
} */

.carousel-img {
    height: 50vh;
}

.review-card .thumbnail-item:hover {
    border: unset;
}

.review-card .thumbnail-item.active {
    border: unset;
}

.review-card-title {
    font-size: 14px;
    color: #240042;
    font-weight: 700;
}

.view-more-btn {
    font-size: 7px;
    color: #240042;
    text-align: center;
    align-content: center;
}

.carousel-control-next, .carousel-control-prev {
    width: 6%;
}

#productDetailsModal .modal-body {
    max-height: 86vh;
    overflow: scroll;
}

.collapsible-card {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: unset;
}

.collapsible-card.expanded {
    max-height: 500px; /* Adjust based on content height */
    border: 1px solid #BABFD1;
    padding: 10px 15px;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.chevron-icon.rotated {
    transform: rotate(180deg);
}

.address-header {
    cursor: pointer;
}

@media (max-width: 767px) {
    .cart-modal-total {
        font-size: 10px;
    }

    .product-img-thumbnail, .product-img-summary {
        width: -webkit-fill-available;
    }

    .product-subtotal {
        font-size: 14px;
    }

    .product-qty {
        font-size: 12px;
    }

    .order-summary-card {
        font-size: 12px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-desc-container {
        border: none;
    }

    #productDetailsModal .modal-body {
        max-height: 90vh;
        overflow: scroll;
    }

    .carousel-img {
        height: 40vh;
    }

    .view-more-btn {
        font-size: 10px;
    }

    .video-play-icon {
        font-size: 0.6rem;
    }

}