/* ==========================================
   PRODUCT SUMMARY
========================================== */

.product-summary{
    width:100%;
    /* max-width:460px; */

    background:#fff;
    border:1px solid #eef2f5;
    border-radius:16px;

    padding:22px;

    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.product-center-column{

    max-width:520px;
}

.product-meta{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    margin-bottom:20px;

    flex-wrap:wrap;
}

.stock-pill{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    background:#edf8e7;
    color:#2e8b36;

    border-radius:22px;

    font-size:14px;
    font-weight:600;
}

.stock-pill i{
    color:#2e8b36;
}

.product-sku{

    display:flex;
    align-items:center;
    gap:6px;

    font-size:14px;
    color:#666;
}

.product-sku strong{

    color:#222;
    font-weight:600;
}

.product-price{

    margin-bottom:22px;
}

.product-price .price-main{

    font-size:34px;
    font-weight:800;
    line-height:1;

    color:#27ae60;
}

.product-price .price-old{

    margin-top:8px;

    color:#999;
    text-decoration:line-through;

    font-size:16px;
}

/* купить */
.product-buy{

    display:flex;
    gap:12px;

    margin-bottom:22px;
}

/* Количество */
.quantity-control{

    display:flex;
    align-items:center;

    width:120px;
    height:52px;

    border:1px solid #dcdcdc;
    border-radius:10px;

    overflow:hidden;

    background:#fff;

    flex-shrink:0;
}

.quantity-control input{

    width:46px;

    border:none;

    text-align:center;

    font-size:16px;
    font-weight:700;

    box-shadow:none;
    background:transparent;

    padding:0;
}

.quantity-control input:focus{

    outline:none;
}

.qty-btn{

    width:36px;
    height:100%;

    border:none;

    background:#f7f7f7;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#666;

    transition:.2s;
}

.qty-btn:hover{

    background:#58a62c;
    color:#fff;
}

.qty-btn i{

    font-size:12px;
}

/* Кнопка */
.btn-add-to-cart{

    flex:1;

    height:48px;

    border:none;
    border-radius:8px;

    background:#58a62c;
    color:#fff;

    font-size:15px;
    font-weight:700;

    transition:.2s;
}

.btn-add-to-cart:hover{

    background:#4b9225;
}

/* Опции */
.product-options{

    margin:24px 0;
}

.product-options h3{

    font-size:16px;
    font-weight:700;

    margin-bottom:12px;
}

/* Преимущества */
.product-benefits{

    border-top:1px solid #ececec;

    margin-top:24px;
    padding-top:18px;
}

.benefit-item{

    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:10px;

    color:#555;
}

.benefit-item i{

    color:#58a62c;
}

/* Краткое описание */

.product-short-description{

    border-top:1px solid #ececec;

    margin-top:20px;
    padding-top:18px;

    color:#666;

    font-size:14px;
    line-height:1.6;
}

/* Мобилка */
@media (max-width:767px){

    .product-summary{

        max-width:100%;

        padding:18px;
    }

    .product-meta{

        flex-direction:column;
        align-items:flex-start;

        gap:12px;
    }

    .product-buy{

        flex-direction:column;
    }

    .quantity-control{

        width:100%;
    }

}

/* тест */
.product-gallery-column{

    display:flex;
    align-items:flex-start;
    justify-content:center;
}

.product-info .product-image{

    margin:0 !important;

    width:100%;

    border:1px solid #e8e8e8;
    border-radius:12px;

    padding:18px;

    background:#fff;
}

.product-info .product-image img{

    display:block;

    margin:auto;

    width:100%;
    max-width:500px;
    height:auto;
}

/* Блок описание делаем плотнее */
#tabs.htabs{
    padding-top:1px;
}