@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   1. ESTRUCTURA GLOBAL Y FONDO
   ========================================================================== */

html {
    overflow-x: hidden;
}

body,
body *:not(i) {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    overflow-x: hidden;
    background-color: #f4f4f4;
}
 
/* Quitar espacio blanco superior en la página de inicio */
#index #wrapper {
    padding-top: 0 !important;
}
 
/* Banner/Carousel a pantalla completa */
.carousel {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* ══════════════════════════════
   CARRUSEL SLIDE — OLIMPIO
   ══════════════════════════════ */

/* Figura — altura base */
#carousel .carousel-inner .carousel-item figure {
  position: relative;
  display: block;
  width: 100% !important;
  height: auto;
  min-height: 300px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  #carousel .carousel-inner .carousel-item figure {
    height: 420px !important;
    min-height: 420px !important;
    overflow: hidden;
  }
}

/* Ocultar imagen — el fondo lo pone el HTML */
#carousel .carousel-inner .carousel-item figure > img {
  display: none !important;
}

/* figcaption: relativo en mobile, absoluto en desktop */
#carousel .carousel-item figcaption.caption {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent;
  transform: none !important;
}

@media (min-width: 768px) {
  #carousel .carousel-item figcaption.caption {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
  #carousel .caption-description {
    height: auto !important;
  }
}

/* Ocultar h2 vacío que genera PrestaShop */
#carousel .caption h2.display-1 {
  display: none !important;
}

/* caption-description sin restricciones de ancho */
#carousel .caption-description {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Tabla principal ── */
.slide-table {
  width: 100% !important;
  height: auto;
  background: #111111;
  font-family: Arial, sans-serif;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .slide-table {
    height: auto !important;
    min-height: 340px;
  }
}

/* ── Columna izquierda ── */
.slide-left {
  width: 40%;
  padding: 40px 24px 40px 48px;
  vertical-align: middle;
  border-right: 1px solid #2a2a2a;
}

.slide-eyebrow {
  font-size: 11px;
  color: #E87820;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding: 0;
}

.slide-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 16px;
  padding: 0;
}

.slide-highlight {
  color: #E87820;
}

.slide-desc {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0 0 28px;
  padding: 0;
}

.slide-btn {
  display: inline-block;
  background: #E87820;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.slide-btn:hover {
  background: #ff9a3c;
  color: #000000;
  text-decoration: none;
}

/* ── Columna derecha ── */
.slide-right {
  width: 60%;
  padding: 40px 20px;
  vertical-align: middle;
}

.slide-benefits {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

/* ── Tarjetas de beneficio ── */
.slide-benefit {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 16px 18px;
  vertical-align: middle;
}

.slide-benefit-icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: #E87820;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  line-height: 40px;
}

.slide-benefit-text {
  padding-left: 14px;
  vertical-align: middle;
}

.slide-benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
  padding: 0;
}

.slide-benefit-sub {
  font-size: 12px;
  color: #888888;
  margin: 0;
  padding: 0;
}

/* ── Desktop grande (> 1195px): altura fija 420px ── */
@media (min-width: 1196px) {
  #carousel .carousel-inner .carousel-item figure {
    height: 420px !important;
  }
  .slide-table {
    height: 420px !important;
  }
}

/* ── Mobile (< 768px): altura automática para que no se corte ── */
@media (max-width: 767px) {
  #carousel .carousel-inner .carousel-item figure {
    height: auto !important;
    min-height: 300px !important;
    overflow: hidden !important;
  }
  #carousel .carousel-item figcaption.caption {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow-y: auto !important;
  }
  #carousel .caption-description {
    height: auto !important;
  }
  .slide-table,
  .slide-table tr,
  .slide-table td {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }
  .slide-left {
    padding: 24px 20px 16px;
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
  }
  .slide-right {
    padding: 16px 20px 24px;
  }
  .slide-title {
    font-size: 26px;
  }
  .slide-benefits,
  .slide-benefits tr,
  .slide-benefits td {
    display: block !important;
    width: 100% !important;
  }
  .slide-benefit {
    margin-bottom: 8px;
    display: block;
  }
}

/* Altura del carrusel */
.carousel .carousel-inner,
.carousel .carousel-item {
    max-height: 420px;
}

.carousel .carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

/* Puntos indicadores rediseñados */
.carousel .carousel-indicators {
    bottom: 12px;
    gap: 6px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel .carousel-indicators li.active {
    width: 28px;
    border-radius: 5px;
    background-color: #f5ae01;
    border-color: #f5ae01;
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
    .carousel .carousel-inner,
    .carousel .carousel-item {
        max-height: 220px;
    }
    .carousel .carousel-item img {
        height: 220px;
    }
    .carousel .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
    .carousel .carousel-indicators li.active {
        width: 22px;
    }
}
 
 
/* ==========================================================================
   2. HEADER — Fondo, textos, iconos y buscador
   ========================================================================== */
 
/* Fondo negro y ancho completo en todo el header */
#header,
#header .header-top,
#header .header-nav {
    background-color: #000 !important;
    width: 100% !important;
}
 
/* Enlaces y textos del nav en blanco */
#header .header-nav a,
#header .header-nav span,
#header .header-nav div,
#header .header-nav .user-info a {
    color: #ffffff !important;
}
 
/* Iconos del header en gris claro */
#header .header-nav i,
#header .header-top i,
#header .search-widget form i {
    color: #ddd !important;
}
 
/* Menú principal en gris claro */
#top-menu .top-menu a,
#_desktop_top_menu #top-menu > .top-menu > a {
    color: #cccccc !important;
}

/* Links del header-top con data-depth="0" (tema pone #7a7a7a) */
#header .header-top a[data-depth="0"] {
    color: #f0f0f0 !important;
}
 
/* Línea decorativa naranja/amarilla debajo del nav */
#header .header-nav {
    border-bottom: 2px solid #f5ae01;
}
 
/* Fondo blanco en el input del buscador */
#search_widget form input {
    background-color: #ffffff;
}
 
/* Bloque del carrito: fondo negro por defecto, amarillo al activarse */
#header .header-nav .blockcart {
    background: #000000;
}
#header .header-nav .cart-preview.active {
    background: #f5ae01;
}
 
 
/* ==========================================================================
   3. MENÚ Y NAVEGACIÓN
   ========================================================================== */

/* Contenedor principal del menú: una sola fila sin wrap */
#_desktop_top_menu #top-menu {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow: visible;
}

/* Ítems de primer nivel */
#_desktop_top_menu #top-menu > .top-menu {
    flex-shrink: 0;
}

/* Links de primer nivel: tamaño y espaciado ajustado */
#_desktop_top_menu #top-menu > .top-menu > a {
    font-size: 0.78rem !important;
    letter-spacing: 0.04em;
    padding: 0.5rem 0.6rem !important;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease !important;
    display: inline-block !important;
}

#_desktop_top_menu #top-menu > .top-menu > a:hover,
#header #_desktop_top_menu #top-menu > li > a:hover {
    color: #f5ae01 !important;
    transform: translateY(-3px) !important;
}

/* Submenú de primer nivel: oculto por defecto, visible en hover */
#_desktop_top_menu #top-menu .top-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border-top: 2px solid #f5ae01;
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#_desktop_top_menu #top-menu .top-menu:hover > .sub-menu {
    display: block;
}

/* Links dentro del submenú */
#_desktop_top_menu #top-menu .sub-menu a,
#_desktop_top_menu .sub-menu a,
#_desktop_top_menu .popover a {
    display: block;
    padding: 0.4rem 1.1rem !important;
    font-size: 0.82rem;
    color: #222222 !important;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

#_desktop_top_menu #top-menu .sub-menu a:hover,
#_desktop_top_menu .sub-menu a:hover,
#_desktop_top_menu .popover a:hover {
    color: #009498 !important;
    background: rgba(0, 148, 152, 0.12);
}

/* Ocultar submenús de 4° nivel (demasiado anidamiento) */
#_desktop_top_menu ul ul ul ul {
    display: none !important;
}

/* Ocultar bloque de subcategorías */
#subcategories {
    display: none !important;
}
 
/* Menú móvil — letras negras */
@media (max-width: 768px) {
    #mobile_top_menu_wrapper a,
    #mobile_top_menu_wrapper li a,
    #mobile_top_menu_wrapper .top-menu a,
    #mobile_top_menu_wrapper .js-top-menu-bottom a,
    #_mobile_top_menu a,
    #header .header-top a[data-depth="0"] {
        color: #000000 !important;
    }
}
 
 
/* ==========================================================================
   4. FOOTER — Pie de página
   ========================================================================== */
 
/* Fondo negro y texto blanco en el footer */
.footer-container {
    background-color: #000 !important;
    color: #fff;
    /* border-top: 1px solid #222; */
}
 
/* Títulos h3 dentro del footer en blanco */
/* NOTA: el selector "h3" sin prefijo afecta TODOS los h3 de la página */
.footer-container .h3,
h3 {
    color: #ffffff !important;
}
 
/* Enlaces secundarios (breadcrumb y CMS) en gris */
#wrapper .breadcrumb li a,
.linklist .blockcms-title a {
    color: #7a7a7a;
}
 
/* Bloque de suscripción por email en el footer */
#blockEmailSubscription_displayFooterBefor {
    padding-top: 20px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-radius: 1% !important;
}
 
/* Íconos de redes sociales con fondo negro */
.block-social ul li {
    background-color: #000;
}
 
 
/* ==========================================================================
   5. FICHA DE PRODUCTO Y BOTONES
   ========================================================================== */
 
/* Contenedor principal del producto */
#main .product-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}
 
/* Botón primario en negro */
.btn-primary {
    background-color: #000 !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 25px;
    transition: all 0.3s ease;
}
 
/* Hover del botón primario: sube levemente */
.btn-primary:hover {
    background-color: #222 !important;
    transform: translateY(-2px);
}
 
/* Etiquetas de oferta/nuevo en cian */
.product-flags li.product-flag {
    background: #009498;
    color: #fff;
    padding: 0.3rem 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
 
/* Título principal y precio */
h1 {
    font-size: 32px;
    font-weight: 700;
}
.current-price span {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}
 
 
/* ==========================================================================
   6. LISTADO DE PRODUCTOS — Miniaturas (product cards)
   ========================================================================== */
 
/* El border-radius va en el article, que es el contenedor blanco real.
   El div.js-product exterior no tiene fondo, por eso no sirve para recortar. */
article.product-miniature {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff !important;
    margin: 8px;
}
 
/* El thumbnail-container no necesita border-radius propio */
.product-miniature .thumbnail-container {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0 !important;
    height: auto !important;
}

/* Eliminar la altura fija que el tema Classic impone en thumbnail-top y el link */
.product-miniature .thumbnail-top {
    height: auto !important;
    min-height: 0 !important;
}

.product-miniature .thumbnail-top a.thumbnail,
.product-miniature a.thumbnail.product-thumbnail {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
}

.product-miniature .thumbnail-top picture {
    display: block !important;
    line-height: 0 !important;
}

.product-miniature .thumbnail-top img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}
 
/* Imagen sin border-radius propio, el recorte lo hace el article */
.product-miniature .thumbnail-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: transform 0.4s ease;
}
 
/* Hover de la card: sube y aplica zoom a la imagen */
article.product-miniature:hover {
    transform: translateY(-5px);
}
article.product-miniature:hover img {
    transform: scale(1.1);
}
 
 
/* ==========================================================================
   7. SIDEBAR — Filtros y categorías
   ========================================================================== */
 
/* Bloques de filtros con bordes redondeados y sombra */
#search_filters,
#search_filters_brands,
#search_filters_suppliers {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
 
/* Bloque de categorías con el mismo estilo */
.block-categories {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
 
/* ── Alineación vertical de checkboxes y radio en los filtros ──
   El theme.css aplica margin-top: .25rem al .custom-checkbox,
   lo que desalinea el cuadradito del texto. Se neutraliza aquí. */
#search_filters .facet-label,
#search_filters_brands .facet-label,
#search_filters_suppliers .facet-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 6px;
    transition: 0.25s;
    cursor: pointer;
}
 
#search_filters .facet-label .custom-checkbox,
#search_filters .facet-label .custom-radio,
#search_filters_brands .facet-label .custom-checkbox,
#search_filters_brands .facet-label .custom-radio,
#search_filters_suppliers .facet-label .custom-checkbox,
#search_filters_suppliers .facet-label .custom-radio {
    margin-top: 0 !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
 
/* Hover de la etiqueta: escala + fondo sutil */
#search_filters .facet-label:hover,
#search_filters_brands .facet-label:hover,
#search_filters_suppliers .facet-label:hover {
    transform: scale(1.03);
    background: rgba(0, 0, 0, 0.05);
}
 
/* Checkbox/radio con transición suave */
#search_filters input[type="checkbox"],
#search_filters input[type="radio"],
#search_filters_brands input[type="checkbox"],
#search_filters_brands input[type="radio"],
#search_filters_suppliers input[type="checkbox"],
#search_filters_suppliers input[type="radio"] {
    transition: 0.2s;
}
 
/* Checkbox también escala al hacer hover en su etiqueta */
#search_filters .facet-label:hover input[type="checkbox"],
#search_filters .facet-label:hover input[type="radio"] {
    transform: scale(1.1);
}
 
/* Ítems de categoría con transición y bordes redondeados */
.block-categories ul li {
    transition: 0.25s;
    border-radius: 8px;
}
 
/* Hover del ítem: fondo sutil + desplazamiento lateral */
.block-categories ul li:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}
 
/* Enlace de categoría como bloque con transición */
.block-categories a {
    display: block;
    transition: 0.25s;
}
 
/* Hover del enlace: leve escala */
.block-categories a:hover {
    transform: scale(1.03);
}


.pagination .page-list {
border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff !important;
    margin: 8px;
}
/* Banner ancho completo — override del width:1110px inline */
.ps-emailsubscription-wrap table,
#index .col-md-12 table,
.custom-html-widget table,
[id*="customhtml"] table,
[id*="custom-html"] table {
    width: 100% !important;
    max-width: 100% !important;
}

/* Quitar padding y fondo del contenedor del banner */
#custom-text,
[id*="customhtml"],
[id*="custom-html"],
.custom-html-widget,
.blockcms-no-title,
#index .block_content {
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

#footer {
    BACKGROUND-COLOR: WHITE;
}
/* ==========================================================================
   8. HEADER RESPONSIVE — Ancho completo en todas las pantallas
   ========================================================================== */

/* Logo adaptable */
#header .logo img,
#_desktop_logo img,
#header img.logo {
    max-height: 110px !important;
    width: auto !important;
    display: block;
}

/* Buscador: estilos base */
#search_widget {
    flex: 1;
    max-width: 320px;
}

/* Formulario del buscador */
#search_widget form {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    background: #1a1a1a;
    border: 1.5px solid #f5ae01;
    border-radius: 25px;
    padding: 0 0.75rem !important;
    gap: 0.4rem;
    transition: box-shadow 0.25s ease;
    overflow: hidden;
}

#search_widget form:focus-within {
    box-shadow: 0 0 0 3px rgba(245, 174, 1, 0.25);
}

/* Lupa: comportamiento normal en el flex del form */
#search_widget form i.search {
    position: static !important;
    display: flex !important;
    align-items: center;
    color: #f5ae01 !important;
    font-size: 1.15rem !important;
    flex-shrink: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-right: 0.35rem;
}

#search_widget form i.search:hover {
    color: #ffffff !important;
}

/* Input de texto */
#search_widget form input[name="s"] {
    position: static !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    padding: 0.5rem 0 !important;
    font-size: 0.875rem;
    width: 100%;
    flex: 1;
    min-width: 0;
}

#search_widget form input[name="s"]::placeholder {
    color: #888 !important;
}

/* Ícono clear */
#search_widget form i.clear {
    position: static !important;
    color: #888 !important;
    font-size: 1rem;
    flex-shrink: 0;
    cursor: pointer;
    top: auto !important;
    bottom: auto !important;
}

#search_widget form i.clear:hover {
    color: #fff !important;
}

/* ── Desktop (≥ 970px): logo + menú fila 1 | buscador fila 2 ── */
@media (min-width: 970px) {
    /*
     * CSS Grid en el .container del header-top.
     * Estructura HTML real:
     *   .header-top > .container > .row
     *     ├── #_desktop_logo   (col-md-2)
     *     └── .header-top-right (col-md-10)
     *           ├── #_desktop_top_menu
     *           └── #search_widget
     *
     * Con display:contents en .row y .header-top-right,
     * sus hijos pasan a ser items directos del grid del .container.
     */
    #header .header-top .container {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        grid-template-rows: minmax(80px, auto) auto !important;
        align-items: center !important;
        justify-items: start !important;
        max-width: 1280px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0.4rem 2rem !important;
        height: auto !important;
        overflow: visible !important;
    }

    /* Bootstrap .row: transparente al grid */
    #header .header-top .container .row {
        display: contents !important;
    }

    /* Logo → abarca fila 1 y fila 2, centrado verticalmente entre menú y buscador */
    #header .header-top #_desktop_logo {
        grid-column: 1 !important;
        grid-row: 1 / -1 !important;
        width: auto !important;
        max-width: none !important;
        padding: 0.4rem 1rem 0.4rem 0 !important;
        align-self: center !important;
        display: flex !important;
        align-items: center !important;
    }

    #header .header-top #_desktop_logo img,
    #header .header-top #_desktop_logo .logo {
        max-height: 110px !important;
        height: auto !important;
        width: auto !important;
        display: block;
    }

    /* Wrapper derecho → transparente al grid */
    #header .header-top .header-top-right {
        display: contents !important;
    }

    /* Menú → celda (col 2, fila 1), centrado y ancho completo */
    #header .header-top #_desktop_top_menu {
        grid-column: 2 !important;
        grid-row: 1 !important;
        align-self: center !important;
        width: 100% !important;
    }

    /* Items del menú distribuidos uniformemente */
    #header .header-top #_desktop_top_menu #top-menu {
        justify-content: space-evenly !important;
    }

    /* Buscador → fila 2, solo debajo del menú */
    #search_widget {
        grid-column: 2 !important;
        grid-row: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.2rem 0 0.5rem !important;
    }

    #search_widget form {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
    #header .logo img {
        max-height: 55px;
    }
    #search_widget {
        max-width: 100%;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
    /* Mostrar header-top (el tema maneja el toggle del menú nativo) */
    #header .header-top {
        display: block !important;
        padding: 0 !important;
    }

    #header .header-top .container {
        display: block !important;
        padding: 0.3rem 0.75rem !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* NO tocamos .row ni su display — el tema lo maneja solo */

    /* Ocultar logo y menú desktop */
    #header .header-top #_desktop_logo {
        display: none !important;
    }
    #_desktop_top_menu {
        display: none !important;
    }

    /* header-top-right: bloque ancho completo para el buscador */
    #header .header-top .header-top-right {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }

    /* Buscador: ancho completo */
    #search_widget {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.3rem 0 0.4rem !important;
        grid-column: unset !important;
        grid-row: unset !important;
        flex: none !important;
    }

    #search_widget form {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Logo en la barra superior mobile: tamaño ajustado */
    #header .logo img,
    #header img.logo {
        max-height: 40px !important;
        height: auto !important;
    }
}

a:not([href]):not([tabindex]) {
    color: #f49d6e;
    text-decoration: none;
}


/* ==========================================================================
   HERO OLIMPIO — ancho completo sin bordes blancos
   ========================================================================== */

/* Hero — expande al ancho total y fondo negro solo en esa sección */
#index .oh-wrap {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: #111111;
}

/* Solo el contenedor directo del módulo hero en negro */
#custom-text {
    background-color: #111111 !important;
    padding: 0 !important;
}


/* ==========================================================================
   TÍTULOS DE SECCIÓN — Productos Destacados / Novedades
   ========================================================================== */

.products-section-title {
    text-align: center !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    color: #111111 !important;
    margin-bottom: 1.5rem !important;
    position: relative;
    display: block;
    padding-bottom: 0.6rem !important;
}

.products-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f5ae01;
    border-radius: 2px;
    margin: 0.4rem auto 0;
}


/* ==========================================================================
   BANNER MARCAS OLIMPIO
   ========================================================================== */

.ob-wrap {
  width: 100%;
  background: #111111;
  border: 2px solid #E87820;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  /* Expandir al ancho del contenedor padre */
  margin-left: 0;
  margin-right: 0;
}
.ob-inner {
  display: flex;
  align-items: center;
  min-height: 300px;
}
.ob-left {
  min-width: 240px;
  width: 240px;
  flex-shrink: 0;
  padding: 28px 24px;
  border-right: 1px solid #2a2a2a;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ob-divider {
  width: 1px;
  background: #2a2a2a;
  align-self: stretch;
}
.ob-right {
  flex: 1;
  padding: 0 16px;
}
.ob-eyebrow {
  font-size: 11px;
  color: #E87820 !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
  padding: 0;
}
.ob-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  margin: 0 0 8px;
  padding: 0;
}
.ob-sub {
  font-size: 12px;
  color: #888888 !important;
  margin: 0 0 16px;
  padding: 0;
}
.ob-btn {
  display: inline-block;
  background: #E87820 !important;
  color: #000000 !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
}
.ob-btn:hover {
  background: #ff9a3c !important;
}
.ob-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ob-logo {
  flex: 1;
}
.ob-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  height: 100px;
  text-decoration: none;
}
.ob-logo a:hover {
  border-color: #E87820;
}
.ob-logo a img {
  max-width: 65px;
  max-height: 55px;
  display: block;
}
.ob-mas {
  flex: 1;
}
.ob-mas a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  border: 2px solid #E87820;
  border-radius: 8px;
  height: 100px;
  text-decoration: none;
}
.ob-mas-n {
  font-size: 22px;
  font-weight: 700;
  color: #E87820 !important;
  margin: 0;
  padding: 0;
}
.ob-mas-t {
  font-size: 10px;
  color: #888888 !important;
  margin: 3px 0 0;
  padding: 0;
  text-align: center;
}

/* ── Tablet ── */
@media (max-width: 768px) {
  .ob-inner {
    flex-direction: column;
    min-height: 0;
  }
  .ob-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
    padding: 20px;
  }
  .ob-divider {
    display: none;
  }
  .ob-right {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .ob-logos {
    flex-wrap: wrap;
  }
  .ob-logo {
    flex: 0 0 calc(33.33% - 6px);
  }
  .ob-mas {
    flex: 0 0 calc(33.33% - 6px);
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .ob-logo {
    flex: 0 0 calc(50% - 4px);
  }
  .ob-mas {
    flex: 0 0 calc(50% - 4px);
  }
}