.product {
    border-radius: 32px;
    box-shadow: 0px 0px 23.2px 0px #DBEAFE80;
    overflow: hidden;
}
.product .image {
    position: relative;
    height: 304px;
}
.product .labels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    max-width: fit-content;
    position: absolute;
    top: 18px;
    right: 22px;
}
.product .labels .label {
    display: inline-block;
    min-width: max-content;
    width: 48px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 32px;
    border-radius: 32px;
    background: #22C55E;
    padding: 0 4px;
}
.product .labels .label.hot {
    background: #E25656;
}
.product .labels .label.out-stock {
    background: #A6A6A6;
}
.product .info {
    padding: 24px 20px;
}
.product .info .name {
    font-size: 23px;
    color: #111827;
    line-height: 1.1;
}
.list-product {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px 0 20px;
}
.list-product li {
    position: relative;
    padding-right: 26px;
    font-size: 16px;
    color: #374151;
}
.list-product li:before {
    content: '';
    width: 13px;
    height: 13px;
    background-image: url('/assets/img/li-3.svg');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 1px;
    right: 0;
}
.testimonial-product {
    display: flex;
    gap: 10px;
    background: #F1F9FF;
    border-radius: 33px;
    padding: 8px 14px 10px 10px;
}
.testimonial-product .photo {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-product .txt-1 {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}
.testimonial-product .txt-2 {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.1;
    margin-top: 4px;
}
.product .prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.product .prices .discount {
    font-size: 16px;
    color: #DC2626;
    line-height: 24px;
    background: #FEE2E2;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 0 7px;
}
.price-product {
    display: flex;
    align-items: center;
    gap: 12px;
}
.price-product ins {
    font-size: 23px;
    color: #111827;
    line-height: 1.3;
    text-decoration: none;
}
.price-product del {
    position: relative;
    display: inline-block;
    font-size: 17px;
    color: #9CA3AF;
}
.product .buttons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}
.product .buttons .information {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    min-width: 51px;
    min-height: 51px;
    border-radius: 50%;
    background: #F5F5F5;
}
.product .buttons .open-order {
    line-height: 51px;
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    justify-content: center;
}
@media (max-width: 840px) {
    .product {
        border-radius: 20px;
    }
    .product .image {
        height: 184px;
    }
    .product .labels {
        top: 12px;
        right: 14px;
    }
    .product .labels .label {
        min-width: 35px;
        font-size: 11px;
        line-height: 20px;
    }
    .product .info {
        padding: 16px 12px;
    }
    .product .info .name {
        font-size: 14px;
    }
    .list-product li {
        padding-right: 16px;
        font-size: 11px;
    }
    .list-product li:before {
        width: 8px;
        height: 8px;
        background-size: contain;
        top: 1px;
        right: 0;
    }
    .list-product {
        gap: 5px;
        margin: 10px 0 12px;
    }
    .testimonial-product {
        gap: 6px;
        border-radius: 20px;
        padding: 4px 7px 6px 4px;
    }
    .testimonial-product .photo {
        width: 27px;
        height: 27px;
        min-width: 27px;
        min-height: 27px;
    }
    .testimonial-product .txt-1 {
        font-size: 10.3px;
        line-height: 1.4;
    }
    .testimonial-product .txt-2 {
        font-size: 10.3px;
        margin-top: 2px;
    }
    .price-product ins {
        font-size: 14px;
    }
    .price-product del {
        font-size: 11px;
    }
    .price-product {
        gap: 5px;
    }
    .product .prices .discount {
        font-size: 10px;
        line-height: 16px;
    }
    .product .buttons .information {
        width: 31px;
        height: 31px;
        min-width: 31px;
        min-height: 31px;
    }
    .product .buttons .information img {
        width: 14px;
    }
    .product .buttons .open-order {
        font-size: 13px;
        line-height: 31px;
    }
}