/*------------------------------------------------------------------
    IMPORT FONTS
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700');


/*

    font-family: 'Poppins', sans-serif;

    font-family: 'Dosis', sans-serif;

*/

/*------------------------------------------------------------------
    IMPORT FILES
-------------------------------------------------------------------*/

@import url(all.css);
@import url(superslides.css);
@import url(bootstrap-select.css);
@import url(carousel-ticker.css);
@import url(code_animate.css);
@import url(bootsnav.css);
@import url(owl.carousel.min.css);
@import url(jquery-ui.css);
/* @import url(nice-select.css); */
@import url(baguetteBox.min.css);

/*------------------------------------------------------------------
    SKELETON
-------------------------------------------------------------------*/
 body {
    color: #2e2f44; /* gris oscuro legible */
    font-size: 16px;
    font-family: 'Dosis', sans-serif;
    line-height: 1.80857;
    background-color: #f4f6fa; /* fondo general suave */
}
.section-blue {
    background: linear-gradient(180deg, #121a77 0%, #221c5a 100%);
    color: #ffffff;
}

a {
    color: #121a77; /* azul profundo institucional */
    text-decoration: none;
    outline: none;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

a:hover {
    color: #f97316; /* naranja acento de marca */
    text-shadow: 0 0 6px rgba(249, 115, 22, 0.3); /* sutil brillo naranja */
}

/* Titulares */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    line-height: 120% !important;
    color: #1a237e ; /* azul profundo principal */
    margin: 0;
}

/* b1 */

/* Tamaños de títulos */
h1 { font-size: 24px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 13px; }

/* Enlaces dentro de encabezados */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #121a77; /* azul profundo institucional */
    text-decoration: none;
    opacity: 1;
    transition: color 0.3s ease, opacity 0.3s ease;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #f7b267; /* acento naranja pastel */
    opacity: 0.9;
}
/* B1 */

/* botón elegante con borde azul. */
.btn-custom {
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid #121a77; /* azul profundo institucional */
    padding: 12px 40px;
    font-size: 16px;
    color: #121a77;
    font-weight: 600;
   /*  border-radius: ; */
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #f97316; /* naranja acento */
    border-color: #f97316;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4); /* efecto de profundidad */
}

/* botón principal con fondo naranja. */
.btn-orange {
    background-color: #f97316;
    border: 2px solid #f97316;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-orange:hover {
    background-color: #ff8f3f;
    border-color: #ff8f3f;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

/* Texto destacado */
.lead {
    font-size: 18px;
    line-height: 30px;
    color: #2e2f44; /* gris azulado, coherente con el texto global */
    margin: 0;
    padding: 0;
}

/* Citas o testimonios */
blockquote {
    margin: 20px 0;
    padding: 25px 30px;
    border-left: 4px solid #f97316; /* naranja acento institucional */
    background: #f4f6fa; /* fondo claro con matiz azul institucional */
    color: #121a77; /* azul profundo para texto */
    font-style: italic;
    border-radius: 6px; /* opcional: bordes suaves y modernos */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* ligera profundidad */
}

/* Listas generales */
ul, li, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Listas con íconos personalizados */
.list-check li::before {
    content: "✔";
    color: #f97316; /* ícono en naranja institucional */
    margin-right: 8px;
}

/* Enfoque general accesible */
:focus {
    outline: none;
}

/* Botones y formularios */
button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(91, 123, 214, 0.4); /* halo azul claro */
}

button:focus-visible,
a:focus-visible {
    box-shadow: 0 0 6px rgba(249, 115, 22, 0.7);
    border-color: #f97316;
}

:focus {
    outline: 0;
}

/* Párrafos */
p {
    margin: 0;
    color: #2e2f44; /* gris azulado coherente con body */
}

/* Enfoque de select Bootstrap */
.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: 0 0 6px rgba(249, 115, 22, 0.6) !important; /* halo naranja institucional */
    border-color: #f97316 !important;
}


/* Placeholders (texto dentro del input) */
.form-control::placeholder,
.form-control::-moz-placeholder {
    color: #121a77; /* azul profundo institucional */
    opacity: 0.8;   /* tono suave */
}

/* consistencia en todos los navegadores */
.form-control::-webkit-input-placeholder { color: #121a77; opacity: 0.8; } /* Chrome, Safari */
.form-control:-ms-input-placeholder { color: #121a77; opacity: 0.8; } /* IE10+ */
/* Start whatsapp float */




 /*-----------------  BOTÓN “BACK TO TOP"------------- */
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: linear-gradient(135deg, #f97316, #e07b39); /* Naranja institucional */
    color: #f9fafb;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    background: linear-gradient(135deg, #121a77, #1e3a8a); /* Azul profundo */
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Animación suave al aparecer */
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.4s ease;
}
/* Accesibilidad (teclado / focus) */
#back-to-top:focus {
    outline: 2px solid#cd9b65;;
    outline-offset: 3px;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}


/*---------------------------------------Linea de colores Omega  HEADER -------------------------------------------------------------------*/


/* ==========================================================
    CABECERA SUPERIOR (MAIN-TOP) - FERRETERÍA OMEGA
   ========================================================== */

.main-top {
    background: linear-gradient(90deg, #121a77 0%, #221c5a 100%); /* azul institucional */
    color: #cd9b65;; /* naranja acento para texto o íconos */
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(18, 26, 119, 0.3); /* sombra sutil en tono azul */
}

/* SELECTOR DE MONEDA / IDIOMA */
.custom-select-box {
    float: left;
    width: 95px;
    margin-right: 10px;
}
.custom-select-box .form-control {
    background: transparent;
    border: none;
    color: #dee0e1; /* texto blanco sobre fondo azul */
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.custom-select-box .form-control:focus {
    color: #f97316; /* naranja institucional al enfocar */
    outline: none;
    box-shadow: 0 0 5px rgba(249, 115, 22, 0.5);
}

/* SELECTOR PERSONALIZADO FERRETERÍA OMEGA */
.custom-select-box .bootstrap-select .btn-light {
    padding: 6px 10px;
    font-size: 14px;
    background: #f4f6fa; /* gris azulado claro, consistente con fondo del sitio */
    color: #121a77; /* azul institucional */
    border: 1px solid rgba(18, 26, 119, 0.3); /* borde sutil azul profundo */
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-select-box .bootstrap-select .btn-light:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(249, 113, 22, 0.5); /* halo naranja al enfocar */
}

.custom-select-box .bootstrap-select .btn-light span {
    padding: 2px;
    line-height: 15px;
}

/* Flecha del selector */
.custom-select-box .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 13px;
    border-top: .3em solid #121a77; /* azul institucional */
}

/*  Teléfono (Llámanos) */
.right-phone-box {
    float: left;
    margin-right: 15px;
}
.right-phone-box p {
    margin: 0;
    color: #f9fafb;
    font-size: 14px;
    line-height: 30px;
}
.right-phone-box p a {
    color: #f9fafb;
    font-weight: 500;
    transition: color 0.3s ease;
}
/* controla la sección de teléfono (llámanos) en la barra superior */
.right-phone-box p a:hover {
    color:#cd9b65;; /* acento cálido al pasar */
}

/* Ofertas superiores, stilos definen los textos de promociones u ofertas */
.offer-box, .slide {
    color: #f9fafb;
    font-size: 13px;
    padding: 2px 15px;
    font-family: 'Poppins', sans-serif;
}
.offer-box li {
    font-weight: 600;
}
.offer-box li i {
    margin-right: 10px;
    color: #cd9b65; /* ícono naranja pastel */
    font-size: 18px;
}

/*  Links rápidos */
.our-link {
    float: left;
}
.our-link ul {
    line-height: 30px;
}
.our-link ul li {
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 10px;
}
.our-link ul li:last-child {
    border: none;
}
.our-link ul li a {
    color: #f9fafb;
    font-weight: 600;
  /*   text-transform: uppercase; */
    font-size: 13.5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.our-link ul li a:hover {
    color: #cd9b65;; /* naranja pastel al hover */
}

/*  LOGIN / REGISTRO */
.login-box {
    float: right;
    width: 120px;
    margin-left: 20px;
}
.login-box .form-control {
    background: none;
    border: none;
}
.login-box .bootstrap-select .btn-light {
    padding: 4px;
    font-size: 14px;
    background: #eceef1;
    color: #232325;
    border: 1px solid rgba(43, 63, 164, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}
.login-box .bootstrap-select .btn-light:hover {
    background: #5b7bd6;
    color: #f9fafb;
}
.login-box .bootstrap-select .btn-light span {
    padding: 2px;
    line-height: 15px;
}
.login-box .dropdown-toggle::after {
    position: absolute;
    top: 13px;
    right: 10px;
    border-top: .3em solid #2b3fa4;
}
.login-box .dropdown-item {
    padding: 6px 10px;
    font-size: 13.5px;
    color: #1a237e;
    transition: all 0.2s ease;
}
.login-box .dropdown-item:hover {
    background: #f7b267;
    color: #1a237e;
}

.search a {
    color: #f7b267; /* ícono de búsqueda */
    transition: color 0.3s ease;
}

.attr-nav > ul > li > a {
    transition: color 0.3s ease;
}
.attr-nav > ul > li > a:hover {
    color: #f97316; /* naranja más vibrante al pasar el mouse */
}
nav.navbar.bootsnav ul.nav > li > a {
    margin: 0;
    padding: 10px 15px; /* mantiene espacio táctil */
}

/* === Botón del carrito (Total / Comprar) === */
ul.cart-list > li.total > .btn {
    background: #f7b267; /* naranja pastel */
    color: #1a237e; /* azul profundo */
    padding: 10px 15px;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

ul.cart-list > li.total > .btn:hover {
    background: #2b3fa4; /* azul institucional medio */
    color: #f9fafb; /* blanco cálido */
    box-shadow: 0 3px 10px rgba(26, 35, 126, 0.3);
}

ul.cart-list > li.total > .btn:hover {
    background: #2b3fa4; /* azul institucional medio */
    color: #f9fafb; /* blanco cálido */
    box-shadow: 0 3px 10px rgba(26, 35, 126, 0.3);
}

/* Linea de colores omega arriba */

@media (min-width: 1024px) {
    /* Navbar General ------*/
    nav.navbar ul.nav > li > a {
        padding: 30px 15px;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    nav.navbar ul.nav > li > a:hover {
        color: #f97316; /* Naranja institucional al hover */
    }

    nav.navbar .navbar-brand {
        margin-top: 0;
    }

    nav.navbar li.dropdown ul.dropdown-menu {
        border-top: solid 5px #f97316; /* Acento naranja */
    }

    /* Navbar Center ------*/
    nav.navbar-center .navbar-brand {
        margin: 0;
    }

    /* Navbar Brand Top ------*/
    nav.navbar-brand-top .navbar-brand {
        margin: 10px;
    }

    /* Navbar Full ------*/
    nav.navbar-full .navbar-brand {
        position: relative;
        top: -15px;
    }

    /* Navbar Sidebar ------*/
    nav.navbar-sidebar ul.nav,
    nav.navbar-sidebar .navbar-brand {
        margin-bottom: 50px;
    }
    nav.navbar-sidebar ul.nav > li > a {
        padding: 10px 15px;
        font-weight: bold;
        color: #121a77;
    }
    nav.navbar-sidebar ul.nav > li > a:hover {
        color: #f97316;
    }

    /* Navbar Transparent & Fixed ------*/
    nav.navbar.bootsnav.navbar-transparent.white {
        background-color: rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(249, 115, 22, 0.4);
    }
    nav.navbar.bootsnav.navbar-transparent.dark {
        background-color: rgba(18, 26, 119, 0.4);
        border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    }

    nav.navbar.bootsnav.navbar-transparent.white .attr-nav,
    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav {
        border-left: 1px solid rgba(255,255,255,0.2);
    }

    nav.navbar.bootsnav.navbar-transparent.white ul.nav > li > a,
    nav.navbar.bootsnav.navbar-transparent.white .attr-nav > ul > li > a,
    nav.navbar.bootsnav.no-background.white ul.nav > li > a,
    nav.navbar.bootsnav.no-background.white .attr-nav > ul > li > a {
        color: #ffffff;
    }

    nav.navbar.bootsnav.navbar-transparent.dark ul.nav > li > a,
    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav > ul > li > a {
        color: #f9fafb;
    }
}
/* comportamiento y los espaciados del navbar en pantallas menores a 992px (movil)*/
 @media (max-width: 992px) {
     nav.navbar .navbar-brand{
         margin-top: 0;
         position: relative;
         top: -2px;
         transition: all 0.3s ease; /* suaviza pequeños movimientos o cambios */
    }
     nav.navbar .navbar-brand img.logo {
        width: 160px;
        max-width: 60vw;  /* se adapta mejor a pantallas pequeñas */
        height: auto;
        transition: width 0.3s ease; /* animación ligera al cambio */
    }
     .attr-nav > ul > li > a{
         padding: 16px 15px 15px;
    }

    nav.navbar.navbar-mobile {
        background-color: #121a77; /* azul profundo institucional */
        border-bottom: 1px solid #f97316; /* línea naranja institucional */
    }

     nav.navbar.navbar-mobile ul.nav > li > a {
        padding: 15px 15px;
        color: #ffffff; /* texto blanco sobre fondo azul */
        font-weight: 600;
        transition: color 0.3s ease;
    }
      nav.navbar.navbar-mobile ul.nav > li > a:hover {
        color: #f97316; /* hover naranja institucional */
    }

         /* Dropdowns dentro del menú móvil */
    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu > li > a {
        padding-right: 15px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        color: #ffffff;
        transition: color 0.3s ease;
    }

    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu > li > a:hover {
        color: #f7b267; /* naranja pastel suave en hover */
    }


    /* Títulos dentro de submenús */
    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu .title {
        padding-right: 30px !important;
        padding-top: 13px !important;
        padding-bottom: 13px !important;
        color: #f97316;
        font-weight: 700;
        /* text-transform: uppercase; */
    }


    /* Enlaces dentro de columnas de menú */
    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu ul.menu-col li a {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
        color: #ffffff;
        transition: color 0.3s ease;
    }

    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu ul.menu-col li a:hover {
        color: #f97316;
    }

   /* =========================================================
        NAVBAR FULL (para menús ocupando ancho total en móvil)
       ========================================================= */
    nav.navbar-full .navbar-brand {
        top: 0;
        padding-top: 10px;
    }
}

/* =========================
    NAVBAR OSCURO (INVERSE)
   ========================= */
nav.navbar.navbar-inverse {
    background-color: #121a77; 
    border-bottom: solid 1px #221c5a;
}

/* Botón de total en el carrito */
nav.navbar.navbar-inverse ul.cart-list > li.total > .btn {
    border-bottom: solid 1px #121a77 !important;
}


/* Totales del carrito */
nav.navbar.navbar-inverse ul.cart-list > li.total .pull-right {
    color: #ffffff;
}

/* Enlaces generales */
nav.navbar.navbar-inverse ul.nav > li > a,
nav.navbar.navbar-inverse.megamenu ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
    color: #f9fafb;
    transition: color 0.3s ease;
}
/* sdsdsd */

/* Dropdown principal */
/* Dropdown principal */
nav.navbar.navbar-inverse ul.nav > li.dropdown > a {
    background-color: #121a77; /* azul profundo */
}

/* Enlaces dentro de dropdown */
nav.navbar.navbar-inverse li.dropdown ul.dropdown-menu > li > a {
    color: #f9fafb; /* blanco cálido */
    transition: color 0.3s ease;
}


nav.navbar.navbar-inverse li.dropdown ul.dropdown-menu > li > a:hover {
    color: #f97316; /* naranja institucional en hover */
}

/* Títulos dentro de dropdown */
nav.navbar.navbar-inverse ul.nav .dropdown-menu h1,
nav.navbar.navbar-inverse ul.nav .dropdown-menu h2,
nav.navbar.navbar-inverse ul.nav .dropdown-menu h3,
nav.navbar.navbar-inverse ul.nav .dropdown-menu h4,
nav.navbar.navbar-inverse ul.nav .dropdown-menu h5,
nav.navbar.navbar-inverse ul.nav .dropdown-menu h6 {
    color: #ffffff;
}


/* Campos de formulario dentro del navbar */
nav.navbar.navbar-inverse .form-control {
    background-color: #1a237e; /* azul profundo institucional */
    border-color: #221c5a;     /* azul más oscuro */
    color: #ffffff;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
nav.navbar.navbar-inverse .form-control:focus {
    border-color: #f97316; /* borde naranja al enfocar */
    background-color: #121a77;
}

/* Íconos del nav derecho */
nav.navbar.navbar-inverse .attr-nav > ul > li > a {
    color: #f97316; /* reemplaza el rojo fuera de paleta */
    transition: color 0.3s ease;
}
nav.navbar.navbar-inverse .attr-nav > ul > li > a:hover {
    color: #f7b267; /* naranja pastel suave */
}


 /* Dropdown del nav derecho */
nav.navbar.navbar-inverse .attr-nav > ul > li.dropdown ul.dropdown-menu {
    background-color: #121a77; /* azul institucional */
    border-left: solid 1px #221c5a;
    border-bottom: solid 1px #221c5a;
    border-right: solid 1px #221c5a;
}

/* Elementos del carrito */
nav.navbar.navbar-inverse ul.cart-list > li {
    border-bottom: solid 1px #221c5a;
    color: #f9fafb;
}
nav.navbar.navbar-inverse ul.cart-list > li img {
    border: solid 1px #221c5a;
}

/*  */
nav.navbar.navbar-inverse ul.cart-list > li.total {
    background-color: #1a237e;
}

/* Botón dentro del carrito */
nav.navbar.navbar-inverse ul.cart-list > li.total > .btn {
    background-color: #f7b267; /* naranja pastel */
    color: #1a237e; /* azul para contraste */
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}
nav.navbar.navbar-inverse ul.cart-list > li.total > .btn:hover {
    background-color: #f97316; /* naranja institucional */
    color: #fff;
    box-shadow: 0 3px 10px rgba(26, 35, 126, 0.3);
}

/* Botón compartir */
nav.navbar.navbar-inverse .share ul > li > a {
    background-color: #221c5a;
    color: #fff;
    transition: background-color 0.3s ease;
}
nav.navbar.navbar-inverse .share ul > li > a:hover {
    background-color: #f97316;
}


/* Tabs dentro de dropdowns */
nav.navbar.navbar-inverse .dropdown-tabs .tab-menu {
    border-right: solid 1px #221c5a;
}
nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li > a {
    border-bottom: solid 1px #221c5a;
}
nav.navbar.navbar-inverse .dropdown-tabs .tab-content {
    border-left: solid 1px #221c5a;
}

nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li > a:hover,
nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li > a:focus,
nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li.active > a {
    background-color: #1a237e !important;
    color: #f97316;
}

/* Navbar full */
nav.navbar-inverse.navbar-full ul.nav > li > a {
    border: none;
}
nav.navbar-inverse.navbar-full .navbar-collapse .wrap-full-menu {
    background-color: #121a77;
}

nav.navbar-inverse.navbar-full .navbar-toggle {
    background-color: #121a77 !important;
    color: #f7b267;
}

/* Enlaces principales */
nav.navbar.bootsnav ul.nav > li > a {
    position: relative;
    font-weight: 700;
    font-size: 16px;
    color: #221c5a;
    text-transform: uppercase;
    padding: 10px 30px 10px 10px;
    transition: color 0.3s ease;
}
nav.navbar.bootsnav ul.nav li.active > a {
    color: #f97316;
}

nav.navbar.bootsnav ul.nav li.active > a:hover {
    color: #c9c8bb;
}
nav.navbar.bootsnav ul.nav li > a:hover {
    color: #f97316;
}
nav.navbar.bootsnav ul.nav li.megamenu-fw > a:hover {
    color: #d46220;
}
nav.navbar.navbar-inverse.is-sticky {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


    /*------------ MENÚS DESPLEGABLES (Dropdown)-----------------*/

@media (min-width: 1024px) {
    nav.navbar.navbar-inverse ul.nav .dropdown-menu {
        background-color: #121a77 !important; /* Azul profundo institucional */
        border-left: solid 1px #221c5a !important;
        border-bottom: solid 1px #221c5a !important;
        border-right: solid 1px #221c5a !important;
    }

    nav.navbar.navbar-inverse li.dropdown ul.dropdown-menu > li > a {
        border-bottom: solid 1px rgba(255, 255, 255, 0.08); /* línea suave */
        color: #f9fafb; /* texto claro */
        transition: color 0.3s ease;
    }

    nav.navbar.navbar-inverse li.dropdown ul.dropdown-menu > li > a:hover {
        color: #f97316; /* naranja institucional */
    }

    nav.navbar.navbar-inverse ul.dropdown-menu.megamenu-content .col-menu {
        border-left: solid 1px #221c5a;
        border-right: solid 1px #221c5a;
    }

     /* ============================
        NAVBAR TRANSPARENTE OSCURO
       ============================ */
    nav.navbar.navbar-inverse.navbar-transparent.dark {
        background-color: rgba(18, 26, 119, 0.4); /* azul profundo translúcido */
        border-bottom: solid 1px rgba(249, 116, 22, 0.79); /* línea naranja leve */
    }

   /*  nav.navbar.navbar-inverse.navbar-transparent.dark .attr-nav {
        border-left: solid 1px rgba(249, 116, 22, 0.79);
    } */

       /* ============================
        ENLACES DEL NAVBAR (texto)
       ============================ */
    nav.navbar.navbar-inverse.no-background.white .attr-nav > ul > li > a,
    nav.navbar.navbar-inverse.navbar-transparent.dark .attr-nav > ul > li > a,
    nav.navbar.navbar-inverse.navbar-transparent.dark ul.nav > li > a,
    nav.navbar.navbar-inverse.no-background.white ul.nav > li > a {
        color: #f9fafb; /* blanco cálido */
        transition: color 0.3s ease;
    }

    nav.navbar.navbar-inverse.no-background.white .attr-nav > ul > li > a:hover,
    nav.navbar.navbar-inverse.navbar-transparent.dark ul.nav > li > a:hover {
        color: #f97316;
    }
}
              /* ------NAVBAR SIN FONDO (modo claro)------------- */
              
    nav.navbar.navbar-inverse.no-background.dark .attr-nav > ul > li > a,
    nav.navbar.navbar-inverse.no-background.dark ul.nav > li > a {
        color: #221c5a; /* azul oscuro */
    }

    nav.navbar.navbar-inverse.no-background.dark .attr-nav > ul > li > a:hover,
    nav.navbar.navbar-inverse.no-background.dark ul.nav > li > a:hover {
        color: #f97316; /* acento naranja */
    }

 /* =========================================
        BOTÓN HAMBURGUESA (toggle)
       ========================================= */

 @media (max-width: 992px) {
     nav.navbar.navbar-inverse .navbar-toggle {
        color: #f9fafb;
        background-color: #121a77 !important; 
        border: 1px solid #f97316;
        transition: all 0.3s ease;
    }
    nav.navbar.navbar-inverse .navbar-toggle:hover {
        background-color: #221c5a !important; /* azul oscuro */
        color: #f7b267; /* naranja pastel */
    }


    /* =========================================
        ENLACES PRINCIPALES DEL MENÚ MÓVIL
       ========================================= */
    nav.navbar.navbar-inverse .navbar-nav > li > a {
        border-top: solid 1px #221c5a;
        border-bottom: solid 1px #221c5a;
        color: #1164b7; /* texto blanco cálido */
        font-weight: 600;
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    nav.navbar.navbar-inverse .navbar-nav > li > a:hover {
        color: #f97316; /* hover naranja */
        background-color: rgba(18, 26, 119, 0.4); /* azul translúcido */
    }
           
     /* =========================================
        SUBMENÚS (dropdowns)
       ========================================= */
    nav.navbar.navbar-inverse ul.nav li.dropdown ul.dropdown-menu > li > a {
        color: #f9fafb;
        border-bottom: solid 1px rgba(255, 255, 255, 0.1);
        transition: color 0.3s ease;
    }

    nav.navbar.navbar-inverse ul.nav li.dropdown ul.dropdown-menu > li > a:hover {
        color: #f97316; /* naranja institucional */
    }

       /* =========================================
        MEGAMENÚ (columnas de submenú)
       ========================================= */
    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu .title {
        border-bottom: solid 1px #221c5a;
        color: #f7b267; /* naranja pastel */
        text-transform: uppercase;
        font-weight: 700;
    }

    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu ul > li > a {
        border-bottom: solid 1px rgba(255, 255, 255, 0.1);
        color: #f9fafb !important;
        transition: color 0.3s ease;
    }

    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu ul > li > a:hover {
        color: #f97316;
    }

    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu.on:last-child .title {
        border-bottom: solid 1px #221c5a;
    }

        /* =========================================
        PESTAÑAS EN SUBMENÚS (dropdown-tabs)
       ========================================= */
    nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul {
        border-top: solid 1px #221c5a;
    }

    /* =========================================
        FONDO GENERAL DEL MENÚ DESPLEGABLE
       ========================================= */
    nav.navbar.navbar-inverse.navbar-mobile .navbar-collapse {
        background-color: #121a77; /* azul profundo institucional */
        border-top: 2px solid #f97316; /* acento naranja superior */
    }
}

@media (max-width: 767px) {
    nav.navbar.navbar-inverse.navbar-mobile ul.nav {
        border-top: solid 1px #221c5a; /* azul oscuro institucional */
        background-color: #121a77; /* azul profundo */
    }

    /*  Opción visual extra (más moderna) */
    /* Agrega una ligera sombra y separación */
    nav.navbar.navbar-inverse.navbar-mobile ul.nav {
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.25);
    }

    /*  Opcional: efecto hover de enlaces */
    nav.navbar.navbar-inverse.navbar-mobile ul.nav > li > a {
        color: #f9fafb;
        transition: color 0.3s ease, background-color 0.3s ease;
    }
    nav.navbar.navbar-inverse.navbar-mobile ul.nav > li > a:hover {
        color: #f97316; /* naranja institucional */
        background-color: rgba(255, 255, 255, 0.05); /* leve contraste */
    }
}

/* =========================================
    FLECHAS DE DESPLEGABLES (Dropdown Arrow)
   ========================================= */
    /* naranja institucional */
     /* flecha hacia abajo */
.arrow::before {
    font-family: 'FontAwesome';
    content: "\f0d7";
    color: #121a77;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/*  Flecha rotada al abrir dropdown */
li.dropdown.show > .arrow::before {
    transform: rotate(180deg);
    color:#f97316; 
}
/*  Ocultar la flecha automática de Bootstrap dejamos la personalizada*/
.dropdown-toggle::after {
    display: none;
}

/* ===========================================================
    MEGAMENÚ DE CATEGORÍAS (ajustado y alineado)
   =========================================================== */
nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega {
    position: static; /* menú pueda expandirse correctamente */
}

/*  Contenedor del menú desplegable tipo "mega-menu" */
nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega .mega-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* columnas automáticas */
    gap: 10px 20px;

    /*  ANCHO DEL MEGAMENÚ*/
    width: 50vw;      /* ancho relativo → */
    max-width: 740px; /* ancho máximo absoluto */
    min-width: 440px; /* evitar que se vea demasiado angosto */
    margin-left: 0;
    background-color: #121a77; 
    padding: 20px;
    border: 1px solid #221c5a;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/*  Enlaces dentro del menú */
nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega .mega-menu li a {
    display: block;
    color: #f9fafb;
    font-weight: 500;

    /* SELECTS  Puedes aumentar o reducir el padding para hacer los ítems más altos o bajos */
    padding: 7px 12px;
    border-radius: 4px;
    text-align: left;
    transition: all 0.3s ease;
}

/* Hover visual Mega manu letras y colores Bacground */
nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega .mega-menu li a:hover {
    color: #ffffff;
    background-color: #f57c00; 
    transform: translateX(3px);
}

/*  Animación de aparición mega manu */
nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega .mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega.show .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ----------------  Responsivo para móviles -------------------- */
@media (max-width: 992px) {
    nav.navbar.bootsnav ul.navbar-nav li.dropdown-mega .mega-menu {
        display: block;
        width: 100%;
        max-width: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
    }

}

/*---------- Termina responsivo para Moviles----------------- */

 .cart-list h6 a{
     font-size: 16px;
     font-weight: 700;
}
 .cart-list h6 a:hover{
     color: #724ab4;
     /* color: #b0b435; */
     
}
 ul.cart-list p .price{
     font-weight: normal;
}
.side-menu p{
	display: inline-block;
}
 .col-menu .title{
     font-size: 20px;
     font-weight: 700;
     /* text-transform: uppercase; */
}

/* Botón de filtrar precio*/
 .hvr-hover{
     display: inline-block;
     vertical-align: middle;
     -webkit-transform: perspective(1px) translateZ(0);
     transform: perspective(1px) translateZ(0);
     box-shadow: 0 0 1px rgba(203, 90, 52, 0);
     position: relative;
    background: #170b80; 
    color: #fffdfd; 
     -webkit-transition-property: color;
     transition-property: color;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
     border-radius: 0;
     box-shadow: none;
}
 .hvr-hover::after {
    content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(211, 98, 17);; 
	border-radius: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
 .hvr-hover:hover::after{
     -webkit-transform: scale(2);
	 transform: scale(2);
     color: #b93a79;
     /* color: #ffffff; */
}
 .hvr-hover{
	 overflow: hidden;
}
 ul.cart-list > li.total > .btn:hover{
    /* colores seleccion de */
     color: #ffffff;
    /* color: #0309ad; */ 
}
 .cart-box{
     margin-top: 40px;
     background: #ffffff;
}
 .main-header.fixed-menu {
     position: fixed;
     visibility: hidden;
     left: 0px;
     top: 0px;
     width: 100%;
     padding: 0px 0px;
     background: #ffffff;
     z-index: 0;
     transition: all 500ms ease;
     -moz-transition: all 500ms ease;
     -webkit-transition: all 500ms ease;
     -ms-transition: all 500ms ease;
     -o-transition: all 500ms ease;
     z-index: 999;
     opacity: 1;
     visibility: visible;
     -ms-animation-name: fadeInDown;
     -moz-animation-name: fadeInDown;
     -op-animation-name: fadeInDown;
     -webkit-animation-name: fadeInDown;
     animation-name: fadeInDown;
     -ms-animation-duration: 500ms;
     -moz-animation-duration: 500ms;
     -op-animation-duration: 500ms;
     -webkit-animation-duration: 500ms;
     animation-duration: 500ms;
     -ms-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
     -op-animation-timing-function: linear;
     -webkit-animation-timing-function: linear;
     animation-timing-function: linear;
     -ms-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
     -op-animation-iteration-count: 1;
     -webkit-animation-iteration-count: 1;
     animation-iteration-count: 1;
}
 .main-header.fixed-menu {
     padding: 0px;
     box-shadow: 0 0 8px 0 rgba(0,0,0,.12);
     border-radius: 0;
}
 .top-search .input-group-addon{
     line-height: 40px;
}
 .top-search input.form-control{
     /* color: #ffffff; */
     color: #c55f11;
}
/*------------------------------------------------------------------ Slider -------------------------------------------------------------------*/
 .cover-slides{
     height: 100vh;
}
 .slides-navigation a {
    /* navegador de nav */
     /* background: #d46220; */
     background: #1e2682f5;
     position: absolute;
     height: 70px;
     width: 70px;
     top: 50%;
     font-size: 20px;
     display: block;
     color: #fff; 
     line-height: 90px;
     text-align: center;
     transition: all .3s ease-in-out;
}
 .slides-navigation a i{
     font-size: 40px;
}
/*  .slides-navigation a:hover {
     background: #f97316;
} */
 .cover-slides .container{
     height: 100%;
     position: relative;
     z-index: 2;
}
 .cover-slides .container > .row {
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}
 .cover-slides .container > .row {
     height: 100%;
}
 .overlay-background {
     background: #333;
     position: absolute;
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
     opacity: 0.5;
}
 .cover-slides h1{
     font-family: 'Poppins', sans-serif;
     font-weight: 500;
     font-size: 63px;
     color: #fff;
}
 .cover-slides p{
     font-size: 18px;
     color: #fff;
     padding-bottom: 30px;
}
 .slides-pagination a{
     border: 2px solid #ffffff;
	 border-radius: 6px;
}
/* Cuadritos de paginacion */
 .slides-pagination a.current{
     background: #fff;
     border: 2px solid #d46220;
}
 .cover-slides p a{
     font-size: 24px;
     color: #ffffff;
     border: none;
     text-transform: uppercase;
     padding: 10px 20px;
}
/*------------------------------------------------------------------ Categories Shop -------------------------------------------------------------------*/
 /* ==========================================================
    CATEGORÍAS Y OFERTAS - FERRETERÍA OMEGA
   ========================================================== */

/*  Contenedor general de categorías */
.categories-shop {
    padding: 50px 0;
    background: #f9fafb; /* fondo claro suave */
}

/* Caja individual de categoría */
.shop-cat-box {
    margin-bottom: 30px;
    position: relative;
    padding: 3px;
    overflow: hidden;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(43, 63, 164, 0.15);
    transition: all 0.3s ease-in-out;
    background: #eceef1;
}

/* Imagen de categoría */
.shop-cat-box img {
    margin: -10px 0 0 -10px;
    width: calc(100% + 10px);
    opacity: 0.9;
    transform: translate3d(10px, 10px, 0);
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.3s ease;
    backface-visibility: hidden;
    border-radius: 10px;
}

/* Hover elegante sobre imagen */
.shop-cat-box:hover img {
    opacity: 0.8;
    transform: translate3d(0, 0, 0);
    filter: brightness(1.05) saturate(1.1); /* más viva, no apagada */
}

/*  Texto sobre la imagen */
.shop-cat-box a {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    border: none;
    color: #eceef1;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 0;
    background: rgba(26, 35, 126, 0.85); /* azul profundo translúcido */
    backdrop-filter: blur(3px);
    letter-spacing: 0.5px;
   /*  text-transform: uppercase; */
    transition: all 0.3s ease;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Hover del texto de categoría */
.shop-cat-box a:hover {
    background: linear-gradient(90deg, #2b3fa4 0%, #5b7bd6 100%);
    color: #f7b267;
}

/* ==========================================================
    SECCIÓN DE MARCAS / OFERTAS
   ========================================================== */
.box-add-products {
    padding: 70px 0;
    background-color: #1a237e; /* azul profundo institucional */
    color: #eceef1;
    text-align: center;
}

/*  Caja de ofertas */
.offer-box {
    position: relative;
    overflow: hidden;
}

/*  Caja de producto destacado Aa */
.offer-box-products {
    box-shadow: 0 4px 12px rgba(136, 155, 250, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    background-color: #eceef1;
}

/* Hover: efecto flotante y resplandor sutil */
.offer-box-products:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(91, 123, 214, 0.25);
    border: 1px solid rgba(247, 178, 103, 0.3); /* sutil acento naranja */
}

/* ==========================================================
    ANIMACIONES SUAVES
   ========================================================== */
.shop-cat-box:hover,
.offer-box-products:hover {
    transition: all 0.35s ease;
    transform: scale(1.02);
}

/*------------------------------------------------------------------ Products -------------------------------------------------------------------*/
 .title-all{
     margin-bottom: 30px;
}
 .title-all h1{
     font-size: 32px;
     font-weight: 700;
     color: #000000;
}
 .title-all p{
     /* color: #999999; */
     color: #ffffffad;
     font-size: 16px;
}
 .products-box{
     padding: 70px 0px;
}
 .special-menu{
     margin-bottom: 40px;
}
 .filter-button-group{
     display: inline-block;
}
/* Filtros de productos inicio y en marcas */
 .filter-button-group button{
     background: #221c5a;
     color: #ffffff;  /* letras de filtro */
     border: none;
     cursor: pointer;
     padding: 5px 30px;
     font-size: 18px;
}
 .filter-button-group button.active{
     background: #f97316;
     /* background: #000000; */
}

 .products-single {
     overflow: hidden;
     position: relative;
     margin-bottom: 30px;
}
 .products-single .box-img-hover{
    height: 200px; /* o la altura que te funcione mejor */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9; /* fondo si la imagen no llena todo */
}
 .box-img-hover img{
    height: 100%;
    width: fit-content;
    object-fit: cover;
}
 .type-lb{
     position: absolute;
     top: 0px;
     right: 0px;
     z-index:8;
}
 .type-lb .sale{
     background: #e07b39;
     color: #ffffff;
     padding: 2px 10px;
     font-weight: 700;
     text-transform: uppercase;
}
 .type-lb .new{
     background: #4f4e4e;
     color: #ffffff;
     padding: 2px 10px;
     font-weight: 700;
    /*  text-transform: uppercase; */
}
 .why-text{
     background: #f5f5f5;
     padding: 15px;
}
 .why-text h4{
     font-size: 16px;
     font-weight: 700;
     padding-bottom: 15px;
}
 .why-text h5{
     font-size: 18px;
     font-family: 'Poppins', sans-serif;
     padding: 4px;
	 display: inline-block;
	 background: #f97316;
	 color: #ffffff;
     font-weight: 600;
}
 .mask-icon{
     width: 100%;
     height: 100%;
     position: absolute;
     overflow: hidden;
     top: 0;
     left: 0;
}
 .mask-icon ul{
     display: inline-block;
	 position: absolute;
	 bottom: 0;
	 right: 0;
}

/* Barra lateral de la mascara */
 .mask-icon ul li{
     background: #d46220; /* Color bacground icons  hover*/
     /* background: #d46220; */
}

/* ----------------Colores de iconos (ver,whatssap)----------- */
 .mask-icon ul li a{
     color: #ffffff; /* color de icono icons */
     padding: 5px 10px;
     display: block;
}
 .mask-icon a.cart{
     background:#d462207a ;
     /* background: #b0b435; */
     position: absolute;
     bottom: 0;
     left: 0px;
     padding: 10px 20px;
     font-weight: 700;
     color: #ffffff;
}
 .mask-icon a.cart:hover{
  /*   mascara  boton (Agregar al carrito en general) */
     background: #d46220;
     color: #ffffff;
}
 .mask-icon ul li a:hover{
     background: #7c431e;/*  */
     color: #ffffff;
}
 .products-single .mask-icon{
     background: rgba(1,1,1, 0.5);
     top: -100%;
     -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
     filter: alpha(opacity=0);
     opacity: 0;
     -webkit-transition: all 0.3s ease-out 0.5s;
     -moz-transition: all 0.3s ease-out 0.5s;
     -o-transition: all 0.3s ease-out 0.5s;
     -ms-transition: all 0.3s ease-out 0.5s;
     transition: all 0.3s ease-out 0.5s;
}
 .products-single:hover .mask-icon{
     -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
     filter: alpha(opacity=100);
     opacity: 1;
     top: 0px;
     -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
     -o-transition-delay: 0s;
     -ms-transition-delay: 0s;
     transition-delay: 0s;
     -webkit-animation: bounceY 0.9s linear;
     -moz-animation: bounceY 0.9s linear;
     -ms-animation: bounceY 0.9s linear;
     animation: bounceY 0.9s linear;
}
 @keyframes bounceY {
     0% {
         transform: translateY(-205px);
    }
     40% {
         transform: translateY(-100px);
    }
     65% {
         transform: translateY(-52px);
    }
     82% {
         transform: translateY(-25px);
    }
     92% {
         transform: translateY(-12px);
    }
     55%, 75%, 87%, 97%, 100% {
         transform: translateY(0px);
    }
}
 @-moz-keyframes bounceY {
     0% {
         -moz-transform: translateY(-205px);
    }
     40% {
         -moz-transform: translateY(-100px);
    }
     65% {
         -moz-transform: translateY(-52px);
    }
     82% {
         -moz-transform: translateY(-25px);
    }
     92% {
         -moz-transform: translateY(-12px);
    }
     55%, 75%, 87%, 97%, 100% {
         -moz-transform: translateY(0px);
    }
}
 @-webkit-keyframes bounceY {
     0% {
         -webkit-transform: translateY(-205px);
    }
     40% {
         -webkit-transform: translateY(-100px);
    }
     65% {
         -webkit-transform: translateY(-52px);
    }
     82% {
         -webkit-transform: translateY(-25px);
    }
     92% {
         -webkit-transform: translateY(-12px);
    }
     55%, 75%, 87%, 97%, 100% {
         -webkit-transform: translateY(0px);
    }
}

/*------------------------------------------------------------------ Blog -------------------------------------------------------------------*/
 .latest-blog{
     padding: 70px 0px;
     background: #f3f4f6;
}
 .blog-box{
     -webkit-box-shadow: 0px 5px 35px 0px #374151;
     box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
     background: #ffffff;
     margin-bottom: 30px;
}
 .blog-content{
     position: relative;
}
 .title-blog{
     padding: 40px 30px 40px 30px;
}
 .title-blog h3{
     font-size: 20px;
     font-weight: 700;
     color: #374151;
}
 .title-blog p{
     margin: 0px;
}
 .option-blog {
     position: absolute;
     bottom: 0px;
     left: 0px;
	 right: 0px;
	 margin: 0 auto;
	 text-align: center;
}
 .option-blog li{
	 display: inline-block;
 }
 .option-blog li a{
     background: #221c5a;
     display: inline-block;
     font-size: 18px;
     color: #ffffff;
     width: 34px;
     height: 34px;
     text-align: center;
     line-height: 34px;
}
 .option-blog li a:hover{
     background: #f97316;
     color: #ffffff;
}
 .tooltip-inner {
     background-color: #f97316;
}
 .tooltip.bs-tooltip-right .arrow:before {
     border-right-color: #f97316 !important;
     padding-top: 0px !important;
     top: 0px !important;
}
 .tooltip.bs-tooltip-left .arrow:before {
     border-left-color: #f97316 !important;
	 padding-top: 0px !important;
	 padding-right: 5px !important;
     top: 0px !important;
}
 .tooltip.bs-tooltip-bottom .arrow:before {
     border-right-color: #f97316 !important;
}
 .tooltip.bs-tooltip-top .arrow:before {
     border-top-color: #f97316 !important;
	 padding-top: 0px !important;
     top: 0px !important;
}
/*------------------------------------------------------- Instagram Feed ---------------------------------------------------*/
 .instagram-box{
     padding: 70px 0px;
     background: url(../images/ins-bg.jpg) no-repeat center center;
     background-size: auto auto;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -ms-background-size: cover;
     -o-background-size: cover;
     background-size: cover;
     position: relative;
}
 .instagram-box::before{
     background: #f3f4f6;
     width: 100%;
     height: 100%;
     left: 0px;
     top: 0px;
     content: "" ;
     position: absolute;
     z-index: 0;
}
 .main-instagram.owl-carousel .owl-nav button.owl-prev{
     background: #000000; /* Boton de detalles producto Sliders abajo de imajen */
     position: absolute;
     z-index: 1;
     display: block;
     height: 100%;
     width: 50px;
     line-height: 0px;
     font-size: 24px;
     cursor: pointer;
     color: #ffffff;
     top: 0;
     padding: 0;
     margin-top: 0;
     opacity: 1;
     left: 0px;
     -webkit-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
 .main-instagram.owl-carousel .owl-nav button.owl-next{
     background: #000000;
     position: absolute;
     z-index: 1;
     display: block;
     height: 100%;
     width: 50px;
     line-height: 0px;
     font-size: 24px;
     cursor: pointer;
     color: #ffffff;
     top: 0;
     padding: 0;
     margin-top: 0;
     opacity: 1;
     right: 0px;
     -webkit-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
 .main-instagram.owl-carousel .owl-nav button.owl-next:hover, .main-instagram.owl-carousel .owl-nav button.owl-prev:hover{
     background: #f97316;
}
 .ins-inner-box{
     position: relative;
}
 .hov-in{
     opacity: 0;
     background: rgba(211,59,51, 0.5);
     bottom: -100%;
     position: absolute;
     width: 100%;
     height: 100%;
     -webkit-transition: all 0.3s ease-out 0.5s;
     -moz-transition: all 0.3s ease-out 0.5s;
     -o-transition: all 0.3s ease-out 0.5s;
     -ms-transition: all 0.3s ease-out 0.5s;
     transition: all 0.3s ease-out 0.5s;
     text-align: center;
     display: table;
}
 .hov-in a{
     display: table-cell;
     vertical-align: middle;
     height: 100%;
}
 .hov-in i{
     color: #000000;
     font-size: 48px;
     position: relative;
     z-index: 2;
}
 .hov-in a i:hover{
     color: #ffffff;
}
 .ins-inner-box:hover .hov-in{
     bottom: 0;
     opacity: 1;
}



/*----------  Inicia Estilos del footer-------------- */
/* ===================================================
   🎨 FOOTER - FERRETERÍA OMEGA
   Paleta Institucional Azul/Naranja
   =================================================== */

:root {
    --omega-blue-deep: #121a77;      /* Azul profundo */
    --omega-blue-bright: #1e2dbf;    /* Azul brillante */
    --omega-orange: #f97316;         /* Naranja principal */
    --omega-orange-soft: #ffe2cc;    /* Naranja claro */
    --white: #ffffff;
    --gray-50: #f9fafc;
}

/* ===================================================
   🔹 CONTENEDOR PRINCIPAL
   =================================================== */
.footer-main {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--omega-blue-deep) 0%, var(--omega-blue-bright) 100%);
    color: var(--white);
    box-shadow: inset 0 6px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--omega-orange);
}

.footer-main hr {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===================================================
   🔸 ESTRUCTURA GENERAL
   =================================================== */
.footer-top-box,
.footer-widget,
.footer-link,
.footer-link-contact {
    margin-top: 10px;
}

/* ===================================================
   🔹 TÍTULOS
   =================================================== */
.footer-top-box h3,
.footer-widget h4,
.footer-link h4,
.footer-link-contact h4 {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    position: relative;
    font-weight: 600;
    opacity: 0.95;
}

.footer-top-box h3::before,
.footer-widget h4::before,
.footer-link h4::before,
.footer-link-contact h4::before {
    content: "";
    border-bottom: 3px solid var(--omega-orange);
    height: 3px;
    width: 35%;
    position: absolute;
    bottom: 3px;
    left: 0;
    border-radius: 2px;
    opacity: 0.9;
}

/* ===================================================
   🔸 LISTA HORARIOS
   =================================================== */
.list-time {
    margin-top: 15px;
}

.footer-top-box .list-time li {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.85;
}

/* ===================================================
   🔸 TEXTOS Y PÁRRAFOS
   =================================================== */
.footer-top-box p,
.footer-widget p {
    color: #d7d9e0;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================================
   🔸 REDES SOCIALES
   =================================================== */
.footer-top-box ul {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-top-box ul li a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.8px solid var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-top-box ul li a:hover {
    color: var(--omega-orange);
    border-color: var(--omega-orange);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.3);
}

/* ===================================================
   🔸 LINKS DE NAVEGACIÓN
   =================================================== */
.footer-link ul {
    padding: 0;
    list-style: none;
}

.footer-link ul li {
    margin-bottom: 6px;
}

.footer-link ul li a {
    color: var(--white);
    display: block;
    line-height: 26px;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease-in-out;
    opacity: 0.85;
}

.footer-link ul li a::before {
    font-family: FontAwesome;
    content: "\f105";
    position: absolute;
    left: 5px;
    line-height: 26px;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
}

.footer-link ul li a:hover {
    color: var(--omega-orange);
    padding-left: 20px;
    opacity: 1;
}

/* ===================================================
   🔸 CONTACTO
   =================================================== */
.footer-link-contact ul {
    list-style: none;
    padding: 0;
}

.footer-link-contact ul li {
    margin-bottom: 8px;
    position: relative;
}

.footer-link-contact ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--omega-orange);
    font-size: 15px;
    opacity: 0.9;
}

.footer-link-contact ul li p {
    padding-left: 25px;
    color: var(--white);
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    opacity: 0.85;
}

.footer-link-contact ul li p a {
    color: #e7e9ed;
    transition: color 0.3s ease;
}

.footer-link-contact ul li p a:hover {
    color: var(--omega-orange);
}

/* ===================================================
   🔸 NEWSLETTER
   =================================================== */
.newsletter-box {
    margin-top: 10px;
    position: relative;
}

.newsletter-box input {
    height: 38px;
    border: none;
    padding: 0 15px;
    border-radius: 4px;
    width: 100%;
    background: var(--gray-50);
    color: #2f2f2f;
    font-size: 14px;
}

.newsletter-box i {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 18px;
    color: var(--omega-blue-bright);
    opacity: 0.8;
}

/* ===================================================
   🔹 FOOTER BOTTOM
   =================================================== */
.footer-bottom {
    background: linear-gradient(180deg, var(--omega-blue-bright) 0%, var(--omega-blue-deep) 100%);
    color: #e5e7eb;
    text-align: center;
    padding: 12px 0;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.2px;
}

/* ===================================================
   🔹 RESPONSIVO
   =================================================== */
@media (max-width: 768px) {
    .footer-top-box ul {
        justify-content: center;
    }

    .footer-link-contact ul li p {
        text-align: center;
        padding-left: 0;
    }

    .footer-top-box h3::before,
    .footer-link h4::before,
    .footer-link-contact h4::before {
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }

    .footer-main {
        padding: 30px 0;
        text-align: center;
    }

    .footer-link ul li a {
        padding-left: 0;
    }
}


/* -------------------------------------Estilos del footer Terminados (Listos) ------------------------------------------------*/


/*------------------------------------------------------------------ Copyright -------------------------------------------------------------------*/
/* ==========================================================
    COPYRIGHT - FERRETERÍA OMEGA (Línea de colores suaves)
   ========================================================== */

.footer-copyright {
    background: linear-gradient(180deg, #e6e7ea 0%, #dfe2e6 100%); /* Gris suave con profundidad */
    padding: 18px 0;
    position: relative;
    border-top: 1px solid rgba(26, 35, 126, 0.15); /* Línea azul suave superior */
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05);
}

.footer-copyright p {
    text-align: center;
    color: #384154; /* Gris azulado sobrio */
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
}

/*  Enlaces */
.footer-copyright p a {
    color: #2b3fa4; /* Azul medio institucional */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Línea sutil decorativa en hover */
.footer-copyright p a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #f7b267; /* Naranja pastel suave */
    transition: width 0.3s ease;
    border-radius: 2px;
}

/*  Efecto Hover */
.footer-copyright p a:hover {
    color: #f7b267; /* Naranja suave, consistente con el footer */
}
.footer-copyright p a:hover::after {
    width: 100%;
}

/*-- Termina estulos de copyright --*/

/* ==========================================================
    SECCIÓN "NOSOTROS" Y SERVICIOS - FERRETERÍA OMEGA
   ========================================================== */

/*  Caja principal del título */
.all-title-box {
    background: url("../images/local/omega3.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 70px 0;
    position: relative;
}

/*  Capa superpuesta con azul oscuro translúcido */
.all-title-box::before {
    background: rgba(26, 35, 126, 0.65); /* azul profundo translúcido */
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/*  Título principal */
.all-title-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f7b267; /* naranja pastel */
    float: left;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

/*  Breadcrumb (migas de pan) */
.all-title-box .breadcrumb {
    background: rgba(43, 63, 164, 0.95); /* azul medio */
    margin: 0;
    display: inline-block;
    border-radius: 6px;
    
    padding: 8px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.all-title-box .breadcrumb li {
    display: inline-block;
    color: #f7b267;
    font-size: 16px;
    font-weight: 500;
}

.all-title-box .breadcrumb li a {
    color: #eceef1; /* blanco suave */
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.all-title-box .breadcrumb li a:hover {
    color: #f7b267; /* naranja pastel */
}
.all-title-box .breadcrumb-item + .breadcrumb-item::before {
    color: #eceef1;
}

/* ==========================================================
    SECCIÓN ABOUT / SERVICIOS
   ========================================================== */
.about-box-main {
    padding: 70px 0;
    background-color: #e6e7ea; /* gris cálido */
}

.noo-sh-title,
.noo-sh-title-top {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a237e; /* azul profundo */
    position: relative;
}

.noo-sh-title::after,
.noo-sh-title-top::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f7b267;
    margin-top: 10px;
}

/*-- Texto general -- */
.about-box-main p {
    padding-bottom: 20px;
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
}

/*  Botones */
.about-box-main a {
    color: #eceef1;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
.about-box-main a.btn {
    padding: 12px 18px;
    border-radius: 30px;
    background-color: #2b3fa4; /* azul medio */
    border: none;
    transition: all 0.3s ease;
}
.about-box-main a.btn:hover {
    background-color: #5b7bd6; /* azul más suave */
    color: #f7b267; /* naranja pastel */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(91, 123, 214, 0.4);
}

/* SERVICIOS*/
.service-block-inner {
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
    background: #eceef1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transform: scale(1);
    cursor: pointer;
    overflow: hidden;
}



/* Línea decorativa superior */
.service-block-inner::before {
    content: "";
    width: 100%;
    height: 4px;
    background: #5b7bd6; /* azul claro */
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

/* Fondo animado cálido */
.service-block-inner::after {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 0;
    background: rgba(247, 178, 103, 0.3); /* naranja pastel suave */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: height 0.5s ease, background 0.4s ease;
}

/* Contenido */
.service-block-inner h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    color: #1a237e;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}
.service-block-inner p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #374151;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Efecto hover */
.service-block-inner:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f9fafb;
}
.service-block-inner:hover::after {
    height: 100%;
    background: rgba(247, 178, 103, 0.35);
}
.service-block-inner:hover h3,
.service-block-inner:hover p {
    color: #1a1a1a; /* gris oscuro visible */
}

/* ==========================================================
    EQUIPO DE TRABAJO
   ========================================================== */
.our-team {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.our-team:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.our-team img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid rgba(43, 63, 164, 0.25);
}
.our-team:hover img {
    opacity: 0.65;
    transform: scale(1.03);
}
.our-team .team-content {
    color: #374151;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(236, 238, 241, 0.95);
    padding-left: 50px;
    width: 100%;
    border-top: 2px solid #5b7bd6;
    transition: all 0.3s ease;
}
.our-team .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a237e;
    border-bottom: 2px solid rgba(247, 178, 103, 0.5);
    display: inline-block;
    padding-bottom: 3px;
}
.our-team .post {
    font-size: 15px;
    color: #9ca3af;
}
.our-team .social {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 35px;
    text-align: center;
    opacity: 0;
    position: absolute;
    bottom: 35px;
    right: 0;
    transition: all 0.3s ease;
}
.our-team:hover .social {
    opacity: 1;
}
.our-team .social li {
    display: block;
}
.our-team .social li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #2b3fa4;
    font-size: 17px;
    color: #eceef1;
    opacity: 0.9;
    border-radius: 50%;
    position: relative;
    transform: translate(35px, -35px);
    transition: all 0.3s ease-in-out;
}
.our-team .social li a:hover {
    background: #f7b267;
    color: #1a237e;
}
.our-team .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #5b7bd6;
    text-align: center;
    color: #eceef1;
    position: absolute;
    bottom: 0;
}
.team-description {
    padding: 20px 0;
    background-color: #e6e7ea;
    border-radius: 0 0 10px 10px;
}
.team-description p {
    font-size: 14px;
    color: #374151;
    margin: 0;
}
.shop-box-inner {
    padding: 70px 0;
}

   /*--------------------------------------------   End section team -------------------------------------------*/



/*-----------------------------------------------  Start SEARCH TOTAL-------------------------------------------*/
/* ==========================================================
    BÚSQUEDA PRINCIPAL - FERRETERÍA OMEGA
   ========================================================== */

.container-search {
    margin-top: 50px;
    border: none;
}

/*  Estilo general del buscador */
.search-products {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Campo de texto elegante */
.search-products input[type="text"] {
    background: #eceef1; /* gris cálido claro */
    border: 2px solid #5b7bd6; /* azul claro institucional */
    border-radius: 30px;
    color: #1a237e; /* azul profundo */
    height: 50px;
    font-weight: 400;
    font-size: 18px;
    padding: 0 60px 0 20px;
    transition: all 0.4s ease;
    width: 100%;
    outline: none;
    box-shadow: 0 3px 8px rgba(43, 63, 164, 0.08);
}

/* Placeholder */
.search-products input::placeholder {
    color: #f7b267; /* naranja pastel */
    opacity: 0.9;
}

/* Efecto al enfocar */
.search-products input:focus {
    border-color: #2b3fa4; /* azul medio */
    background: #f9fafc;
    box-shadow: 0 0 8px rgba(43, 63, 164, 0.2);
}

/*  Botón del buscador */
.search-products button {
    background: #2b3fa4; /* azul medio */
    color: #eceef1;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    cursor: pointer;
    height: 100%;
    width: 20%;
    max-width: 60px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hover en botón */
.search-products button:hover {
    background: #5b7bd6; /* azul claro suave */
    color: #f7b267; /* acento naranja */
    box-shadow: 0 4px 10px rgba(91, 123, 214, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================
   🔹 BUSCADOR INTERNO PEQUEÑO (sidebar o tienda)
   ========================================================== */

.search-product {
    position: relative;
}

.search-product input[type="text"] {
    background: #eceef1;
    border: 2px solid #5b7bd6;
    border-radius: 8px;
    color: #1a237e;
    height: 50px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0 50px 0 15px;
    transition: all 0.4s ease;
    width: 100%;
    outline: none;
}

.search-product input::placeholder {
    color: #f7b267;
    opacity: 0.9;
}

/* Efecto focus */
.search-product input:focus {
    border-color: #2b3fa4;
    background: #f9fafc;
    box-shadow: 0 0 6px rgba(43, 63, 164, 0.2);
}

/* Botón pequeño del buscador */
.search-product button {
    background: #2b3fa4;
    color: #eceef1;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    height: 100%;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

/* Hover del botón */
.search-product button:hover {
    background: #5b7bd6; /* azul claro */
    color: #f7b267;
    box-shadow: 0 3px 8px rgba(91, 123, 214, 0.3);
}

/* ------------------------------------End search producto-Shop---------------------------- */


/*----------------------------------- Start filter producto near sear--------------------------------- */

 .filter-sidebar-left{
     margin-bottom: 20px;
}
 .title-left{
     font-size: 16px;
     border-bottom: 3px solid #1a237e;
     margin-bottom: 20px;
}
 .title-left h3{
     font-weight: 700;
}
 .list-group-item {
     border: none;
     padding: 5px 20px;
     font-size: 14px;
}
 .text-muted {
     padding: 10px 0px;
}
/*--------------------------------------- End search shop-litle---------------------------------------------------- */

/* -------------------------------------------------start litle list-shop -------------------------------------------*/

 .list-group-item[data-toggle="collapse"]::after {
     width: 0;
     height: 0;
     position: absolute;
     top: calc(50% - 12px);
     right: 10px;
     content: '';
     -webkit-transition: top .2s,-webkit-transform .2s;
     transition: top .2s,-webkit-transform .2s;
     transition: transform .2s,top .2s;
     transition: transform .2s,top .2s,-webkit-transform .2s;
     font-family: FontAwesome;
     content: "\f105";
}
 .list-group-tree .list-group-collapse .list-group {
     margin-left: 25px;
     border-left: 1px solid #ced4da;
}
 .list-group-tree .list-group-item.active {
     color: #374151;
     background-color: #fff;
     font-weight: 700;
}
 .list-group-tree .list-group-collapse .list-group > .list-group-item::before {
     position: absolute;
     top: 14px;
     left: 0;
     content: '';
     width: 8px;
     height: 1px;
     background-color: #ced4da;
}
 .list-group-tree .list-group-item:hover {
     color: #f97316;/* sitleList in shop */
     background-color: #fff;
     outline: 0;
     font-weight: 700;
}
 .filter-price-left{
     margin-bottom: 20px;
}
/* ------------------------------------End litle list-shop----------------------------------------- */

/*-------------------------------------- Start slider range ----------------------------------------*/
/* ==========================================================
    SLIDER DE PRECIO - LÍNEA DE COLOR CORPORATIVA
   ========================================================== */

/*  Contenedor del slider */
#slider-range {
    background: linear-gradient(90deg, #121a77, #221c5a); /* Azul profundo degradado */
    border: none;
    border-radius: 50px;
    height: 10px;
    margin-top: 14px;
    width: 100%;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/*  Rango activo (entre los dos manejadores) */
#slider-range .ui-slider-range {
    background: linear-gradient(90deg, #f97316, #fb923c); /* Naranja degradado */
    border-radius: 50px;
    transition: all 0.3s ease;
}

/*  Manejadores (bolitas que se arrastran) */
#slider-range .ui-slider-handle {
    background: linear-gradient(135deg, #1e3a8a, #121a77); /* Azul corporativo */
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    height: 21px;
    width: 21px;
    top: -6px;
    box-shadow: 0 0 8px rgba(18, 26, 119, 0.25);
    transition: all 0.25s ease;
}

/*  Hover y focus en el manejador */
#slider-range .ui-slider-handle:hover,
#slider-range .ui-slider-handle:focus {
    background: linear-gradient(135deg, #f97316, #fb923c); /* Naranja al pasar */
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.45);
    border-color: #fff;
    transform: scale(1.1);
}

/*  Estado activo (cuando se arrastra) */
#slider-range .ui-slider-handle:active {
    background: linear-gradient(135deg, #fb923c, #f97316);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
    transform: scale(1.15);
}
/* --------------- */
 .price-box-slider p{
     clear: both;
     margin-top: 20px;
     display: inline-block;
     width: 100%;
}
 .price-box-slider p input{
     margin-top: 5px;
}
 .price-box-slider p button{
     border: none;
     /* color: #ffffff; */
     color: #221c5a;
     float: right;
}
/* ---------------------------------------------------------End slider range ---------------------------------------*/
 .brand-box {
     display: inline-block;
     width: 100%;
     height: 259px;
     position: relative;
}
 .product-item-filter {
    border-bottom: 1px solid #f97316; 
    border-top: 1px solid #f97316;    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 5px 0;
    background-color: #f9fafb; /* Blanco suave de fondo */
}
 .nice-select.wide{
     width: 75%;
}
 .product-item-filter .toolbar-sorter-right span{
     line-height: 42px;
     padding-right: 15px;
     float: left;
}
 .product-item-filter .toolbar-sorter-right{
     width: 65%;
}
 .toolbar-sorter-right{
     float: left;
}
 .toolbar-sorter-right .bootstrap-select.form-control:not([class*="col-"]){
     width: 77%;
     float: right;
}
 .toolbar-sorter-right .bootstrap-select.btn-group > .dropdown-toggle{
     padding: 0px;
     border-radius: 0px;
     border: none;
}
 .toolbar-sorter-right .bootstrap-select.btn-group .dropdown-toggle .filter-option{
     padding-left: 15px;
}
 .toolbar-sorter-right .btn-light{
     background: #221c5a;
     /* color: #21272f; */
     color: #ffffff;
}
 .toolbar-sorter-right .btn-light:hover{
     background: #f97316;
     border-radius: 0px;
     border: none;
}
 .toolbar-sorter-right .show > .btn-light.dropdown-toggle{
     /* background-color: #b0b435; */
     background-color: #f3f4f6;
}
 .toolbar-sorter-right .bootstrap-select .dropdown-toggle:focus{
     background: #374151;
}
 .toolbar-sorter-right .dropup .dropdown-toggle::after{
     position: absolute;
     right: 15px;
     top: 18px;
}
 .product-item-filter p{
     float: right;
     line-height: 42px;
}
 .product-item-filter .nav-tabs{
     border: none;
     float: right;
}
 .nav > li {
     position: relative;
     display: inline-block;
     vertical-align: middle;
}
/* ==========================================================
    FILTRO DE PRODUCTOS - LÍNEA DE COLOR CORPORATIVA
   ========================================================== */
.product-item-filter li .nav-link {
    border: 2px solid transparent;
    border-radius: 6px;
    color: #f97316; /* naranja principal */
    font-size: 17px;
    padding: 6px 14px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s ease;
}

/*  Estado activo (seleccionado) */
.product-item-filter li .nav-link.active {
    background: linear-gradient(135deg, #f97316, #fb923c); /* degradado naranja */
    border: 2px solid #f97316;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.25);
}

/*  Hover suave con azul corporativo */
.product-item-filter li .nav-link:hover {
    background: linear-gradient(135deg, #121a77, #1e3a8a); /* azul profundo */
    border: 2px solid #121a77;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(18, 26, 119, 0.25);
    transform: translateY(-1px);
}

/*  Transición visual más fluida */
.product-item-filter li .nav-link:active {
    transform: translateY(0);
    box-shadow: none;
}
 .product-categori{
     margin-bottom: 30px;
}
 .product-categorie-box{
     margin-top: 20px;
}
 .tab-content, .tab-pane{
     width: 100%;
}
 .why-text.full-width h4 {
     font-size: 24px;
     font-weight: 700;
     padding-bottom: 15px;
}
 .why-text.full-width h5 del{
     font-size: 13px;
     color: #666;
}
 .why-text.full-width h5{
     color: #000000;
     font-weight: 700;
}
 .why-text.full-width p{
     padding-bottom: 20px;
}
 .why-text.full-width a{
     padding: 10px 20px;
     font-weight: 700;
     color: #ffffff;
     border: none;
}
 .list-view-box{
     margin-bottom: 30px;
}
 .list-view-box:hover .mask-icon{
     -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
     filter: alpha(opacity=100);
     opacity: 1;
     top: 0px;
     -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
     -o-transition-delay: 0s;
     -ms-transition-delay: 0s;
     transition-delay: 0s;
     -webkit-animation: bounceY 0.9s linear;
     -moz-animation: bounceY 0.9s linear;
     -ms-animation: bounceY 0.9s linear;
     animation: bounceY 0.9s linear;
}
 .cart-box-main{
     padding: 70px 0px;
}
 .table-main table thead{
     background: #f97316;
     color: #ffffff;
}
 .table-main .table thead th{
     font-size: 18px;
}
 .table-main table td.thumbnail-img{
     width: 120px;
}
 .table-main table td{
     vertical-align: middle;
     font-size: 16px;
}
 .quantity-box input{
     width: 60px;
     border: 2px solid #000000;
     text-align: center;
}
 .quantity-box input:focus{
     border-color: #f97316;
}
 .name-pr a{
     font-weight: 700;
     font-size: 18px;
     color: #000000;
}
 .remove-pr{
     text-align: center;
}
 .coupon-box .input-group .form-control {
     min-height: 50px;
     border-radius: 0px;
     font-weight: 400;
     border: 1px solid #e8e8e8;
     box-shadow: none !important;
}
 .coupon-box .input-group .form-control::-moz-placeholder{
     color: #000000;
}
 .coupon-box .input-group .input-group-append .btn-theme {
     background: #000000;
     color: #ffffff;
     border: none;
     border-radius: 0px;
     font-size: 16px;
     padding: 0px 20px;
}
 .coupon-box .input-group .input-group-append .btn-theme:hover {
     background: #f97316;
}
 .update-box input[type="submit"]{
     background: #000000;
     border: medium none;
     border-radius: 0;
     -webkit-box-shadow: none;
     box-shadow: none;
     color: #fff;
     display: inline-block;
     cursor: pointer;
     font-size: 16px;
     font-weight: 500;
     height: 50px;
     line-height: 40px;
     margin-right: 15px;
     padding: 0 20px;
     text-shadow: none;
     text-transform: uppercase;
     -webkit-transition: all 0.3s ease 0s;
     transition: all 0.3s ease 0s;
     white-space: nowrap;
     width: inherit;
}
 .update-box input[type="submit"]:hover{
     background: #b43535;
}
 .order-box h3{
     font-size: 16px;
     color: #222222;
     font-weight: 700;
}
 .order-box h4 {
     font-size: 16px;
     padding: 0px;
     line-height: 35px !important;
}
 .order-box .font-weight-bold{
     font-size: 18px;
}
 .gr-total h5 {
     font-weight: 700;
     color: #f97316;
     font-size: 18px;
     margin: 0px;
     padding: 0px;
     line-height: 35px !important;
}
 .gr-total .h5{
     margin: 0px;
     font-weight: 700;
     line-height: 35px;
}
 .my-account-box-main{
     padding: 70px 0px;
}
 .shopping-box a{
     font-size: 18px;
     color: #ffffff;
     border: none;
     padding: 10px 20px;
}
 .payment-icon {
     display: inline-block;
     padding: 10px 0px;
}
 .payment-icon ul li {
     width: 20%;
     float: left;
}
 .needs-validation label {
     font-size: 16px;
     margin-bottom: 0px;
     line-height: 24px;
}
 .needs-validation .form-control {
     min-height: 40px;
     border-radius: 0px;
     border: 1px solid #e8e8e8;
     box-shadow: none !important;
     font-size: 14px;
}
 .needs-validation .form-control:focus {
     border: 1px solid #f97316 !important;
}
 .review-form-box .form-control{
     min-height: 40px;
     border-radius: 0px;
     border: 1px solid #e8e8e8;
     box-shadow: none !important;
     font-size: 14px;
}
 .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
     background-color: #f97316;
     box-shadow: none;
}
 .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
     background-color: #f97316;
     box-shadow: none;
}
 .new-account-login h5 {
     font-size: 18px;
     color: #111111;
     font-weight: 600;
}
 .new-account-login h5 a:hover{
     color: #f97316;
}
 .review-form-box button{
     padding: 10px 20px;
     color: #ffffff;
     font-size: 18px;
     border: none;
}
 .wide.w-100{
     min-height: 40px;
     border: 1px solid #e8e8e8;
}
 .wide.w-100 option{
     min-height: 40px;
}
 .custom-control-input:focus ~ .custom-control-label::before{
     box-shadow: none;
}
 .odr-box a {
     font-size: 18px;
     color: #111111;
     font-weight: 700;
}
 .account-box{
     text-align: center;
     background: #ffffff;
     padding: 30px;
     border: 1px solid #000000;
}
 .bottom-box {
     border-top: 1px solid #eee;
     margin-bottom: 30px;
     margin-top: 30px;
     padding-top: 15px;
}
 .bottom-box .account-box {
     min-height: 205px;
}
 .account-box {
     border: 2px solid #000000;
     margin-top: 15px;
}
 .my-account-page a{
     color: #000000;
}
 .my-account-page a:hover{
     color: #ae0cd3;
}
 .service-icon i{
     font-size: 34px;
}

 .service-desc p{
     font-size: 16px;
}
 .service-desc h4{
     text-decoration: underline;
     font-size: 18px;
     font-weight: 700;
}
 .service-icon a{
     background: rgba(0, 0, 0, 0.9);
     -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
     -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
     transition: transform ease-out 0.1s, background 0.2s;
}
 .service-icon a{
     display: inline-block;
     font-size: 0px;
     cursor: pointer;
     margin: 15px 0px;
     width: 90px;
     height: 90px;
     line-height: 110px;
     border-radius: 50%;
     text-align: center;
     position: relative;
     z-index: 1;
     color: #ffffff;
}
 .service-icon a::after {
     pointer-events: none;
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     content: '';
     -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
     box-sizing: content-box;
     content: "";
     top: 0;
     left: 0;
     padding: 0;
     z-index: -1;
     box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
     opacity: 0;
     -webkit-transform: scale(0.9);
     -moz-transform: scale(0.9);
     -ms-transform: scale(0.9);
     transform: scale(0.9);
}
 .service-icon a:hover::after{
     -webkit-animation: sonarEffect 1.3s ease-out 75ms;
     -moz-animation: sonarEffect 1.3s ease-out 75ms;
     animation: sonarEffect 1.3s ease-out 75ms;
}
 .service-icon a:hover{
     background: rgb(29, 29, 29);
     -webkit-transform: scale(0.93);
     -moz-transform: scale(0.93);
     -ms-transform: scale(0.93);
     transform: scale(0.93);
     color: #fff;
}
 @-webkit-keyframes sonarEffect {
     0% {
         opacity: 0.3;
    }
     40% {
         opacity: 0.5;
         box-shadow: 0 0 0 2px rgba(0, 53, 68, 0.1), 0 0 10px 10px #4c4d25, 0 0 0 10px rgba(0, 53, 68, 0.5);
    }
     100% {
         box-shadow: 0 0 0 2px rgba(0, 53, 68, 0.1), 0 0 10px 10px #b0b435, 0 0 0 10px rgba(0, 53, 68, 0.5);
         -webkit-transform: scale(1.5);
         opacity: 0;
    }
}
 @-moz-keyframes sonarEffect {
     0% {
         opacity: 0.3;
    }
     40% {
         opacity: 0.5;
         box-shadow: 0 0 0 2px rgba(0, 53, 68, 0.1), 0 0 10px 10px #b0b435, 0 0 0 10px rgba(0, 53, 68, 0.5);
    }
     100% {
         box-shadow: 0 0 0 2px rgba(0, 53, 68, 0.1), 0 0 10px 10px #b0b435, 0 0 0 10px rgba(0, 53, 68, 0.5);
         -moz-transform: scale(1.5);
         opacity: 0;
    }
}
 @keyframes sonarEffect {
     0% {
         opacity: 0.3;
    }
     40% {
         opacity: 0.5;
         box-shadow: 0 0 0 2px rgba(0, 53, 68, 0.1), 0 0 10px 10px #b0b435, 0 0 0 10px rgba(0, 53, 68, 0.5);
    }
     100% {
         box-shadow: 0 0 0 2px rgba(0, 53, 68, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(0, 53, 68, 0.5);
         transform: scale(1.5);
         opacity: 0;
    }
}
 .add-pr a{
     padding: 10px 20px;
     font-weight: 700;
     color: #ffffff;
     border: none;
}

/* ------------------------------------------------------------------- */
 .wishlist-box-main{
     padding: 70px 0px;
}
 .services-box-main{
     padding: 70px 0px;
}
 .contact-box-main{
     padding: 70px 0px;
}
.contact-info-left {
    position: relative;
    padding: 20px;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), 
        url(../images/local/omega1.png) no-repeat center;
    background-size: cover;
    background-position: center;
    color: #1e1e1e;
}
 .contact-info-left h2{
     font-size: 22px;
     font-weight: 700;
}
 .contact-info-left p{
     margin-bottom: 15px;
}
 .contact-info-left ul li{
     margin-bottom: 12px;
}

/* Linea de colores abajo */
 /* ==========================================================
   📞 SECCIÓN DE CONTACTO - FERRETERÍA OMEGA
   ========================================================== */

.contact-info-left ul li p {
    font-size: 16px;
    color: #374151; /* gris oscuro suave */
    font-weight: 400;
    padding-right: 16px;
    padding-left: 28px;
    line-height: 24px;
    position: relative;
    transition: all 0.3s ease;
}
.contact-info-left ul li p:hover {
    color: #1a237e; /* azul profundo al hover */
}

.contact-info-left ul li p i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #f7b267; /* naranja pastel sutil */
    font-size: 18px;
    transition: color 0.3s ease;
}
.contact-info-left ul li p i:hover {
    color: #2b3fa4; /* azul medio */
}

.contact-info-left ul li p a {
    color: #2b3fa4;
    transition: color 0.3s ease;
}
.contact-info-left ul li p a:hover {
    color: #f7b267; /* acento cálido */
}

/* 🔹 Formulario de contacto */
.contact-form-right {
    padding: 25px;
    background: #f9fafb; /* fondo cálido suave */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.08);
}
.contact-form-right h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}
.contact-form-right p {
    margin-bottom: 15px;
    color: #374151;
}

.contact-form-right .form-group {
    margin-bottom: 30px;
    position: relative;
}
.contact-form-right .form-group .form-control {
    border-radius: 6px;
    min-height: 42px;
    border: 1px solid rgba(91, 123, 214, 0.4);
    background: #ffffff;
    color: #1a237e;
    font-size: 15px;
    transition: all 0.3s ease;
}
.contact-form-right .form-group .form-control:focus {
    border: 1px solid #2b3fa4;
    box-shadow: 0 0 8px rgba(91, 123, 214, 0.3);
    outline: none;
}
.contact-form-right .form-group .form-control::-moz-placeholder {
    color: #9ca3af;
    opacity: 1;
}

/*  Botón de envío */
.submit-button button {
    padding: 10px 25px;
    font-weight: 700;
    color: #f9fafb;
    background: linear-gradient(90deg, #2b3fa4 0%, #1a237e 100%);
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.submit-button button:hover {
    background: #f7b267;
    color: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(247, 178, 103, 0.4);
}

/* Mensaje de error */
.help-block.with-errors {
    position: absolute;
    right: 0;
    background: #e36414; /* naranja sobrio */
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
}
.help-block ul li {
    color: #ffffff;
}

/* ==========================================================
    DETALLE DE PRODUCTO - SLIDER Y VISUAL
   ========================================================== */

.shop-detail-box-main {
    padding: 70px 0px;
    background: #f9fafb;
}

.single-product-slider .carousel-control-prev,
.single-product-slider .carousel-control-next {
    bottom: auto;
    width: 6%;
    padding: 10px 0;
    background-image: none;
    top: 40%;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.single-product-slider .carousel-control-prev {
    background: rgba(26, 35, 126, 0.9); /* azul profundo translúcido */
}
.single-product-slider .carousel-control-next {
    background: rgba(26, 35, 126, 0.9);
}
.single-product-slider .carousel-control-prev:hover,
.single-product-slider .carousel-control-next:hover {
    background: #f7b267; /* naranja pastel al hover */
    color: #1a237e;
}

.single-product-slider .carousel-indicators {
    position: relative;
    bottom: 0;
    background: #2b3fa4;
    border-radius: 6px;
    padding: 6px;
}

.single-product-slider .carousel-indicators li img {
    opacity: 0.6;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.single-product-slider .carousel-indicators li.active img {
    opacity: 1;
    border: 2px solid #f7b267; /* acento naranja */
}
.single-product-slider .carousel-indicators li {
    width: 30%;
    height: 100%;
    cursor: pointer;
}

/* ----------------Linea de colores si abajo */
/* ==========================================================
    DETALLES DE PRODUCTO - FERRETERÍA OMEGA
   ========================================================== */

.single-product-details h2 {
    color: #1a237e; /* Azul profundo institucional */
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.single-product-details h5 {
    color: #f7b267; /* Naranja pastel cálido */
    font-weight: 700;
    font-size: 18px;
    margin-top: 8px;
}

.single-product-details h5 del {
    font-size: 13px;
    color: #b91c1c; /* Rojo suave para precios tachados */
    opacity: 0.8;
}

.available-stock span {
    font-size: 15px;
    color: #374151; /* Gris oscuro legible */
    font-weight: 500;
}

.available-stock span a {
    color: #2b3fa4; /* Azul medio */
    font-weight: 600;
    transition: color 0.3s ease;
}
.available-stock span a:hover {
    color: #f7b267; /* Naranja pastel al hover */
}

.single-product-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    color: #1a237e; /* Azul profundo */
}

.single-product-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #374151; /* Gris oscuro suave */
    line-height: 1.6;
}

/* 🔸 Caja de información (especificaciones) */
.single-product-details ul {
    display: inline-block;
    width: 100%;
    border: 1px dashed #5b7bd6; /* Azul claro sutil */
    background: #f9fafb; /* Fondo blanco cálido */
    margin-bottom: 30px;
    border-radius: 6px;
    padding: 10px 0;
    transition: all 0.3s ease;
}
.single-product-details ul:hover {
    border-color: #f7b267; /* Acento naranja en hover */
}

.single-product-details ul li {
    width: 50%;
    float: left;
    padding: 6px 15px;
    color: #1a237e;
    font-weight: 500;
}

/* 🔹 Selector de talla / estilo */
.size-st .bootstrap-select > .dropdown-toggle.btn-light {
    background: #2b3fa4; /* Azul medio */
    border: none;
    border-radius: 8px;
    color: #f9fafb;
    font-weight: 600;
    transition: all 0.3s ease;
}
.size-st .bootstrap-select > .dropdown-toggle.btn-light:hover {
    background: #1a237e; /* Azul profundo al hover */
    color: #f7b267; /* Acento naranja */
}

/* 🔸 Input de cantidad */
.quantity-box input {
    width: 100%;
    border: 1px solid rgba(91, 123, 214, 0.4); /* Azul claro */
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 15px;
    color: #1a237e;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}
.quantity-box input:focus {
    border-color: #5b7bd6;
    box-shadow: 0 0 6px rgba(91, 123, 214, 0.3);
    outline: none;
}


/*------------------------ posible botones details (si)-------------------------------*/
 /* ==========================================================
   💲 CAJA DE PRECIO Y BOTONES DE PRODUCTO - FERRETERÍA OMEGA
   ========================================================== */

.price-box-bar {
    margin-bottom: 30px;
}

/* 🔹 Botones principales (Agregar, Comprar, etc.) */
.price-box-bar a {
    padding: 10px 20px;
    font-weight: 700;
    color: #f9fafb;
    background: linear-gradient(90deg, #2b3fa4 0%, #1a237e 100%);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-box-bar a:hover {
    background: #f7b267;
    color: #1a237e;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(247, 178, 103, 0.4);
}

/*  Botones de acciones adicionales */
.add-to-btn .add-comp {
    float: left;
}
.add-to-btn .share-bar {
    float: right;
}

.add-comp a {
    padding: 10px 20px;
    font-weight: 700;
    color: #f9fafb;
    background: #2b3fa4; /* azul medio */
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.add-comp a:hover {
    background: #f7b267; /* naranja pastel */
    color: #1a237e;
}

/*  Botones de compartir */
.share-bar a {
    background: #f7b267;
    color: #1a237e;
    padding: 6px 10px;
    display: inline-block;
    width: 34px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}
.share-bar a:hover {
    background: #2b3fa4;
    color: #f9fafb;
    transform: translateY(-2px);
}

/*  Navegación de productos destacados */
.featured-products-box .owl-nav {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -20px;
    text-align: center;
}
.featured-products-box .owl-nav button.owl-prev,
.featured-products-box .owl-nav button.owl-next {
    background: #1a237e;
    color: #f9fafb;
    width: 38px;
    height: 38px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
}
.featured-products-box .owl-nav button.owl-prev:hover,
.featured-products-box .owl-nav button.owl-next:hover {
    background: #f7b267;
    color: #1a237e;
    transform: scale(1.1);
}

/*  Tablas */
.table-responsive .table td,
.table-responsive .table th {
    vertical-align: middle;
    white-space: nowrap;
    color: #374151;
    border-color: rgba(91, 123, 214, 0.2);
}

/*  Botones secundarios dentro de cards */
.card-outline-secondary .card-body a {
    color: #f9fafb;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 25px;
    background: #2b3fa4;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.card-outline-secondary .card-body a:hover {
    background: #f7b267;
    color: #1a237e;
    transform: translateY(-3px);
}



/* ============================================================
      SECCIÓN: CARRUSELES DE PRODUCTOS
      Descripción: Estilos visuales globales para carousels.
   ============================================================ */

/* Título */
.title_carousel h1 {
    color: #2b3fa4;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Ítems del carrusel */
.products-single {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.products-single:hover img {
    transform: scale(1.07);
}

/* Capa de acciones (hover icons) */
.mask-icon {
    background: rgba(18, 26, 119, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-single:hover .mask-icon {
    opacity: 1;
}


/* Le damos color a los iconos de ver, whatsapp */
.mask-icon ul li a {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    /* border-radius: 50%;*/
    padding: 8px; 
    transition: background 0.3s ease;
}

.mask-icon ul li a:hover {
    background: #f97316;
    color: #fff;
}

/* Botón agregar al carrito */
.cart {
    display: inline-block;
    margin-top: 10px;
    background: #f97316;
    color: #fff;
    font-weight: 600;
    padding: 8px 17.6px;
    transition: background 0.3s ease;
}

.cart:hover {
    background: #ff8f3f;
    text-decoration: none;
}

/* Información del producto */
.why-text h4 {
    font-size: 1rem;
    color: #121a77;
    margin-bottom: 5px;

    /*  */
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* ✅ limita el texto a 2 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;         /* Permite saltos de línea */
    min-height: 45px;   
}

.why-text h5 {
    color: #f2f3f5;
    font-weight: 700;
}

/* Botones de navegación */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: rgba(249, 115, 22, 0.85);
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: #ff8f3f;
}

/* Puntos de navegación */
.owl-dots .owl-dot span {
    background: #fff;
    border: 2px solid #f97316;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: #f97316;
    transform: scale(1.2);
}



/* Transiciones de carousel, Suaviza el desvanecido entre slides */
.carousel-fade .carousel-item {
    transition: opacity 1.2s ease-in-out;
}

/*  Pequeño zoom sutil para dar dinamismo */
.carousel-fade .carousel-item.active img {
    transform: scale(1.02);
    transition: transform 1.2s ease-in-out;
}
