/* ======================================= */
/* VARIABLES */
/* ======================================= */
.categories-menu {

    --cat-bg:#000;

    --cat-text:#d5d5d5;

    --panel-border:#ddd;

    --left-bg:#f8f8f8;

    --left-hover:#e5e5e5;

    --sub-hover:#111;

    --title-border:#a01a26;

    --radius:10px;

    --transition:.25s ease;

}

/* ======================================= */
/* CONTENEDOR PRINCIPAL */
/* ======================================= */
.categories-menu {
  width: 260px;
  position: relative;
  font-family: Arial, sans-serif;
}

/* ======================================= */
/* TRIGGER */
/* ======================================= */
.categories-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #4a0000;
  padding: 12px 15px;
  /*border: 2px solid #000000d1;*/
  border-radius: 6px;
  cursor: pointer;
  color: var(--cat-text);
  width: 250px;
  height: 40px;
  font-size: 14px;
  transition: background var(--transition);
}

.categories-menu-trigger:hover {
  background: #3d0101;
}

/* Título */
.categories-menu-title {
  font-weight: bold;
  color: var(--cat-text);
}

/* Cantidad total de categorías */
.categories-menu-title .category-count {
  font-weight: 300;
  margin-left: 6px;
  color: var(--cat-text);
  font-size: 14px;
  opacity: 0.85;
}


/* ======================================= */
/* LISTA MEGA MENU */
/* ======================================= */
.categories-menu-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 900px;
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin-top: 5px;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

.categories-menu-list.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ======================================= */
/* MEGA MENU */
/* ======================================= */
.categories-menu-layout {
  display: flex;
  height: 350px;
  overflow: hidden;
}

/* ========================= */
/* IZQUIERDA */
/* ========================= */
.categories-menu-left {
  width: 250px;
  background: var(--left-bg);
  border-right: 1px solid var(--panel-border);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

/* Scroll más moderno */
.categories-menu-left::-webkit-scrollbar {
    width: 6px;
}

.categories-menu-left::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 6px;
}

.categories-menu-left li {
    padding: 6px 15px;
    cursor: pointer;
    font-weight: 400;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.categories-menu-left li:hover,
.categories-menu-left li.active {
  background: var(--left-hover);
}

.categories-menu-left li wa-icon {
  font-size: 14px;
  opacity: 0.6;
}

/* ========================= */
/* DERECHA */
/* ========================= */
.categories-menu-right {
  flex-grow: 1;
  padding: 20px;
  position: relative;
  overflow-y: auto;
}

/* Paneles */
.category-panel {
    display: none;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--transition), transform var(--transition);
}

.category-panel.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Header del panel */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--title-border);
    padding-bottom: 5px;
}

.category-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* Ver más */
.category-view-more {
  font-size: 14px;
  text-decoration: underline !important;
  font-weight: 600;
  color: #0073aa;
  transition: color var(--transition);
}

.category-view-more:hover {
  text-decoration: none;
  color: #005177;
}

/* Subcategorías */
.category-panel ul {
  list-style: none;
  padding-left: 0;
}

.category-panel li {
  padding: 6px 0;
}

.category-panel a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color var(--transition);
}

.category-panel a:hover{
  color: var(--sub-hover);
}

/* ======================================= */
/* RESPONSIVE */
/* ======================================= */
@media (max-width: 850px) {
  .categories-menu-list {
    width: 100vw;
  }
  .categories-menu-layout {
    flex-direction: column;
    height: auto;
    max-height: 80vh;
  }
  .categories-menu-left {
    width: 100%;
    height: 200px;
  }
  .categories-menu-right {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .categories-menu-trigger {
    width: 100%;
  }
  .categories-menu {
    width: 100%;
  }
}

.category-header h3 .category-count {
    font-weight: 300; /* light */
    opacity: 0.8;
    margin-left: 6px;
    font-size: 14px;
}

/* =======================================
   FIX ICONOS
======================================= */

.categories-menu-trigger > i{
    flex: 0 0 auto;
    font-size:18px !important;
    line-height:18px !important;
    width:18px;
    height:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.categories-menu-title{
    flex:1;
    margin:0 10px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

