/**
 * WooCommerce Categories for Elementor - CSS Styles
 */


/* Single Category Link */

.woo-category-link {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woo-category-link:hover {
  text-decoration: none;
}


/* Child Categories List */

.woo-category-children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woo-category-children li {
  margin-bottom: 8px;
}

.woo-category-child-link {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.woo-category-child-link:hover {
  text-decoration: none;
}


/* Mega Menu Structure */

.woo-mega-menu-wrapper {
  width: 100%;
}

.woo-mega-menu-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.woo-mega-menu-column {
  padding: 0 15px;
  margin-bottom: 20px;
}


/* Column layout */

.woo-mega-menu-col-1 {
  width: 100%;
}

.woo-mega-menu-col-2 {
  width: 50%;
}

.woo-mega-menu-col-3 {
  width: 33.333%;
}

.woo-mega-menu-col-4 {
  width: 25%;
}

.woo-mega-menu-col-5 {
  width: 20%;
}


/* Column title */

.woo-mega-menu-column-title {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woo-mega-menu-column-title:hover {
  text-decoration: none;
}


/* Responsive adjustments */

@media (max-width: 767px) {
  .woo-mega-menu-col-2,
  .woo-mega-menu-col-3,
  .woo-mega-menu-col-4,
  .woo-mega-menu-col-5 {
    width: 100%;
  }
}