/* =========================================
   MAEW – CATÁLOGO PRINCIPAL (FIX ESPACIO)
   ========================================= */
:root {
  --maew-blue: #18233f;
  --maew-red: #e3032d;
  --maew-bg: #f8fafc;
  --maew-border: #e2e8f0;
  --maew-card-bg: #ffffff;
  --radius: 12px;
}

/* --- HERO BANNER --- */
.maew-hero-section {
    background-image: url('https://inversionesyconstruccionesmaew.com/wp-content/uploads/2025/12/Catalogo-productos-202511-LUZ-ADRIANA-2-scaled.jpg');
    background-size: cover; background-position: center center; position: relative;
    padding: 100px 20px; text-align: center; color: #fff; margin-bottom: 30px;
    width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.maew-hero-inner h1 { 
    color: #fff !important; font-size: clamp(28px, 4vw, 42px); font-weight: 900; 
    margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.9); text-transform: uppercase;
}
.maew-hero-inner p { 
    color: #fff; font-size: 19px; margin-bottom: 30px; font-weight: 600; 
    text-shadow: 0 2px 8px rgba(0,0,0,1); max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.4;
}

/* Buscador */
.maew-hero-search { max-width: 700px; margin: 0 auto; }
.maew-hero-search form { display: flex; background: #fff; border-radius: 50px; padding: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.maew-hero-search input[type="search"] { flex-grow: 1; border: none !important; padding: 12px 20px; outline: none; font-size: 16px; border-radius: 50px; color: #333; }
.maew-hero-search button { background: var(--maew-red) !important; color: #fff !important; border: none; padding: 0 35px; font-weight: 700; border-radius: 50px; cursor: pointer; transition: background 0.2s; font-size: 16px; text-transform: uppercase; }
.maew-hero-search button:hover { background: #c00226 !important; }

/* --- ESTRUCTURA --- */
.maew-shop-container { display: flex; gap: 30px; max-width: 1280px; margin: 0 auto; padding: 0 20px; align-items: flex-start; }

/* Sidebar */
.maew-shop-sidebar { width: 250px; flex-shrink: 0; background: #fff; border: 1px solid var(--maew-border); border-radius: 12px; overflow: hidden; margin-top: 0 !important; }
.maew-sidebar-widget h3, .widget-title { background: var(--maew-bg); color: var(--maew-blue); font-size: 15px; font-weight: 800; text-transform: uppercase; padding: 15px 20px; margin: 0; border-bottom: 1px solid var(--maew-border); }
.maew-sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.maew-sidebar-widget ul li { margin: 0; border-bottom: 1px solid #f1f5f9; }
.maew-sidebar-widget ul li a { display: block; padding: 12px 20px; color: #475569; text-decoration: none; font-size: 14px; transition: all 0.2s; }
.maew-sidebar-widget ul li a:hover { color: var(--maew-red); background: #fff1f2; padding-left: 25px; }

/* --- GRID 3 COLUMNAS --- */
.maew-shop-content { flex: 1; width: 100%; margin-top: 0 !important; }

/* !!! FIX FANTASMA: ESTO ARREGLA EL ESPACIO BLANCO !!! */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important; content: none !important;
}

.woocommerce ul.products {
    display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 25px !important;
    margin: 0 !important; padding: 0 !important;
}

/* Tarjeta */
.woocommerce ul.products li.product {
    float: none !important; width: 100% !important; margin: 0 !important;
    background: #fff; border: 1px solid var(--maew-border); border-radius: var(--radius);
    padding: 16px; display: flex !important; flex-direction: column; transition: transform 0.2s;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: #cbd5e1; }

.maew-card-thumb { background: var(--maew-bg); border-radius: 8px; padding: 10px; margin-bottom: 12px; height: 180px; display: flex; align-items: center; justify-content: center; }
.maew-card-thumb img { max-height: 100%; width: auto !important; object-fit: contain !important; mix-blend-mode: multiply; }

.maew-iva { display: inline-block; font-size: 10px; font-weight: 700; color: #64748b; background: #eef2ff; padding: 3px 6px; border-radius: 4px; margin-bottom: 8px; width: fit-content; }
.woocommerce-loop-product__title { font-size: 17px !important; font-weight: 800 !important; color: #1e293b; margin: 0 0 8px !important; line-height: 1.2 !important; }
.maew-card-excerpt { font-size: 13px; color: #64748b; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.maew-card-btn { margin-top: auto; display: block; width: 100%; text-align: center; background: var(--maew-red); color: #fff !important; padding: 10px; border-radius: 8px; font-weight: 700; text-decoration: none !important; font-size: 14px; }
.maew-card-btn:hover { background: #c00226; }

/* Ocultar elementos */
.widget_layered_nav, .widget_layered_nav_filters, .woocommerce-widget-layered-nav,
.woocommerce-ordering, .woocommerce-breadcrumb, .woocommerce-result-count, .woocommerce-products-header__title.page-title, .woocommerce-notices-wrapper, .price, .star-rating, .onsale, .button { display: none !important; }

/* Responsive */
@media (max-width: 900px) {
    .maew-shop-container { flex-direction: column; }
    .maew-shop-sidebar { width: 100%; margin-bottom: 20px; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
    .maew-hero-section { padding: 50px 15px; }
}

/* =========================================
   CARRUSEL AUTOMÁTICO (ESTILO CATALOGO)
   ========================================= */

/* Contenedor Principal */
.maew-carousel-section { 
    max-width: 1200px; 
    margin: 60px auto; 
    padding: 0 20px; 
    position: relative; 
    font-family: 'Montserrat', sans-serif; 
}

/* Cabecera del Carrusel */
.maew-carousel-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: end; 
    margin-bottom: 30px; 
    border-bottom: 2px solid #f1f5f9; 
    padding-bottom: 15px; 
}
.maew-carousel-title { 
    font-size: 28px; 
    font-weight: 800; 
    color: #18233f; 
    text-transform: uppercase; 
    margin: 0; 
}
.maew-carousel-link { 
    color: #e3032d; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 14px;
}

/* Área de deslizamiento */
.maew-carousel-wrapper { 
    overflow: hidden; 
    padding: 10px 5px 30px; /* Espacio para la sombra */
}
.maew-track { 
    display: flex; 
    gap: 25px; 
    transition: transform 0.5s ease-in-out; 
    width: max-content; 
}

/* --- TARJETA (DISEÑO IDÉNTICO AL CATÁLOGO) --- */
.maew-card { 
    min-width: 280px; 
    max-width: 280px; 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    border-radius: 12px; 
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    transition: 0.3s; 
}
.maew-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
    border-color: #cbd5e1;
}

/* Imagen */
.maew-card-img-box { 
    background: #f8fafc; 
    border-radius: 8px; 
    height: 180px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 15px; 
    overflow: hidden; 
}
.maew-card-img-box img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
    mix-blend-mode: multiply; 
}

/* Textos */
.maew-badge { 
    display: inline-block; 
    background: #eef2ff; 
    color: #64748b; 
    font-size: 10px; 
    font-weight: 700; 
    padding: 4px 8px; 
    border-radius: 4px; 
    margin-bottom: 8px; 
    width: fit-content; 
}
.maew-card-title { 
    font-size: 16px; 
    font-weight: 800; 
    color: #18233f; 
    margin: 0 0 8px; 
    line-height: 1.3; 
    height: 42px; /* Altura fija para alinear */
    overflow: hidden; 
}
.maew-card-desc { 
    font-size: 13px; 
    color: #64748b; 
    margin: 0 0 15px; 
    height: 40px; 
    overflow: hidden; 
    line-height: 1.5;
}

/* Botón Rojo */
.maew-card-btn { 
    margin-top: auto; 
    display: block; 
    width: 100%; 
    text-align: center; 
    background: #e3032d; 
    color: #fff !important; 
    padding: 10px; 
    border-radius: 8px; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 14px; 
    transition: 0.2s;
}
.maew-card-btn:hover { 
    background: #c00226; 
}

/* Flechas de Navegación */
.maew-nav-btn { 
    position: absolute; 
    top: 55%; 
    transform: translateY(-50%); 
    width: 45px; height: 45px; 
    border-radius: 50%; 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    cursor: pointer; 
    display: flex; align-items: center; justify-content: center; 
    z-index: 10; 
    transition: 0.2s;
}
.maew-nav-btn:hover { 
    background: #18233f; 
    border-color: #18233f; 
}
.maew-nav-btn svg { width: 20px; stroke: #18233f; }
.maew-nav-btn:hover svg { stroke: #fff; }

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* Responsive Móvil */
@media (max-width: 768px) {
  .maew-nav-btn { display: none; } /* Ocultar flechas en móvil */
  .maew-track { 
      overflow-x: auto; 
      scroll-snap-type: x mandatory; 
      padding-bottom: 20px; 
      gap: 15px;
  }
  .maew-card { 
      min-width: 260px; 
      scroll-snap-align: center; 
  }
}