/*
 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 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wc-block-product-categories-list--depth-0 {
  position: relative;
  width: 100%;
  max-width: 300px; /* Ширина меню (можна змінити) */
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.wc-block-product-categories-list-item {
  position: relative;
	    margin-bottom: 0;
}

.wc-block-product-categories-list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #333333;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.wc-block-product-categories-list-item:last-child > a {
  border-bottom: none;
}

.wc-block-product-categories-list-item a:hover {
  background-color: #f8f9fa;
  color: #0066cc;
}

/* Стрілка для категорій з дочірніми елементами */
.wc-block-product-categories-list-item.has-children > a::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* --- ПК Версія (Десктоп) --- */
@media (min-width: 769px) {
  .wc-block-product-categories-list--depth-1 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 4px 4px 4px;
    display: none;
    z-index: 999;
  }

  /* Поява дочірніх категорій при наведенні */
  .wc-block-product-categories-list-item.has-children:hover > .wc-block-product-categories-list--depth-1 {
    display: block;
  }

  .wc-block-product-categories-list-item.has-children:hover > a::after {
    transform: translateX(3px);
  }
}

/* --- Мобільна Версія --- */
@media (max-width: 768px) {
  .wc-block-product-categories-list--depth-0 {
    max-width: 100%;
  }

  .wc-block-product-categories-list-item.has-children > a::after {
    content: "⌄";
  }

  /* Повертаємо стрілку при відкритті */
  .wc-block-product-categories-list-item.is-open > a::after {
    transform: rotate(180deg);
  }

  /* Дочірній список розгортається вниз */
  .wc-block-product-categories-list--depth-1 {
    display: none;
    background-color: #f9f9f9;
    padding-left: 12px;
  }

  .wc-block-product-categories-list-item.is-open > .wc-block-product-categories-list--depth-1 {
    display: block;
  }
}

/* --- Підсвічування активної категорії (поточна сторінка) --- */
.wc-block-product-categories-list-item.is-active > a,
.wc-block-product-categories-list-item.current-cat > a {
  background-color: #e6f0fa; /* Світло-голубий фон */
  color: #0066cc; /* Синій колір тексту */
  font-weight: 600;
  border-left: 4px solid #0066cc; /* Акцентна смужка зліва */
  padding-left: 12px; /* Компенсація товщини смужки */
}

/* Підсвічування родительської категорії, якщо активна її підкатегорія */
.wc-block-product-categories-list-item.is-active-parent > a,
.wc-block-product-categories-list-item.current-cat-parent > a {
  color: #0066cc;
  font-weight: 600;
}

/* Колір стрілки для активного або відкритого елемента */
.wc-block-product-categories-list-item.is-active > a::after,
.wc-block-product-categories-list-item.is-active-parent > a::after {
  color: #0066cc;
}