/**
 * Wayka Shop Styles
 * Layout personalizado para la tienda
**/

/* ==========================================================================
   Container
   ========================================================================== */

.container-filter-product {
    align-items: flex-start;
    display: flex;
}

/* ==========================================================================
   Hero
   ========================================================================== */

/* Título */
.heroProducto__title {
    color: var(--wayka-light)!important;
    font-family: 'MADE Waffle', Impact, 'Arial Black', sans-serif!important;
    font-size: var( --e-global-typography-primary-font-size )!important;
    font-weight: 800!important;
    line-height: 120%!important;
    margin: 0;
    max-width: 650px;
    text-align: center;
}

/* Ocultar el h1 al hacer scroll (con movimiento suave) */
.heroProducto.is-shrink .heroProducto__title {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
}

.heroProducto__media { 
    position: absolute; 
    inset:0; 
}

.heroProducto__video { 
    z-index: 1; 
}

.heroProducto__poster {
    inset: 0;
    height: 100%!important;
    opacity: 1;
    object-fit: cover;
    position: absolute;
    transition: opacity .45s ease;
    width: 100%;
    z-index: 2;
}

.heroProducto.is-video-ready .heroProducto__poster {
    opacity: 0;
    pointer-events:none;
}

.heroProducto__iframe {
    border: 0;
    inset: 0;
    height: 100%;
    position: absolute;
    transform: scale(1.2);
    transform-origin: center;
    width:100%;
    z-index:1;
}

.heroProducto__overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.50) 100%);
    inset: 0;
    position: absolute;
    z-index: 3;
}

.heroProducto__content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 4;
}

.heroProducto__video, .heroProducto__iframe {
    pointer-events: none;
}

/* ==========================================================================
   Títulos
   ========================================================================== */
   
.container.container-titulo {
    padding: 6.25rem 0 2.5rem;
}

.container-titulo h2, h2.shop-title-breadcrumb a {
    color: var(--wayka-text);
    font-family: 'Monument', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: var( --e-global-typography-a2231b9-font-size )!important;
    font-weight: 400!important;
    margin: 0 0 30px!important;
}

h2.shop-title-breadcrumb {
    padding-top: 6.25rem;
}

p {
    color: var(--wayka-text);
    font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   Menu Horizontal de Categorías
   ========================================================================== */
   
.wayka-shop-categories-menu {
    position: sticky;
    top: 90px;
    z-index: 999;
}

.categories-menu-list {
    background: var(--wayka-light);
    border-radius: 50px;
    display: flex;
    list-style: none;
    gap: 0.65rem;
    margin: 0;
    padding: 10px 20px;
    position: relative;
    white-space: nowrap;
}

.categories-menu-list .menu-item > a {
    align-items: center;
    border-radius: 10px;
    color: var(--wayka-text);
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: var( --e-global-typography-text-font-size );
    font-weight: 400;
    gap: 10px;
    padding: 8px 16px;
    transition: color 0.2s;
    text-decoration: none;
}

.categories-menu-list .menu-item > a:hover, .categories-menu-list .menu-item.active > a {
    background: var(--wayka-text);
    color: var(--wayka-light);
}

.categories-menu-list .menu-item > a svg {
    width: 10px;
    height: 6px;
    transition: transform 0.2s;
}

.categories-menu-list .menu-item.has-children:hover > a svg {
    transform: rotate(180deg);
}

li.menu-item.has-children {
    position: relative;
}

/* Submenu Dropdown */
.submenu-dropdown {
    background: var(--wayka-light);
    box-shadow: 0 0 10px rgb(0 0 0 / 9%);
    border-radius: 8px;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 0.5rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-item.has-children:hover > .submenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(20px);
}

.submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-item {
    position: relative;
}

.submenu-item > a {
    align-items: center;
    background: transparent;
    border-radius: 6px!important;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.8rem;
    transition: all 0.2s;
    text-decoration: none;
}

.submenu-item > a:hover, .submenu-item.active > a {
    background: var(--wayka-hover);
}

.submenu-dropdown svg {
    rotate: 270deg;
}

/* Submenu Level 3 */
.submenu-level-3 {
    background: var(--wayka-light);
    box-shadow: 0 0 10px rgb(0 0 0 / 9%);
    border-radius: 8px;
    left: 100%;
    list-style: none;
    margin: 0;
    min-width: 200px;
    padding: 0.5rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    top: 0;
}

.submenu-item.has-children:hover > .submenu-level-3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-level-3 li a {
    border-radius: 6px!important;
    display: block;
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}

.submenu-level-3 li a:hover, .submenu-level-3 li.active a {
    background: var(--wayka-hover);
}

/* ==========================================================================
   Barra de Controles
   ========================================================================== */

.wayka-shop-content {
    padding: 2.5rem 0;
}

.shop-controls-bar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    position: relative;
}

.filter-toggle-wrapper {
    position: relative;
}

.filter-toggle-btn {
    align-items: center;
    background: var(--wayka-light)!important;
    border-width: 0!important;
    border-radius: 10px!important;
    color: var(--wayka-text)!important;
    cursor: pointer;
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: var( --e-global-typography-accent-font-size );
    font-weight: 500;
    gap: 8px;
    padding: 10px 12px!important;
    transition: all 0.2s;
}

.filter-toggle-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.filter-toggle-btn svg {
    height: 20px;
    width: 20px;
}

/* Tag selección */
.wayka-select-count {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 90%;
}

.active-filters {
    align-items: center;
    display: flex;
    gap: 10px;
}

span.remove {
    font-weight: 600;
    padding-left: 5px;
}

/* Contador */
.products-count, a.filter-chip {
    background-color: var(--wayka-light);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: var( --e-global-typography-accent-font-size );
    font-weight: 400;
    margin-left: auto;
    padding: 10px 12px!important;
}

.products-count strong {
    font-weight: 600;
}

/* ==========================================================================
   Layout Principal
   ========================================================================== */

.wayka-shop-content {
    width: 100%;
}

.shop-layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    position: relative;
    transition: grid-template-columns 0.3s ease;
    width: 100%;
}

.shop-layout-wrapper.filters-closed {
    grid-template-columns: 0 1fr;
}

/* Layout Full Width (sin sidebar) */
.shop-layout-wrapper.shop-layout-full-width {
    display: block;
    width: 100%;
}

.shop-layout-wrapper.shop-layout-full-width .shop-filters-sidebar {
    display: none !important;
}

/* ==========================================================================
   Panel de Filtros Flotante
   ========================================================================== */

.filters-header {
    text-align: right;
    display: flex;
    justify-content: end;
}

.shop-filters-floating {
    background: var(--wayka-light);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    left: 0;
    max-width: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.shop-filters-floating.active {
    min-width: 320px;
    opacity: 1;
    padding: 1.5rem;
    visibility: visible;
}

.filter-close-btn {
    background: none!important;
    border: none!important;
    color: var(--wayka-text);
    cursor: pointer;
    display: none;
    padding: 0!important;
    transition: all 0.4s;
}

.filter-close-btn:hover {
    opacity: 0.4;
}

.filter-close-btn svg {
    height: 24px;
    width: 24px;
}

/* Secciones de Filtro */
.filter-section {
    margin-bottom: 1.25rem;
}

.filter-section:last-child {
    margin-bottom: 0;
    text-align: center;
}

.filter-title, .filter-toggle {
    color: var(--wayka-text)!important;
    font-size: var( --e-global-typography-accent-font-size )!important;
    font-weight: 600!important;
    text-align: left;
}

/* Toggle */
.filter-content {
    color: var(--wayka-text);
    display: flex;
}

.filter-toggle{
  align-items:center;
  background:none!important;
  border:none!important;
  display:flex!important;
  justify-content:space-between;
  padding:0!important;
  width:100%!important;
  cursor:pointer;
}

.filter-content {
    margin-top: 15px;
    transition: all 0.3s ease;
}

.filter-content[hidden] { display: none !important; }

.cat-children[hidden] { 
  display: none !important; 
}

/* Ordenar */
.filter-content .woocommerce-ordering {
    margin: 0 0 10px;
    width: 100%;
}

.filter-content .woocommerce-ordering select {
    border: 1px solid var(--wayka-bg-gray);
    border-radius: 12px;
    color: var(--wayka-text);
    cursor: pointer;
    font-size: var( --e-global-typography-text-font-size );
    padding: 0.625rem 0.5rem;
    width: 100%;
}

/* Categorías */
.filter-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.filter-categories-list li {
    border-bottom: 1px solid var(--wayka-border);
    margin-bottom: 0.5rem;
}

.filter-categories-list li:last-child {
    border-bottom-width: 0;
    margin-bottom: 0;
}

.filter-categories-list a {
    align-items: center;
    border-radius: 6px;
    color: var(--wayka-text)!important;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.2s;
    text-decoration: none;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.filter-categories-list a:hover, .filter-categories-list a.active {
    background: var(--wayka-hover);
}

.filter-categories-list .count {
    color: var(--wayka-text);
}

.cat-row {
    display: flex;
    justify-content: space-between;
}

button.cat-toggle {
    background-color: transparent!important;
    border: 0;
    padding: 0;
}

.has-children > .cat-toggle svg path {
    transition: all .2s ease;
}

.has-children.open svg path {
    d: path("M 21 16 H 9 V 14 H 21 V 16 Z");
}

.cat-children li a {
    font-size: var( --e-global-typography-492399a-font-size );
}

/* Rango de Precios - Deportes */
.price-range-list, .deporte-filter-list, .brand-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-range-list li, .deporte-filter-list li, .brand-filter-list li {
    margin-bottom: 12px;
}

.price-range-list label, .deporte-filter-list label, .brand-filter-list label {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding-left: 0;
}

.price-range-list input[type="radio"], .deporte-filter-list input[type="radio"], .brand-filter-list input[type="radio"] {
    height: 14px;
    margin-top: -1px!important;
    width: 14px;
}

/* Tallas */
.filter-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-option {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
}

.size-option input {
    display: none;
}

label.size-option {
    padding-left: 0!important;
}

.size-option span {
    align-items: center;
    border: 1px solid var(--wayka-border);
    border-radius: 6px;
    display: flex;
    color: var(--wayka-text);
    font-size: var( --e-global-typography-492399a-font-size );
    font-weight: 500;
    height: 35px;
    justify-content: center;
    transition: all 0.2s;
    width: 40px;
}

.size-option input:checked + span, .size-option:hover span {
    background: var(--wayka-text);
    color: var(--wayka-light);
}

/* Colores */
.filter-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-option {
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: background 0.2s;
}

.color-option:hover {
    background: var(--wayka-gris-medio);
}

.color-option input {
    display: none;
}

.color-swatch {
    border-radius: 4px;
    border: 5px solid var(--wayka-bg-gray);
    height: 5px;
    transition: all 0.2s;
    width: 5px;
}

.color-option input:checked ~ .color-swatch {
    border-color: var(--wayka-primary);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.color-name {
    color: var(--wayka-text);
    font-size: var( --e-global-typography-text-font-size );
}

/* Limpiar filtros */
.clear-filters-btn {
    border-bottom: 1px solid var(--wayka-text);
    font-size: var( --e-global-typography-492399a-font-size )!important;
    font-weight: 500!important;
    display: inline-flex;
    padding-bottom: 0.3rem;
    transition: all .4s;
}

.clear-filters-btn:hover {
    opacity: .4;
}

/* ==========================================================================
   Grid de Productos
   ========================================================================== */
   
.shop-products-grid {
    transition: all 0.3s ease;
    width: 100%;
}

.products {
    display: grid!important;
    grid-template-columns: repeat(3, 1fr)!important;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100% !important;
}

/* Eliminar pseudo-elementos que puedan causar espacios */
.products::before, .products::after {
    display: none!important;
    content: none!important;
}

/* Asegurar que cada producto ocupe su espacio correctamente */
ul.products li.product {
    background: var(--wayka-producto);
    background-size: 400px;
    background-position: top center!important;
    background-repeat: no-repeat;
    border-radius: 10px!important;
    display: flex!important;
    flex-direction: column!important;
    flex: none!important;
    height: 534px;
    justify-content: flex-end!important;
    margin: 0!important;
    padding: 1.5rem .68rem .68rem!important;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    width: 100%!important;
}

/* Hover: usa la imagen de galería */
ul.products li.product::after {
    background-color: var(--wayka-light);
    background-image: var(--hover-bg);
    background-size: 400px;
    background-position: top center!important;
    background-repeat: no-repeat!important;
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all .35s ease;
    z-index: 0;
}

ul.products li.product.imagen-full::after {
    background-size: cover;
}

ul.products li.product:hover::after {
    opacity: 1;
}

.content-producto {
    align-items: center;
    background: var(--wayka-light);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    justify-content: space-between;
    padding: 1.25rem!important;
    position: relative;
    z-index: 99;
}

.productCats__row {
    line-height: 1em;
}

.productCats {
    display: flex;
    gap: 5px;
}

.productCats__row a {
    font-size: 12px!important;
}

a.productCats__child {
    padding-left: 5px;
}

h2.woocommerce-loop-product__title {
    margin: 0!important;
    padding: 0!important;
}

.woocommerce-loop-product__title a {
    display: -webkit-box;
    font-family: 'Poppins', sans-serif!important;
    font-size: var( --e-global-typography-accent-font-size )!important;
    font-weight: 600!important;
    margin: 6px 0!important;
    padding: 0!important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; 
}

span.price {
    color: var(--wayka-text)!important;
    font-family: 'Poppins', sans-serif;
    font-size: var( --e-global-typography-text-font-size )!important;
    margin-bottom: 0!important;
}

/* Botón agregar */
ul.products li.product .button {
    margin-top: 0;
}

ul.products li.product a.button {
    align-items: center;
    border-radius: 10px;
    background: var(--wayka-text);
    color: var(--wayka-light)!important;
    display: flex!important;
    font-size: 0!important;
    justify-content: center;
    height: 44px;
    min-width: 44px!important;
    transition: all .4s;
}

ul.products li.product a.button:before {
    content: "+";
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
    transition: transform .4s ease;
}

ul.products li.product a.button:after {
    font-family: WooCommerce;
    font-size: var( --e-global-typography-b12daf6-font-size )!important;
    font-weight: 400!important;
    margin-left: 0!important;
}

ul.products li.product a.button.added:after {
    content: "\e017";
}

ul.products li.product a.button.loading {
    opacity: .25;
}

ul.products li.product a.button.loading:after {
    animation: spin 2s linear infinite;
    content: "\e01c";
}

ul.products li.product a.button.loading:after {
    position: relative!important;
    right: inherit!important;
    top: inherit!important;
}

ul.products li.product a.button.loading:before, ul.products li.product a.button.added:before {
    display: none;
}

a.added_to_cart.wc-forward {
    bottom: .68rem!important;
    font-size: var( --e-global-typography-01e8201-font-size )!important;
    position: absolute;
    right: 1rem!important;
}

ul.products li.product:hover a.button {
    background: var(--wayka-primary-dark);
}

ul.products li.product:hover a.button:before {
    transform: rotate(90deg);
}

.card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* content-producto y botón quedan por encima */
.content-producto {
    position: relative;
    z-index: 2;
}

ul.products li.product a.button {
    position: relative;
    z-index: 3;
}

/* Cuando filtros cerrados, mantener 3 columnas */
.shop-layout-wrapper.filters-closed .products {
    grid-template-columns: repeat(3, 1fr)!important;
}

/* Cuando filtros abierto */
.shop-layout-wrapper.shop-layout-full-width.activo {
    padding-left: 1.25rem;
}

/* Layout Full Width - 3 columnas en desktop */
.shop-layout-wrapper.shop-layout-full-width .products {
    grid-template-columns: repeat(3, 1fr)!important;
}

/* ==========================================================================
   Videos en Grid
   ========================================================================== */
   
.shop-video-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--wayka-text);
    list-style: none;
}

.shop-video-item.span-2 {
    grid-column: span 2;
}

.shop-video-item.span-1 {
    grid-column: span 1;
}

.shop-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.shop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video horizontal (2 espacios) */
.shop-video-horizontal .shop-video-wrapper {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

/* Video vertical (1 espacio) */
.shop-video-vertical .shop-video-wrapper {
    aspect-ratio: 9 / 16;
    min-height: 0;
    max-height: 534px;
}

/* ==========================================================================
   Overlay para Móvil
   ========================================================================== */

.filter-overlay {
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    display: none;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    transition: opacity 0.4s;
    top: 0;
    z-index: 99;
}

.filter-overlay.active {
    opacity: 1;
}

/* ==========================================================================
   Paginación
   ========================================================================== */

.woocommerce-pagination {
    padding-top: 40px;
}

.page-numbers, .page-numbers li {
    border-width: 0!important;
}

.page-numbers li a, span.page-numbers.current {
    align-items: center;
    background: var(--wayka-light)!important;
    border-radius: 50%;
    color: var(--wayka-text)!important;
    display: flex!important;
    font-family: 'Poppins', sans-serif;
    height: 48px!important;
    margin: 5px!important;
    padding: 0!important;
    justify-content: center;
    width: 48px!important;
}

ul.page-numbers li a:hover, span.page-numbers.current {
    background: var(--wayka-text)!important;
    color: var(--wayka-light)!important;
}

a.prev.page-numbers, a.next.page-numbers {
    background: var(--wayka-text)!important;
    border-radius: 80px;
    color: var(--wayka-light)!important;
    font-size: 0!important;
    opacity: 0.4;
    width: 62px!important;
}

a.prev.page-numbers:hover, a.next.page-numbers:hover {
    opacity: 1;
}

 a.prev.page-numbers:before, a.next.page-numbers:before {
    content: url(/wp-content/themes/wayka/assets/img/nav.svg);
}

a.prev.page-numbers:before {
    transform: rotate(180deg);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
   
/* Tablet */
@media (max-width: 1024px) {
    /* Título */
    .heroProducto__title {
        font-size: 55px!important;
        width: 90%;
    }
    
    .container-titulo h2, h2.shop-title-breadcrumb a {
        font-size: 30px!important;
    }
    
    /* Porducto */
    .products, .shop-layout-wrapper.filters-closed .products {
        grid-template-columns: repeat(2, 1fr)!important;
    }
    
    /* Full Width - 3 columnas en tablet */
    .shop-layout-wrapper.shop-layout-full-width .products {
        grid-template-columns: repeat(2, 1fr)!important;
        gap: 1.5rem;
    }
    
    /* Loop producto */
    ul.products li.product {
        height: 480px;
    }
    
    ul.products li.product, ul.products li.product::after {
        background-size: 350px;
    }
    
    .shop-video-vertical .shop-video-wrapper {
        height: 480px;
    }
    
    /* Filtro */
    .categories-menu-list {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Título */
    .heroProducto__title {
        font-size: 35px!important;
    }
    
    .container-titulo h2, h2.shop-title-breadcrumb a {
        font-size: 24px!important;
        margin-bottom: 10px!important;
    }
    
    /* Container */
    .wayka-shop-content {
        padding: 2.5rem 0 0;
    }

    .container.container-titulo {
        padding-top: 4rem;
    }

    .categories-menu-list {
        gap: 1rem;
    }
    
    .menu-item > a {
        font-size: 14px;
        padding: 1rem 0;
    }
    
    .categories-menu-list {
        display: none;
    }
    
    .container.container-titulo {
        padding-bottom: 0;
    }
    
    /* Filtros como panel lateral en móvil */
    .shop-layout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .shop-filters-floating {
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        bottom: 0;
        position: fixed;
        top: 0;
        left: 0;
        max-width: 85vw;
        max-height: 100vh;
        opacity: 0;
        transform: translateX(-100%);
        width: 300px;
        z-index: 99999;
    }
    
    .shop-filters-floating.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .filter-close-btn {
        display: block;
    }
    
    .filter-overlay {
        display: block;
    }
    
    .products, .shop-layout-wrapper.shop-layout-full-width .products {
        gap: 1rem;
    }
    
    /* Videos en móvil - Video 1 ocupa 2 espacios, Video 2 ocupa 1 espacio */
    .shop-video-item.span-2 {
        grid-column: span 2;
    }
    
    .shop-video-item.span-1 {
        grid-column: span 1;
    }
    
    .shop-controls-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .wayka-select-count {
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }
    
    /* Loop producto */
    ul.products li.product {
        height: 380px;
    }    
    
    ul.products li.product, ul.products li.product::after {
        background-size: 230px;
    }
    
    .shop-video-vertical .shop-video-wrapper, .shop-video-horizontal .shop-video-wrapper {
        height: 380px;
    }
    
    .woocommerce-loop-product__title a {
        font-size: 16px!important;
        margin-top: 3px!important;
    }
    
    .productCats__row a {
        font-size: 10px!important;
    }
    
    /* Páginacion*/
    a.prev.page-numbers, a.next.page-numbers {
        width: 42px!important;
    }

    .page-numbers li a, span.page-numbers.current {
        font-size: 12px!important;
        height: 26px!important;
        width: 26px!important;
    }
}

@media (max-width: 480px) {
    /* Porducto */
    .products, .shop-layout-wrapper.shop-layout-full-width .products {
        display: flex!important;
        flex-direction: column;
    }
    
    .menu-item > a {
        font-size: 13px;
        padding: 0.875rem 0;
    }
}