/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* Переопределение стилей заголовка категорий WooCommerce */
[data-prefix="woo_categories"] .entry-header .page-title {
    font-family: Inter, Sans-Serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-size: 30px !important;
    line-height: 1.5 !important;
}


/* Масштабирование изображений товаров и категорий */
.products .product .ct-media-container img,
[data-products] .product .ct-media-container img,
.products .product-category .ct-media-container img,
[data-products] .product-category .ct-media-container img {
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.products .product:hover .ct-media-container img,
[data-products] .product:hover .ct-media-container img,
.products .product-category:hover .ct-media-container img,
[data-products] .product-category:hover .ct-media-container img {
    transform: scale(1);
}