.entry-summary h1{
    font-family: Inter;
    font-weight: 200;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 18px;
    vertical-align: middle;
    text-align: left;
}
.product-stock {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 6px;
    gap: 6px;
    font-weight: 400;
    font-family: Inter, sans-serif;
}

.product-stock::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
}

/* ЗЕЛЁНЫЙ КРУГ — товар в наличии */
.product-stock.in-stock::before {
    background-color: #8EDF5E; /* зелёный */
}

/* КРАСНЫЙ КРЕСТИК — товара нет */
.product-stock.out-of-stock::before {
    width: 10px;
    height: 10px;
    background-color: transparent;
    position: relative;
}

.product-stock.out-of-stock::before {
    display: inline-block;
}

/* Рисуем крестик псевдоэлементами */
.product-stock.out-of-stock::before {
    position: relative;
}

.product-stock.out-of-stock::before {
    content: "";
}

.product-stock.out-of-stock::after {
    content: "";
    width: 10px;
    height: 2px;
    background: #D9534F;
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}

.product-stock.out-of-stock::before {
    content: "";
    width: 10px;
    height: 2px;
    background: #D9534F;
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(-45deg);
}
.product-title-wrapper{
    display: flex;
    justify-content: space-between;
}
.woocommerce-product-rating {
    display: flex !important;
    justify-content: flex-start !important;
    margin: 0;
    padding: 0;
}

.woocommerce-product-rating .star-rating {
    margin-right: 8px; /* расстояние перед ссылкой на отзывы */
}
.price{
    justify-content: flex-start !important;
    display: flex;
}


.product-tags-list {
    margin-top: 15px;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}



.product-tags-list a {
    text-decoration: none;
    color: #264EBB;
    padding: 5px;
    margin: 5px;
}

.product-tags-list a:hover {
    text-decoration: underline;
}
.product-skin-types{
    display: flex;
    justify-content: flex-start;
    font-family: Inter;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    vertical-align: middle;

}
.woocommerce-product-details__short-description{
    font-family: Inter;
    font-weight: 300;
    font-size: 11px;
    leading-trim: NONE;
    line-height: 18.2px;
    vertical-align: middle;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}
.vargal-control-nav-wrap{
    height: 100% !important;
}


/*how to use*/

.howtouse {
    position: relative;
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* Градиентная тень снизу */
.howtouse::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Когда открыт */
.howtouse.open {
    max-height: 2000px; /* достаточно большое значение */
}

.howtouse.open::after {
    opacity: 0;
}
.howtouse-wrapper{
    text-align: left;
    max-width: 675px;
    box-shadow: 0px 4px 30px rgba(33, 31, 87, 0.15);
    padding: 15px;
    background: #fff;
    margin-left: 3%;
}

.howtouse-toggle {
    width: 100%;
    padding-top: 12px;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
    color: #555; /* или свой цвет */
    font-size: 14px;
    text-align: left;
}

.howtouse-toggle:focus {
    outline: none;
    box-shadow: none;
}
@media (max-width: 768px) {
.woo_page_product{
    display: block !important;
}
    .about_produckt{
        width: 100% !important;
    }

.custom-review-card{
    display: block !important;
}
.review-name{
    width: 100% !important;
}
}
