@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

.similar-product-card{
    width: 15rem;
    margin-right: 8px;
}
@media screen and (max-width: 425px) {
    .similar-product-card{
        width: 130px;
        margin-right: 8px;
    }

}


    .disabled-size {
        position: relative;
        pointer-events: none;
        opacity: 0.5;
    }
    .disabled-size::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -5px;
        width: 124%;
        height: 1px;
        background: rgb(88, 87, 87);
        transform: rotate(-36deg)    ;
    }
    .yellow-border{
        outline: 2px solid #F2A413;
    }

    .video-thumbnail {
        position: relative;
        display: inline-block;
    }
    .video-thumbnail img {
        width: 100%;
        max-height: 100px;
        border-radius: 8px;
    }
    .video-thumbnail .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }


/* <!-- Add Smooth Transition CSS --> */

    .card-header i {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Ensure smooth collapse transition */
    .collapse {
        transition: height 0.3s ease;
    }

    /* When the collapse is open, adjust the transform for a smoother effect */
    .collapse.show {
        transition: height 0.3s ease, opacity 0.3s ease;
    }

    /* Unique hover effect for the custom product slider */
    .custom-product-slider .carousel-inner .card img {
        transition: transform 0.3s ease-in-out;
        /* Smooth scaling animation */
    }

    .custom-product-slider .carousel-inner .card img:hover {
        transform: scale(1.05);
        /* Scale up slightly on hover */
    }


/* <!-- Modal Styling  --> */

    .zoomable-image {
        max-width: 100%;
        height: auto;
        cursor: zoom-in;
    }

@media screen and (min-width:576px) {
    .desk-scroll{
        max-height: 600px;
        overflow-y: scroll; 
        position: relative;
        
    }
    .desk-scroll::-webkit-scrollbar{
        display: none;
    }
    
}

.btn-warning.tag{
    background-color: #73541A;
    color: #ffff ;
    border-color: #73541A;
}
.btn-warning.tag:hover{
    background-color: #956d22;
    color: #ffff ;
    border-color: #73541A;
    
}
.tag{
    font-family: "DM Serif Text", serif !important;
}
.toggle-read{
    color: #F2A413;
}
.scroll-down-btn {
    margin-left: 25%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* width: 40px;  */
    height: 40px;
    background-color: #73541A;
    border-radius: 40% !important;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }