.canClick {
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

#enlarges {
    cursor: pointer;
}

.detailWrapper {
    text-align: center;
    margin-top: 10px;
}

.details {
    font-size: 0.9375rem;
}

.productName {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    word-break: break-all;
    font-size: 0.875rem;
    height: 2.625rem;
    margin-top: 4px;
}

.action {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 88%;
}

.imgPreview {
    display: none;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
}

.imgPreview img {
    z-index: 100;
    max-width: 100%;
    max-height: 100%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.like {
    color: #d1e8ff;
}

.like.bi.bi-heart-fill {
    color: red;
}

.social-list {
    display: flex;
    position: relative;
    list-style-type: none;
    margin: 0px;
}

.socialImg {
    object-fit: cover;
    cursor: pointer;
}

.listImg:hover {
    border-color: red;
}

ul {
    padding: 0px;
}

.message-modal-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
}

.custom-floating-modal {
    position: fixed;
    bottom: 20px;
    right: 120px;
    width: 360px;
    z-index: 999;
}

.modal-dialog-bottom-right {
    margin: 0px;
}


.custom-floating-modal .modal-content {
    pointer-events: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.message_btn {
    width: 100%;
    margin-top: 10px;
}

.custom-modal-header {
    background-color: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.message-reply {
    padding: 0px 0px 20px 0px;
}

.message_action {
    gap: 8px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.message_action .message_btn {
    flex-grow: 1;
}

.message_action .message_btn,
.message_action .summon_btn {
    width: 100%;
}

.socials-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

@media (max-width: 576px) {
    .socials-button {
        display: none;
    }

    .custom-floating-modal {
        bottom: 96px;
        right: 20px;
    }

    .message-modal-btn {
        right: 10px;
    }

    #socials {
        margin-top: 20px;
    }

    .socialImg {
        width: 40px;
        width: 40px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    #socials {
        margin-top: 20px;
    }

    .socialImg {
        width: 40px;
        width: 40px;
    }
}

@media (min-width: 768px) and (max-width:992px) {
    #header {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .socialImg {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 992px) and (max-width:1200px) {
    #header {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .socialImg {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 1200px) {
    #header {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .socialImg {
        width: 25px;
        height: 25px;
    }
}