.elementor-165626 .elementor-element.elementor-element-8a997cb{--display:flex;--min-height:0px;--margin-top:8%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;}.elementor-165626 .elementor-element.elementor-element-8a997cb.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-165626 .elementor-element.elementor-element-ebf2513 .title-text{font-size:15px;}.elementor-165626 .elementor-element.elementor-element-db2566c.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}.elementor-165626 .elementor-element.elementor-element-db2566c.elementor-wc-products ul.products li.product span.onsale{display:block;}@media(min-width:768px){.elementor-165626 .elementor-element.elementor-element-8a997cb{--width:100%;}}@media(max-width:1024px){.elementor-165626 .elementor-element.elementor-element-db2566c.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}@media(max-width:767px){.elementor-165626 .elementor-element.elementor-element-db2566c.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}/* Start custom CSS for shortcode, class: .elementor-element-1c4ebe2 *//* CONTENEDOR GENERAL CENTRADO */
.category-menu {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* LISTA PRINCIPAL */
.category-menu > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

/* CATEGORÍAS PADRE */
.category-menu > ul > li {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-size: 15px;
    z-index: 1;
    text-align: center;
}

.category-menu > ul > li:hover {
    background-color: #0073e6;
    color: #ffffff;
    transform: translateY(-3px);
    z-index: 10;
}

.category-menu > ul > li > a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    display: inline-block;
}

/* SUBCATEGORÍAS */
.category-menu .child-categories {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -1px;
    min-width: 200px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

/* MOSTRAR SUBCATEGORÍAS */
.category-menu li:hover > .child-categories {
    visibility: visible;
    opacity: 1;
}

/* SUBCATEGORÍA ITEM */
.category-menu .child-categories li {
    position: relative;
    padding: 10px 16px;
    list-style: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.category-menu .child-categories li:hover {
    background-color: #f2f8ff;
}

.category-menu .child-categories li > a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FLECHA EN SUBCATEGORÍAS CON MÁS NIVELES */
.category-menu .child-categories li.has-children > a::after {
    content: '›'; /* flecha derecha */
    margin-left: 10px;
    color: #999;
    font-weight: bold;
}

/* SUB-SUBCATEGORÍAS (DESDE LADO DERECHO) */
.category-menu .child-categories .child-categories {
    top: 0;
    left: 100%;
    margin-left: -1px;
    z-index: 1001;
    border-radius: 8px;
}

/* ORDEN VISUAL Y CAPAS */
.category-menu li {
    z-index: 1;
}

.category-menu li:hover {
    z-index: 999;
}/* End custom CSS */