.product-accordion {
    border-top: 1px solid #dce3eb;
}

.acc-item {
    border-bottom: 1px solid #dce3eb;
}

.acc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.acc-toggle {
    font-size: 20px;
    line-height: 20px;
    transition: transform 0.35s ease;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition:
            max-height 0.35s ease,
            opacity 0.35s ease,
            transform 0.35s ease;
    padding: 0 0; /* убираем внутренние отступы, чтобы не ломалось */
    font-size: 14px;
    color: #444;
}

.acc-item.active .acc-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 10px 0 20px;
}

.acc-item.active .acc-toggle {
    transform: rotate(45deg);
}

.about_produckt{
    width: 50%;
}

.woo_page_product{
    display: flex;
    align-items: flex-start;
}
.about_produckt{
    margin-right: 10vh;
    text-align: left;
    margin-left: auto !important;
}
.review-recommend{
display: flex;
    justify-content: center;
}

.review-recommend img{
    padding-right: 5px;
}