/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* ------------------------------ */
/* Додаємо свої стилі нижче       */
/* ------------------------------ */

/* Стилі для назви категорій */
.wc-block-product-categories-list-item__name {
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

/* Ефект при наведенні */
.wc-block-product-categories-list-item__name:hover {
    color: #ff6600;
    transform: scale(1.05);
}

/* Стилі підкатегорій (тільки для десктопу) */
.product-categories .children {
    margin-left: 15px;
    transition: all 0.3s ease;
}

.product-categories .cat-item {
    padding: 6px 10px;
}

.wc-block-product-categories-list > li {
    margin-bottom: 8px;
}

.wc-block-product-categories-list > li ul {
    margin-top: 5px;
    padding-left: 15px;
    transition: all 0.3s ease;
}

/* 🔻 Повністю ховаємо блок категорій на мобільному */
@media (max-width: 768px) {
  .wc-block-product-categories,
  .wc-block-product-categories-list,
  .wc-block-product-categories .block-title,
  .product-categories,
  .product-categories-title,
  .widget_product_categories,
  .widget_product_categories-toggle,
  .category-toggle-button,
  body.woocommerce-shop .wc-block-product-categories,
  body.woocommerce-shop .product-categories,
  .mobile-nav .wc-block-product-categories,
  .mobile-nav .product-categories,
  .mobile-nav .widget_product_categories,
  .mobile-nav .widget_product_categories-toggle,
  .mobile-nav .category-toggle-button,
  .mobile-nav .product-categories-title
  /* ❗️Видалено .offcanvas-sidebar */
  {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

