/*
Theme Name: Tema Comercial Daher
Author: Rodrigo Berroeta (Agencia iTango)
Author URI: https://www.itangodigital.cl
Description: Plantilla desarrollada para proyecto web Comercial Daher. Agencia iTango
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Colors Black: #111111;
Colors Main: #0e9eff;
Colors Amarillo: #ffa50d;
*/
:root {
    --color-primario: #011b44;
    --color-secundario: #ec0106;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    background-color: #f9f9f9;
    font-family: 'Rubik', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.btn.btnTrustus,
.woocommerce .box_checkout button#place_order,
.productos_gral_trustus .button.add_to_cart_button.ajax_add_to_cart {
    background: var(--color-primario);
    border: 0;
    color: #fff;
    padding: 10px 20px;
    min-width: 200px;
    border-radius: 5px;
    transition: all .4s ease;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
}

.btn.btnTrustus.btnNBudnik {
    background: #0e9eff;
}

.btnTrustus:hover {
    color: #fff;
    background: #74bc1e;
}

.btn.btnTrustus.outlined {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    min-width: 200px;
    border-radius: 5px;
    transition: all .4s ease;
    font-size: 12px;
    text-transform: uppercase;
}

.btn.btnTrustus.outlined:hover {
    background: #fff;
    color: #111;
}

.btn.btnTrustus:hover {
    background: #272d34;
    color: #fff;
}

.btn.btnTrustus.btnIcono {
    position: relative;
    border-radius: 50px;
    text-align: none;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-width: inherit;
    /* max-width: 180px; */
    padding: 5px 5px 5px 20px;
    font-weight: 600;
    background-color: var(--color-primario);
    color: #fff;
    font-size: 16px;
    text-transform: none;
}

.btn.btnTrustus.btnIcono::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    font-weight: 900;
    transform: rotate(-45deg);
    background-color: #0c1e21;
    color: #fff;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease-in-out;
}

.btn.btnTrustus.btnIcono:hover::after {
    transform: rotate(0);
}

.btn.btnTrustus.btnIconoText {
    position: relative;
    border-radius: 50px;
    text-align: none;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-width: inherit;
    /* max-width: 180px; */
    padding: 5px 5px 5px 20px;
    font-weight: 600;
    background-color: transparent;
    color: #0c0c0c;
    font-size: 16px;
    text-transform: none;
}

.btn.btnTrustus.btnIconoText::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    font-weight: 900;
    transform: rotate(-45deg);
    background-color: var(--color-primario);
    color: #fff;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease-in-out;
}

.btn.btnTrustus.btnIconoText:hover {
    background-color: #0c0c0c;
    color: var(--color-primario);
}

.btn.btnTrustus.btnIconoText:hover::after {
    transform: rotate(0);
}

.btns_flex,
.btn_flex {
    display: flex;
    gap: 15px;
}

.flex_center {
    align-items: center;
    justify-content: center;
}

.tit-span-naranja span {
    color: #0e9eff;
    display: block;
    line-height: 1;
    font-size: 20px;
}

.bajada_tit_ppal span {
    display: Block;
    line-height: 1;
    font-size: 25px;
    font-weight: 400;
    color: #ffa50d;
}

.btnes_flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flex_center {
    justify-content: center;
}

/** HEADER ***/

.topbar {
    background: var(--color-primario);
    padding: 5px 0;
    /* margin-bottom: 10px; */
}

.info_topbar {
    display: flex;
    gap: 15px;
}

.txt_topbar {
    font-size: 13px;
}

.icono_topbar {
    color: var(--color-primario);
    background-color: #fff;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 11px;
}

.txt_topbar a,
.txt_topbar {
    color: #fff;
    text-decoration: none;
}

.topbar_menu .topbar_menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar_menu .topbar_menu__list li {
    margin: 0;
    padding: 0;
}

.topbar_menu .topbar_menu__list a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
    display: inline-block;
    transition: opacity .2s ease;
    text-transform: uppercase;
}

.topbar_menu .topbar_menu__list a:hover,
.topbar_menu .topbar_menu__list .current-menu-item > a {
    opacity: .75;
}

@media (max-width: 768px) {
    .topbar_menu .topbar_menu__list {
        justify-content: flex-start;
        gap: 12px;
    }
}

/* Topbar en móvil/tablet: ocultar el menú y centrar la dirección. */
@media (max-width: 991.98px) {
    .topbar .topbar_menu {
        display: none !important;
    }

    .topbar .row {
        justify-content: center !important;
    }

    .topbar .info_topbar {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .topbar .info_topbar .txt_topbar,
    .topbar .info_topbar .txt_topbar a {
        text-align: center;
    }
}

.cabecera_ppal {
    position: sticky;
    width: 100%;
    top: 0;
    background: #fff;
    padding: 0;
    transition: all .3s ease;
    z-index: 10;
    margin-bottom: 0px;
    border-bottom: 1px solid #ecedf3;
}

.cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    padding: 5px;
    background: transparent;
}

.cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 7px 20px 7px 40px;
    background-color: #f7f8fe;
    border: 1px solid #ecedf3;
    color: var(--color-primario, #011b44);
    font-size: 15px;
    min-width: 300px;
}

.cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
    color: #6b7280;
}

.cabecera_ppal .dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path {
    fill: var(--color-primario, #011b44) !important;
}

/* body.home .cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    background-color: #ffffffba;
} */


.cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    top: 10px;
    left: 13px;
}

.logo {
    position: relative;
    margin: 7px 0;
    display: flex;
    justify-content: center;
}

.logo a {
    /* position: absolute;
    bottom: 0;
    left: 0; */
}

.logo img,
.woocommerce .logo img {
    max-width: 170px;
    filter: none;
}

.boxes_head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 85%;
    float: right;
    gap: 15px;
    padding: 10px 0;
}

.boxes_head.head_dir {
    float: left;
    justify-content: flex-start;
    padding-left: 15px;
}

.box_head {
    display: flex;
    gap: 15px;
    /* width: 100%; */
    align-items: center;
    justify-content: flex-end;
}

.box_head .icon {
    background: #0e9eff45;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #0e9eff;
}

.box_head .info_box h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.box_head .info_box h3 a {
    color: #111;
    text-decoration: none;
}

.box_head .info_box p {
    font-size: 12px;
    margin: 0;
    color: #111111a3;
}

.content_menu_ppal {
    background-color: #0e9eff;
    width: 100%;
    padding: 6px 0;
}

.menu_principal {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 0 20px;
}

.menu_principal .menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    height: 100%;
    font-family: 'Rubik', sans-serif;
}

.menu_principal .menu li,
.menu_principal .htmega-menu-container ul li {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu_principal .menu li a,
.menu_principal .htmega-menu-container ul li a {
    color: var(--color-primario, #011b44);
    text-decoration: none;
}

.menu_principal .menu li a:hover,
.menu_principal .htmega-menu-container ul li a:hover {
    color: var(--color-secundario, #ec0106);
}

.menu_principal .btnBudnik,
.menu_principal .btnTrustus,
.menu_principal .btn.btnOutlineVerde {
    min-width: 150px;
}

/* ====== Item destacado del menú (clase: menu_oferta) ======
   Pill rojo con icono y pulso sutil para llamar la atención. */
.menu_principal .menu li.menu_oferta,
.menu_principal .htmega-menu-container ul li.menu_oferta {
    height: auto;
    align-self: center;
}

.menu_principal .menu li.menu_oferta>a,
.menu_principal .htmega-menu-container ul li.menu_oferta>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--color-secundario, #ec0106);
    color: #fff !important;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    box-shadow: 0 6px 18px -6px rgba(236, 1, 6, .55);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.menu_principal .menu li.menu_oferta>a::before,
.menu_principal .htmega-menu-container ul li.menu_oferta>a::before {
    content: "\f06d";
    /* fa-fire */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    color: #ffd54a;
    animation: menu-oferta-flicker 1.6s ease-in-out infinite;
}

.menu_principal .menu li.menu_oferta>a:hover,
.menu_principal .htmega-menu-container ul li.menu_oferta>a:hover {
    color: #fff !important;
    background: #c20005;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -6px rgba(236, 1, 6, .7);
}

/* Halo pulsante que rodea el botón */
.menu_principal .menu li.menu_oferta>a::after,
.menu_principal .htmega-menu-container ul li.menu_oferta>a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(236, 1, 6, .55);
    animation: menu-oferta-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes menu-oferta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 1, 6, .55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(236, 1, 6, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 1, 6, 0);
    }
}

@keyframes menu-oferta-flicker {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: .85;
    }
}

/* Versión mobile (menu_movil del offcanvas) */

/* Asegura que el offcanvas haga scroll cuando el menú no cabe en pantalla.
 * Bootstrap pone overflow-y:auto por default en .offcanvas-body, pero a
 * veces algún padre con overflow:hidden o un grid interno rompe el
 * cálculo de altura, por eso lo dejamos explícito. */
.offcanvas#offcanvasRight {
    height: 100% !important;
    max-height: 100vh !important;
}

.offcanvas#offcanvasRight .offcanvas-body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    min-height: 0;
}

.menu_movil__seccion + .menu_movil__seccion {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.menu_movil__titulo {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-primario, #0a1f44);
    opacity: .65;
    padding: 0 10px 6px;
    margin: 0;
}

.menu_movil .menu li.menu_oferta {
    border-bottom: 0 !important;
    margin: 8px 0;
    padding: 0 10px !important;
}

.menu_movil .menu li.menu_oferta>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--color-secundario, #ec0106);
    color: #fff !important;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 6px 18px -6px rgba(236, 1, 6, .55);
}

.menu_movil .menu li.menu_oferta>a::before {
    content: "\f06d";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    color: #ffd54a;
}

/** SUBMENU **/
.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    width: 270px;
    background: var(--color-primario);
    padding: 0 10px;
    list-style: none;
    height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.menu-item-has-children:hover .sub-menu {
    padding: 10px 10px 0;
    height: auto;
}

.menu-item-has-children::after {
    content: "\f078";
    font-size: 8px !important;
    margin-left: 6px;
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    font-weight: 900;
    color: var(--color-primario, #011b44);
    margin-bottom: 3px;
}


.menu-item-has-children .sub-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 25px;
    width: 0;
    height: 0;
    border-right: 9px solid transparent;
    border-top: 12px solid #0c0c0c;
    border-left: 9px solid transparent;
}

.menu-item-has-children .sub-menu li {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    padding: 7px;
    border-bottom: 1px solid #eaeaea29;
}

.box_head .dgwt-wcas-ico-magnifier-handler {
    fill: var(--color-primario, #011b44);
    height: 21px;
    width: 21px;
    max-width: 21px;
}

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

.carritoComprasHead .menu li a {
    text-decoration: none;
    color: var(--color-primario, #011b44);
}

.carritoComprasHead .woofc-menu-item .woofc-menu-item-inner {
    display: flex;
    align-items: flex-end;
}


.carritoComprasHead .woofc-menu-item .woofc-menu-item-inner i {
    font-size: 24px;
    width: 100%;
    color: var(--color-primario, #011b44);
}

.carritoComprasHead .woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

.carritoComprasHead .woofc-menu-item .woofc-menu-item-inner:after {
    left: 19px;
    top: 0;
    background-color: #891b1c;
}

.btnes_head {
    display: flex;
    gap: 20px;
    align-items: center;
}

/** MEGAMENU **/
.menu_principal .htmega-menu-container ul {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}

.htmegamenu-content-wrapper.sub-menu {
    top: 0px !important;
    padding: 20px 10px 10px !important;
}

.htmega_mega_menu,
.htmega-megamenu,
.desktop_head .row .col-sm:first-of-type {
    position: unset !important;
}

/* .htmega_mega_menu:hover::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
} */

.menu_principal .htmega-megamenu .htmegamenu-content-wrapper {
    width: 100%;
    box-shadow: none;
    top: 55px !important;
}

.menu_principal .htmegamenu-content-wrapper.sub-menu {
    width:100%;
}

.menu_principal .htmega-menu-container ul li .htmegamenu-content-wrapper li a {
    display:flex;
}

.menu_principal .htmega-menu-container .sub-menu li a {
    border-bottom:0;
}

.menu_principal .list_megamenu ul li:last-of-type a .elementor-icon-list-text {
    color: var(--color-secundario) !important;
}

.prod_dest_menu {}

.menu_mega_ppal .boxes_home_cats h3 a {
    color: #fff !important;
}

.cabecera_ppal:has(li.htmega_mega_menu:hover) {
    background-color: #fff;
}

.menu_principal .menu,
.menu_principal .htmega-menu-container ul.product_list_widget {
    height: auto;
    text-transform: none;
}

.htmegamenu-content-wrapper .product_list_widget li a img {
    width: 60px;
}

.htmega-menu-container .sub-menu li .menu_mega_ppal a {
    border-bottom: 0;
}


/** botón categorias menu **/
.categorias_menu {
    display: flex;
    flex-direction: column;
    position: relative;
}

#toggleButton.button {
    border: 0;
    display: flex;
    gap: 5px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    transition: 0.175s;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    font-weight: 400;
    padding: 6px 15px;
    background-color: #fff;
    color: #1d1d1d;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

/* .button:hover {
    background: #8f44fd;
  } */

#miDiv {
    display: none;
    overflow: hidden;
    background-color: #fff;
    margin-top: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 200px;
    border: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, .05);
}

/* burger-5 */

.burger-5 {
    scale: .8;
    /* height: 34px; */
}

.burger-5 svg {
    /* The size of the SVG defines the overall size */
    height: 36px;
    transform: translate(-1px, -1px);
    /* Define the transition for transforming the SVG */
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-5 .line {
    fill: none;
    stroke: #1d1d1d;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-5 .line-top-bottom {
    stroke-dasharray: 12 63;
}

.is-closed.burger-5 svg {
    transform: rotate(-45deg) translate(0);
}

.is-closed.burger-5 svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

#menu-categorias {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu-categorias li {
    font-weight: 300;
    border-top: 1px solid #f8f8f8;
}

#menu-categorias li a {
    text-decoration: none;
    color: #111;
    margin: 0;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    transition: all .3s ease;
}

#menu-categorias li a:hover {
    background-color: #0e9eff;
    color: #fff;
}

#menu-categorias .menu-icon-cats {
    width: 25px;
    height: 25px;
}

@media (min-width: 576px) {
    .content_menu_ppal .col-sm-2.col-cats {
        width: 20%;
    }
}

#menu-categorias li a:hover .menu-icon-cats {
    filter: contrast(0) brightness(1000);
}






/* body:not(.home) .cabecera_ppal {
    background: #fff;
    margin-bottom: 0;
} */


/* body.home .logo img, .cabecera_ppal:has(li.htmega_mega_menu:hover) .logo img {
   filter: contrast(0) brightness(1500);
} */

body:not(.home) .box_head .info_box p,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .box_head .info_box p {
    font-size: 11px;
    line-height: 1;
    color: #ffffffa3;
}

/* body:not(.home) .cabecera_ppal .menu_principal .menu li a,
body:not(.home) .cabecera_ppal .menu_principal .htmega-menu-container ul li a,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .menu_principal .htmega-menu-container ul li a {
    color: #1c1c1c;
} */

/* body:not(.home) .carritoComprasHead .woofc-menu-item .woofc-menu-item-inner i,
body:not(.home) .carritoComprasHead .menu li a,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .carritoComprasHead .menu li a {
    color: #111;
} */

/* body:not(.home) .cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    background: #11111114;
}

body:not(.home) .cabecera_ppal .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
    color: #111;
}

body:not(.home) .cabecera_ppal .dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path {
    fill: #111 !important;
} */

.woocommerce .breadcrumb_prod .woocommerce-breadcrumb {
    margin-bottom: 0;
    font-size: 12px;
    font-family: 'Rubik', sans-serif;
}




/** on scroll **/
.cabecera_ppal.scrolling {
    /* background: #fff; */
    box-shadow: 0 0 7px rgba(0, 0, 0, .2);
}

.scrolling .logo_ppal,
body.home .scrolling .logo img,
.cabecera_ppal:has(li.htmega_mega_menu:hover) .logo img {
    filter: none;
}

.cabecera_ppal.scrolling .menu_principal .menu li a,
.cabecera_ppal.scrolling .menu_principal .htmega-menu-container ul li a {
    color: var(--color-primario, #011b44);
}

.scrolling .carritoComprasHead .woofc-menu-item .woofc-menu-item-inner i,
.scrolling .carritoComprasHead .menu li a {
    color: var(--color-primario, #011b44);
}

.cabecera_ppal.scrolling .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    background: #f7f8fe;
}

.cabecera_ppal.scrolling .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
    color: #6b7280;
}

.cabecera_ppal.scrolling .dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path {
    fill: var(--color-primario, #011b44) !important;
}

/** fin on scroll **/




/*** BODY ***/
.box_servicios .elementor-image-box-wrapper {
    position: relative;
}

.box_servicios .elementor-image-box-wrapper .elementor-image-box-img a::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #011b44e8, transparent);
    border-radius: 15px;
}

.box_servicios.box_serv_2 .elementor-image-box-wrapper .elementor-image-box-img a::before {
    background: linear-gradient(to top, #ec0106e8, transparent);
}


.box_servicios .elementor-image-box-wrapper .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.box_servicios .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    color: #fff;
    line-height: 1;
}

.box_servicios .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title a span {
    color: #ffffffa3;
    font-size: 15px;
    display: block;
}



/*** PAGINA MI CUENTA **/
.paginaMiCuenta {
    padding: 50px;
}

.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 40px -5px rgba(9, 31, 67, .05);
}

.paginaMiCuenta .woocommerce {
    display: flex;
    gap: 20px;
    align-items: stretch;
    font-family: 'Rubik', sans-serif;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px;
}

.woocommerce-MyAccount-navigation ul li a {
    color: #0c0c0c;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.woocommerce-MyAccount-navigation-link>a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* solid */
    display: inline-block;
    width: 18px;
    text-align: center;
    color: var(--color-primario);
}

/* Dashboard */
.woocommerce-MyAccount-navigation-link--dashboard>a:before {
    content: "\f015";
    /* gauge */
}

.woocommerce-MyAccount-navigation-link--orders>a:before {
    content: "\f466";
    /* box */
}

.woocommerce-MyAccount-navigation-link--edit-address>a:before {
    content: "\f3c5";
    /* box */
}

.woocommerce-MyAccount-navigation-link--edit-account>a:before {
    content: "\f2b9";
    /* box */
}

.woocommerce-MyAccount-navigation-link--customer-logout>a:before {
    content: "\f08b";
    /* box */
}

.paginaMiCuenta .woocommerce-Addresses .woocommerce-Address {
    background-color: #f9f9fc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 40px -5px rgba(9, 31, 67, .05);
    margin-bottom: 20px;
    border: 1px solid #ecedf3;
}

.paginaMiCuenta .woocommerce-Addresses .woocommerce-Address h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.paginaMiCuenta .woocommerce-MyAccount-content {
    padding: 30px;
}

.paginaMiCuenta .woocommerce-MyAccount-content a {
    text-decoration: none;
    color: var(--color-primario);
    font-weight: 500;
}

.paginaMiCuenta .woocommerce-MyAccount-content legend {
    margin-top: 30px;
    font-size: 20px;
}

.paginaMiCuenta .woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
    background-color: #ecf0f0a8;
    border: 1px solid #ecedf3;
}







/* 
.filtros_shop .ht-category-wrap .ht-category-image a {
    padding: 20px;
}

.filtros_shop .ht-category-wrap .ht-category-content-4 h3 {
    line-height: 1;
}

.listado_prods.elementor-widget-woolentor-product-archive-addons {
    width: 100%;
}

.woocommerce .tienda_prods .listado_prods.elementor-widget-woolentor-product-archive-addons span.onsale {
    border-radius: 0 0 3px 3px;
    left: 10px !important;
}

.woocommerce .tienda_prods ul.products li.product,
.woocommerce-page .tienda_prods ul.products li.product {
    background: #f9f9fc;
    border-radius: 5px;
}

.woocommerce .tienda_prods ul.products li.product .price {
    margin: 0 10px 10px;
}


.woocommerce .tienda_prods ul.products li.product .woodecimalproduct_pice_unit_label,
.woocommerce-page .tienda_prods ul.products li.product .woodecimalproduct_pice_unit_label {
    display: none !important;
}

.woocommerce ul.products li.product a img {
    max-height: 333.33px;
}

.prods_archive a.button.add_to_cart_button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.prods_archive li.product:hover a.button.add_to_cart_button {
    padding: inherit;
    height: auto;
}


.boxes_ofertas .eael-product-gallery .eael-product-wrap .eael-product-price {
    display: flex;
    flex-direction: column-reverse;
}

.boxes_ofertas .eael-product-gallery .eael-product-wrap .eael-product-price del {
    opacity: .5;
    font-size: 12px;
}

.boxes_ofertas .eael-product-gallery .eael-product-wrap .eael-product-price ins {
    text-decoration: none;
} */



/** SERVICIOS **/

/* .box__servicios .img_box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.box__servicios .img_box .elementor-widget-container::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1b1b1b9e, transparent);
}

.box__servicios .info_serv {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: auto !important;
    transition: all .4s ease;
}

.box__servicios:hover .info_serv {
    bottom: 27px;
}

.int_box-servicios {
    padding: 0 30px;
}

.box__servicios .info_serv .tit_box,
.box__servicios .info_serv .txt_box {
    color: #fff;
}

.box__servicios .info_serv .txt_box {
    font-weight: 300;
}

.box__servicios.box__servicios-der .info_serv .tit_box,
.box__servicios.box__servicios-der .info_serv .txt_box {
    text-align: right;
}

.int_box-servicios .btn {
    min-width: 120px;
    font-size: 13px;
    padding: 7px 20px;
}

.box__servicios-der .int_box-servicios .btn {
    float: right;
}

.galeria_categorias img {
    filter: contrast(1) brightness(0.5);
} */

/** TESTIMONIOS **/

.testimonios .author-name {
    font-family: 'Lato', sans-serif !important;
}


/*** BLOG **/
.blog .eael-grid-post-holder {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .05);
}

.blog .eael-grid-post-holder:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
}

.blog .eael-grid-post .eael-entry-wrapper {
    padding: 20px 15px;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-title {
    font-family: 'Lato', sans-serif;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-content {
    font-family: 'Lato', sans-serif;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-content a {
    display: table;
    margin-top: 10px;
}

/* .blog_home .tpg-el-main-wrapper .tpg-post-link img {
    max-height:300px;
    object-fit: contain;
} */

.blog_wrap {
    margin-top: 50px;
    margin-bottom: 50px;
}

.seccion_blog_single article {
    width: 100%;
}

.seccion_blog_single article h1 {
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
}

.header_blog {
    margin-bottom: 35px;
}

.header_blog .meta_data {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content_imagen_dest {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 35px;
}

.content_imagen_dest img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/*** FORM **/
.txt_form {
    color: #fff;
}

.content_form .flex_form {
    gap: 15px;
    /* flex-direction: column; */
    display: flex;
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.cont-input {
    background: #f9f9f9ba;
    padding: 0;
    width: 100%;
    border-radius: 3px;
    position: relative;
    margin: 0 auto 10px;
    border: 1px solid #bfd1d9a8;
}

.cont-input.error-rut {
    border-color: red;
}

.cont-input label {
    color: #111;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    z-index: 2;
    display: block;
    top: 5px;
    left: 5%;
}

.content_form textarea,
.content_form input[type="text"],
.content_form input[type="email"],
.content_form input[type="tel"],
.content_form select {
    font-size: 14px;
    color: #111;
    display: block;
    background-color: transparent;
    border: 0;
    font-weight: 300;
    padding: 25px 5% 6px;
    font-family: "Sora", sans-serif;
    width: 100%;
    border-radius: 5px;
}

input[type="text"].tit_input {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    font-size: 20px;
    color: #0e9eff;
    font-weight: bold;
}

/** PAGINA CHECKOUT **/
.flex_checkout {
    display: flex;
    gap: 20px;
    margin: 70px 0;
    box-shadow: 0 0 13px #1515151a;
    border-radius: 5px;
}

.box_checkout {
    width: 60%;
    padding: 20px;
}

.box_checkout:last-of-type {
    width: 40%;
    background: #f9f9fc;
}

.billing_checkout_info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.box_prods_checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box_img_checkout {
    width: 30%;
}

.box_prod_checkout {
    width: 70%;
    font-size: 13px;
    font-weight: 300;
}

.box_prod_checkout .woocommerce-Price-amount.amount {
    color: #0e9eff;
}

.cart_item .box_img_checkout img {
    width: 80px;
    height: 80px;
    border-radius: 3px;
}

.woocommerce table.shop_table td {
    line-height: 1.1 !important;
}

.titulo_prod_checkout {
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.box_checkout .woocommerce-shipping-methods li {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

tfoot tr td {
    text-align: right;
}

.woocommerce table.shop_table {
    padding: 10px 30px 10px;
    border: 0 !important;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    font-weight: 400 !important;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.checkout_totales {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    line-height: 1;
}

.checkout_totales strong {
    font-size: 30px;
    line-height: 1;
}

.woocommerce .box_checkout input,
.woocommerce .box_checkout textarea {
    padding: 13px 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e2;
}

.woocommerce .box_checkout textarea {
    min-height: 130px;
}

.box_checkout .select2-container .select2-selection--single {
    padding: 10px 7px;
    height: auto;
}

.box_checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: transparent !important;
}

.woocommerce .box_checkout button#place_order {
    background-color: #891b1c;
}

.woocommerce .box_checkout,
.woocommerce .box_checkout label {
    color: #373f50 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 14px;
}

/****************************************************************
**** FOOTER DAHER (rediseño) ************************************
**************************************************************** */

footer.footer-daher {
    width: 100%;
    padding: 0;
    /* margin-top: 60px; */
    background:
        linear-gradient(135deg, rgba(1, 27, 68, .95) 0%, rgba(2, 43, 100, .92) 45%, rgba(1, 15, 40, .97) 100%),
        url("includes/img/footer-bg.jpg") no-repeat center center / cover,
        radial-gradient(circle at 20% 0%, rgba(14, 158, 255, .18) 0%, transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(236, 1, 6, .15) 0%, transparent 55%),
        var(--color-primario);
    background-size: auto, cover, auto, auto, auto;
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--color-secundario);
    color: #fff;
    overflow: hidden;
}

footer.footer-daher::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

footer.footer-daher .overlay_footer {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(14, 158, 255, .08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

footer.footer-daher .container {
    max-width: 1280px;
    position: relative;
    z-index: 2;
}

/* ===== Marquee superior ===== */
.footer-marquee {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.footer-marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: footer-marquee-scroll 40s linear infinite;
    will-change: transform;
}

.footer-marquee:hover .footer-marquee__track {
    animation-play-state: paused;
}

.footer-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .3px;
}

.footer-marquee__item i {
    font-size: 18px;
    color: var(--color-secundario);
}

.footer-marquee__sep {
    color: rgba(255, 255, 255, .35);
    font-size: 18px;
    line-height: 1;
}

@keyframes footer-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Grid principal 28/15/15/15/27 ===== */
.footer-daher__grid {
    display: grid;
    grid-template-columns: 28% 15% 15% 15% 27%;
    gap: 24px;
    padding: 20px 0 60px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-daher__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* ----- Columna marca ----- */
.footer-daher__col--brand {
    padding-right: 20px;
}

.footer-daher__logo img {
    max-width: 200px !important;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-daher__desc {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 22px;
}

.footer-daher__desc strong {
    color: #fff;
    font-weight: 600;
}

.footer-daher__newsletter h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-daher__newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 18px;
    max-width: 420px;
}

.footer-daher__newsletter-form .form-control {
    flex: 1;
    border: 0;
    border-radius: 6px 0 0 6px;
    padding: 10px 14px;
    font-size: 14px;
    background: rgba(255, 255, 255, .95);
    color: #111;
}

.footer-daher__newsletter-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(14, 158, 255, .5);
}

footer.footer-daher .footer-daher__newsletter-form .btn.btnTrustus {
    border-radius: 0 6px 6px 0;
    min-width: auto;
    padding: 10px 18px;
    background: var(--color-secundario);
    font-weight: 600;
    border: 0;
}

footer.footer-daher .footer-daher__newsletter-form .btn.btnTrustus:hover {
    background: #c20105;
}

.footer-daher__wsp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 999px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    width: max-content;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .25);
}

.footer-daher__wsp i {
    font-size: 18px;
}

.footer-daher__wsp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, .35);
    color: #fff !important;
}

/* ----- Columnas de menús ----- */
.footer-daher__title {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-daher__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--color-secundario);
    border-radius: 2px;
}

.footer-daher__menu,
.footer-daher__col ul.footer-daher__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-daher__menu li {
    margin: 0;
}

.footer-daher__menu li a {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
    display: inline-block;
}

.footer-daher__menu li a:hover {
    color: #fff;
    padding-left: 6px;
    text-decoration: none;
}

/* ===== Columna Contacto ===== */
.footer-daher__contact {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-daher__contact li {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.footer-daher__contact-label {
    color: #fff;
    font-weight: 600;
    margin-right: 4px;
    display: inline;
}

.footer-daher__contact a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .2s ease;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-daher__contact a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ----- Iconos sociales ----- */
.footer-daher__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-daher__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    border: 1px solid rgba(255, 255, 255, .12);
}

.footer-daher__social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
    text-decoration: none;
    color: #fff !important;
}

.footer-daher__social--ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.footer-daher__social--fb:hover {
    background: #1877f2;
    border-color: transparent;
}

.footer-daher__social--in:hover {
    background: #0a66c2;
    border-color: transparent;
}

/* ===== Copyright ===== */
.footer-daher .copy_footer.footer-daher__copy {
    background: rgba(0, 0, 0, .45);
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 0;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

.footer-daher__copy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-daher__copy-row p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
}

/* ===== Responsivo ===== */
@media (min-width: 1024px) and (max-width: 1279px) {
    .footer-daher__grid {
        grid-template-columns: 26% 14% 14% 14% 28%;
        gap: 24px;
    }
}

@media (max-width: 1023px) {
    .footer-daher__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
    }

    .footer-daher__col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-marquee__item {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .footer-daher__grid {
        grid-template-columns: 1fr;
        padding: 10px 0 40px;
        gap: 30px;
    }

    .footer-marquee {
        padding: 14px 0;
        margin-bottom: 30px;
    }

    .footer-marquee__item {
        font-size: 13px;
        gap: 8px;
    }

    .footer-marquee__item i {
        font-size: 15px;
    }

    .footer-daher__newsletter-form {
        max-width: 100%;
    }

    .footer-daher__copy-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-daher__social {
        justify-content: flex-start;
    }
}


/****************************************************************
**** TIENDA — Layout 2 columnas + filtros laterales *************
**************************************************************** */

.daher-shop-wrap {
    padding: 30px 0;
}

.daher-shop-wrap__heading {
    margin-bottom: 20px;
}

.daher-shop-wrap__title {
    font-family: 'Rubik', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primario);
    margin: 0;
    line-height: 1.1;
}

/* Result count + ordering (default WC, dentro del main) */
.daher-shop-layout__main .woocommerce-result-count,
.daher-shop-layout__main .woocommerce-ordering {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 18px;
}

.daher-shop-layout__main .woocommerce-result-count {
    color: #6b7280;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
}

.daher-shop-layout__main .woocommerce-ordering {
    float: right;
}

.daher-shop-layout__main .woocommerce-ordering select.orderby {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    background: #fff;
    color: #111;
    min-width: 200px;
    font-family: 'Rubik', sans-serif;
}

/* ----- Layout 2 columnas ----- */
.daher-shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: flex-start;
}

.daher-shop-layout__sidebar {
    position: sticky;
    top: 90px;
}

.daher-shop-layout__main {
    min-width: 0;
}

/* Botón móvil para abrir sidebar */
.daher-shop-mobile-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    background: var(--color-primario);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    cursor: pointer;
}

/* ----- Sidebar ----- */
.daher-shop-sidebar {
    background: #fff;
    border: 1px solid #ecedf3;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(17, 17, 17, .04);
}

.daher-shop-sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ecedf3;
}

.daher-shop-sidebar__title {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primario);
    margin: 0;
}

.daher-shop-sidebar__clear {
    font-size: 12px;
    color: var(--color-secundario);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.daher-shop-sidebar__clear:hover {
    text-decoration: underline;
    color: var(--color-secundario);
}

/* ----- Acordeón de filtros ----- */
.daher-filters-accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
    border: 0;
}

.daher-filters-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ecedf3;
    border-radius: 0 !important;
}

.daher-filters-accordion .accordion-item:last-child {
    border-bottom: 0;
}

.daher-filters-accordion .accordion-header {
    margin: 0;
}

.daher-filters-accordion .accordion-button {
    background: transparent;
    box-shadow: none !important;
    padding: 14px 4px;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primario);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.daher-filters-accordion .accordion-button::after {
    margin-left: auto;
    background-size: 14px;
    width: 14px;
    height: 14px;
    transition: transform .25s ease;
}

.daher-filters-accordion .accordion-button:not(.collapsed) {
    color: var(--color-primario);
    background: transparent;
}

.daher-filter__count {
    background: var(--color-secundario);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 999px;
    line-height: 1.6;
    margin-left: 4px;
}

.daher-filter__body {
    padding: 6px 4px 18px !important;
}

.daher-filter__search {
    position: relative;
    margin-bottom: 10px;
}

.daher-filter__search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 12px;
}

.daher-filter__search-input {
    width: 100%;
    padding: 8px 10px 8px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    background: #f9fafb;
    color: #111;
}

.daher-filter__search-input:focus {
    outline: none;
    border-color: var(--color-primario);
    background: #fff;
}

.daher-filter__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 4px;
}

.daher-filter__list::-webkit-scrollbar {
    width: 6px;
}

.daher-filter__list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.daher-filter__option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #374151;
    transition: background .15s ease;
}

.daher-filter__option:hover {
    background: #f3f4f6;
}

.daher-filter__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.daher-filter__check {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .15s ease;
    position: relative;
}

.daher-filter__checkbox:checked+.daher-filter__check {
    background: var(--color-primario);
    border-color: var(--color-primario);
}

.daher-filter__checkbox:checked+.daher-filter__check::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.daher-filter__checkbox:focus-visible+.daher-filter__check {
    box-shadow: 0 0 0 3px rgba(1, 27, 68, .15);
}

.daher-filter__name {
    flex: 1;
    line-height: 1.3;
}

.daher-filter__qty {
    color: #9ca3af;
    font-size: 12px;
}

/* ----- Acción Aplicar ----- */
.daher-shop-sidebar__actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #ecedf3;
}

.daher-shop-sidebar__apply {
    width: 100%;
    background: var(--color-secundario);
    color: #fff;
    border: 0;
    padding: 11px 16px;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.daher-shop-sidebar__apply:hover {
    background: #c20105;
    transform: translateY(-1px);
}

/* ============================================================
   BARRA SUPERIOR — versión "Buscar por medida" (neumáticos)
   ============================================================ */
.daher-shop-topbar {
    background: #fff;
    border: 1px solid #ecedf3;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(17, 17, 17, .04);
}

.daher-size-search {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.daher-size-search__title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primario);
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    flex-shrink: 0;
}

.daher-size-search__title i {
    color: var(--color-secundario);
}

.daher-size-search__fields {
    display: flex;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
}

.daher-size-search__input {
    flex: 1;
    min-width: 130px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #f9fafb;
}

.daher-size-search__input:focus {
    outline: none;
    border-color: var(--color-primario);
    background: #fff;
}

/* Desplegables (selects) del buscador por medida */
.daher-size-search__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23011b44' d='M6 8 0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #f9fafb;
}

.daher-size-search__select:focus {
    background-color: #fff;
}

.daher-size-search__btn {
    background: var(--color-secundario);
    color: #fff;
    border: 0;
    padding: 10px 28px;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease;
}

.daher-size-search__btn:hover {
    background: #c20105;
}

/* ============================================================
   BARRA SUPERIOR — versión "Marcas con logo"
   ============================================================ */
.daher-shop-topbar--brands {
    padding: 16px 18px;
}

.daher-shop-topbar__heading {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primario);
    margin: 0 0 12px;
}

.daher-brand-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.daher-brand-logos__item {
    flex: 0 0 auto;
    width: 110px;
    height: 60px;
    background: #f9fafb;
    border: 1.5px solid #ecedf3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    transition: all .25s ease;
    text-decoration: none;
}

.daher-brand-logos__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .25s ease;
}

.daher-brand-logos__text {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.daher-brand-logos__item:hover {
    border-color: var(--color-primario);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(17, 17, 17, .08);
}

.daher-brand-logos__item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.daher-brand-logos__item.is-active {
    border-color: var(--color-secundario);
    background: #fff;
    box-shadow: 0 4px 10px rgba(236, 1, 6, .12);
}

.daher-brand-logos__item.is-active img {
    filter: grayscale(0);
    opacity: 1;
}

.daher-brand-logos__item.is-active .daher-brand-logos__text {
    color: var(--color-secundario);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .daher-shop-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .daher-shop-layout__sidebar {
        position: static;
    }

    .daher-shop-mobile-toggle {
        display: inline-flex;
    }

    .daher-shop-sidebar {
        display: none;
    }

    .daher-shop-layout__sidebar.is-open .daher-shop-sidebar {
        display: block;
    }

    .daher-size-search__title {
        width: 100%;
    }

    .daher-size-search__fields {
        flex-direction: column;
    }

    .daher-size-search__input {
        width: 100%;
    }

    .daher-size-search__btn {
        width: 100%;
    }

    .daher-brand-logos__item {
        width: 90px;
        height: 50px;
    }
}

@media (max-width: 600px) {
    .daher-shop-wrap {
        padding: 18px 0;
    }

    .daher-shop-wrap .titulo_prods h1 {
        font-size: 24px;
    }

    .daher-shop-wrap__order .woocommerce-ordering select {
        width: 100%;
    }
}

/* Oculta cualquier bloque suelto de subcategorías legacy en tienda/categorías. */
body.woocommerce-shop .filtros_shop,
body.tax-product_cat .filtros_shop,
body.woocommerce-shop ul.products>li.product-category,
body.tax-product_cat ul.products>li.product-category {
    display: none !important;
}

/** modals **/
#modalCatalogo .modal-body {
    background: #000;
    color: #fff;
}

#modalCatalogo .content_form .flex_form {
    flex-direction: column;
}

#modalCatalogo .content_form .flex_form .c-form {
    align-items: center;
}

#modalCatalogo .modal-body .btn-close {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: #ffffff;
    line-height: 1;
    border-radius: 50%;
    color: #000;
    right: -15px;
    top: -15px;
}

/** modal form **/
#modalForm .modal-body {
    padding: 0;
    border-radius: 15px;
}

#modalForm .modal-body .btn-close {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: #ffffffa6;
    line-height: 1;
    border-radius: 50%;
    color: #000;
    right: 10px;
    top: 10px;
}

.content_modal_form {
    padding: 20px;
}

#modalForm .modal-body .row .col-sm:first-of-type {
    background-color: #f9fafd;
    border-radius: 15px 0 0 15px;
}

.bg_modal_form {
    background: url(/budnik/wp-content/uploads/2024/01/mop-1.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border-radius: 0 7px 7px 0;
}

.content_modal_form .form-group label {
    color: #ffa50d;
}

.content_modal_form .form-control.form-control-lg {
    font-size: 14px;
    background: #fff;
    border: 1px solid #dee2e6;
    color: #353535
}

#modalForm .content_form .form-control.form-control-lg::placeholder {
    color: #ffffff8a !important;
}

#modalForm .content_form .flex_form {
    flex-direction: column;
}


.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    text-align: center;
}

.modal-body p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-align: center;
}

.btn-wsp {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 35px;
    bottom: 35px;
    background: linear-gradient(45deg, #0bbc19, #08d107);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    position: fixed;
    z-index: 999;
    width: 60px;
    height: 60px;
    transition: all .2s ease-in-out;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-wsp:hover {
    color: #fff;
    transform: translateY(-3px);
}

.iconoWsp {
    font-size: 45px;
    line-height: 1;
}

/*Mover Recaptcha a la izquierda*/
.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: -2px !important;
    bottom: 20px !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.phone-prefix {
    position: absolute;
    left: 15px;
    /* Ajusta según la ubicación que necesites */
    top: 68%;
    transform: translateY(-51%);
    font-size: 14px;
    line-height: normal;
}

.phone-with-prefix {
    position: relative;
}

.phone-with-prefix input {
    padding-left: 40px !important;
    /* Ajusta el espacio para el prefijo */
}

.offcanvas-title {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
}


.mobile_head {
    display: none;
}


@media (min-width: 1024px) and (max-width:1279px) {
    .box_head .info_box h3 {
        font-size: 12px;
    }

    .box_head .info_box p {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width:1023px) {
    .boxes_head.head_dir {
        display: none;
    }

    .box_head .info_box h3 {
        font-size: 11px;
    }

    .box_head .info_box p {
        font-size: 10px;
    }
}

@media (max-width:767px) {

    .desktop_head {
        display: none;
    }

    .mobile_head {
        display: block;
    }

    .btn.btnTrustus,
    .btn.btnBudnik {
        min-width: unset;
    }

    .logo_ppal {
        width: 75%;
        max-width: 110px;
    }

    .logo img,
    .woocommerce .logo img {
        max-width: 150px;
    }

    .logo a {
        position: unset;
    }

    .fondos_color::before {
        background: #0e9eff !important;
    }

    .fondos_negro::before {
        background: #111 !important;
    }

    .menu__logo {
        display: flex;
    }

    .menu__logo button.hamburger {
        display: flex;
        align-items: center;
    }

    .iconos__head {
        align-items: center;
        gap: 20px
    }

    /** Menu movil **/
    .hamburger-inner,
    .hamburger-inner:after,
    .hamburger-inner:before {
        width: 30px !important;
        height: 3px !important;
        border-radius: 2px !important;
        background-color: var(--color-primario, #011b44) !important;
    }

    .paginaMiCuenta .woocommerce {
        flex-direction: column;
    }

    /* body.home .hamburger-inner,
    body.home .hamburger-inner:after,
    body.home .hamburger-inner:before {
        background-color: #0c0c0c !important;
    } */

    /* body.home .scrolling .hamburger-inner,
    body.home .scrolling .hamburger-inner:after,
    body.home .scrolling .hamburger-inner:before {
        background-color: #fff !important;
    } */

    html:not(.dgwt-wcas-overlay-mobile-on) .mobile_head .offcanvas .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon {
        max-width: 40px !important;
        height: 40px;
        background: #f0f0f0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    html:not(.dgwt-wcas-overlay-mobile-on) .mobile_head .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon a svg path {
        fill: var(--color-primario, #011b44);
    }

    /* body.home .hamburger-inner,
    body.home .hamburger-inner:after,
    body.home .hamburger-inner:before {
        background: #fff !important;
    } */

    .menu_movil .menu {
        list-style: none;
        padding: 0;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 1.5;
        font-weight: 500;
    }

    .menu_movil .menu li {
        padding: 10px;
        border-bottom: 1px solid #f0f1f4;
    }

    .menu_movil .menu li a {
        text-decoration: none;
        color: #313344;
        font-family: 'Rubik', sans-serif;
    }

    .carritoComprasHead .menu li a {
        /* color: #111; */
    }

    body.home .carritoComprasHead .menu li a {
        color: var(--color-primario, #011b44);
    }

    .btnes_head {
        justify-content: center;
    }

    .btnes_head .btn.btnBudnik,
    .btnes_head .btn.btnOutlineVerde {
        min-width: unset;
    }

    .btnes_head .btn.btnOutlineVerde {
        color: #74bc1e;
    }

    .bajada_tit_ppal span {
        font-size: 17px;
    }

    .content_form .flex_form {
        flex-direction: column;
    }

    .woocommerce ul.products li.product a img {
        height: 100%;
        max-height: 400px;
    }

    /** pag producto **/
    .bg_info_prod .order1 {
        order: 1;
    }

    .bg_info_prod .order2 {
        order: 2;
    }

    .bg_info_prod .order3 {
        order: 3;
    }

    .boxes_footer .foot_1 img {
        max-width: 100% !important;
        filter: none !important;
    }

    .filtros_shop .ht-category-wrap .ht-category-image a {
        padding: 5px;
    }



    .boxes_footer {
        flex-wrap: wrap;
        gap: 0;
    }

    .boxes_footer .box_foot {
        width: 50%;
        margin-bottom: 20px;
        padding: 2%;
    }

    .boxes_footer .box_foot:nth-child(1) {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .box_foot h3 {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .box_foot p {
        margin-bottom: 5px;
    }

    .box__servicios .info_serv .tit_box,
    .secc_cds .box__servicios .info_serv .tit_box {
        font-size: 25px;
    }

    .box__servicios .info_serv .txt_box,
    .tit_box span {
        font-size: 14px;
    }

    .box_ico {
        gap: 5px;
    }

    .box_ico img {
        width: 30px;
    }

    .box_ico h3 {
        font-size: 10px;
    }

    .box__servicios.box__servicios-der .info_serv .tit_box,
    .box__servicios.box__servicios-der .info_serv .txt_box {
        text-align: left;
    }

    .box__servicios-der .int_box-servicios .btn {
        float: left;
    }

    .flex_checkout {
        flex-direction: column;
    }

    .flex_checkout .box_checkout {
        width: 100%;
    }

    .contenedorCarro .eael-woo-cart-product-remove a.remove {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 14px;
        font-size: 14px;
        width: 12px;
        height: 12px;
    }

    .boxes_footer .box_foot:last-of-type {
        width: 100%;
        gap: 20px;
    }

    .eael-woo-cart .contenedorCarro .eael-woo-cart-wrapper.eael-woo-style-2 form.eael-woo-cart-form .eael-woo-cart-table .eael-woo-cart-tr .eael-woo-cart-tr-left .eael-woo-cart-td.product-thumbnail .eael-woo-cart-product-remove {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .eael-woo-cart .contenedorCarro .eael-woo-cart-wrapper.eael-woo-style-2 form.eael-woo-cart-form .eael-woo-cart-table .eael-woo-cart-tr .eael-woo-cart-tr-left .eael-woo-cart-td {
        text-align: center;
    }

    /* #gallery-1,
    #gallery-2,
    #gallery-3,
    #gallery-4,
    #gallery-5,
    #gallery-6 {
        display: flex;
        flex-wrap: wrap;
    } */

    #gallery-1 dl.gallery-item,
    #gallery-2 dl.gallery-item,
    #gallery-3 dl.gallery-item,
    #gallery-4 dl.gallery-item,
    #gallery-5 dl.gallery-item,
    #gallery-6 dl.gallery-item,
    #gallery-7 dl.gallery-item,
    #gallery-8 dl.gallery-item,
    #gallery-9 dl.gallery-item {
        width: 50% !important;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* Dos columnas */
        grid-auto-rows: minmax(80px, auto);
        /* Ajusta la altura mínima */
        gap: 10px;
        padding: 5px;
    }

/* ===============================================================
 * Paginación tienda / categorías (WooCommerce).
 * !important + alta especificidad porque WC carga sus estilos
 * default DESPUÉS de style.css (style.css se incluye antes de
 * wp_head en header.php). Sin esto, las reglas de WC (border en ul,
 * float en li, padding fijo) ganan por orden de carga.
 * =============================================================== */
body.woocommerce nav.woocommerce-pagination,
body.woocommerce-page nav.woocommerce-pagination,
nav.woocommerce-pagination {
    margin: 32px 0 16px !important;
    text-align: center !important;
    border: none !important;
}

body.woocommerce nav.woocommerce-pagination ul,
body.woocommerce nav.woocommerce-pagination ul.page-numbers,
body.woocommerce-page nav.woocommerce-pagination ul,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers,
nav.woocommerce-pagination ul.page-numbers {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    white-space: normal !important;
    clear: none !important;
}

body.woocommerce nav.woocommerce-pagination ul li,
body.woocommerce-page nav.woocommerce-pagination ul li,
nav.woocommerce-pagination ul.page-numbers li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-right: none !important;
    display: inline-flex !important;
    float: none !important;
    overflow: visible !important;
    background: transparent !important;
}

body.woocommerce nav.woocommerce-pagination ul li a,
body.woocommerce nav.woocommerce-pagination ul li span,
body.woocommerce-page nav.woocommerce-pagination ul li a,
body.woocommerce-page nav.woocommerce-pagination ul li span,
nav.woocommerce-pagination ul.page-numbers li a,
nav.woocommerce-pagination ul.page-numbers li span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    color: var(--color-primario) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: all .2s ease !important;
    box-shadow: none !important;
}

body.woocommerce nav.woocommerce-pagination ul li a:hover,
body.woocommerce nav.woocommerce-pagination ul li a:focus,
body.woocommerce-page nav.woocommerce-pagination ul li a:hover,
body.woocommerce-page nav.woocommerce-pagination ul li a:focus,
nav.woocommerce-pagination ul.page-numbers li a:hover,
nav.woocommerce-pagination ul.page-numbers li a:focus {
    background: var(--color-primario) !important;
    border-color: var(--color-primario) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px -4px rgba(1, 27, 68, .35) !important;
}

body.woocommerce nav.woocommerce-pagination ul li span.current,
body.woocommerce nav.woocommerce-pagination ul li span.page-numbers.current,
body.woocommerce-page nav.woocommerce-pagination ul li span.current,
nav.woocommerce-pagination ul.page-numbers li span.current,
nav.woocommerce-pagination ul.page-numbers li span.page-numbers.current {
    background: var(--color-primario) !important;
    border-color: var(--color-primario) !important;
    color: #fff !important;
    cursor: default !important;
}

body.woocommerce nav.woocommerce-pagination ul li span.dots,
body.woocommerce-page nav.woocommerce-pagination ul li span.dots,
nav.woocommerce-pagination ul.page-numbers li span.dots {
    background: transparent !important;
    border-color: transparent !important;
    color: #94a3b8 !important;
    cursor: default !important;
    min-width: 24px !important;
    padding: 0 4px !important;
}

body.woocommerce nav.woocommerce-pagination ul li a.prev,
body.woocommerce nav.woocommerce-pagination ul li a.next,
body.woocommerce-page nav.woocommerce-pagination ul li a.prev,
body.woocommerce-page nav.woocommerce-pagination ul li a.next,
nav.woocommerce-pagination ul.page-numbers li a.prev,
nav.woocommerce-pagination ul.page-numbers li a.next {
    font-size: 16px !important;
    font-weight: 700 !important;
}

@media (max-width: 576px) {
    body.woocommerce nav.woocommerce-pagination,
    body.woocommerce-page nav.woocommerce-pagination,
    nav.woocommerce-pagination {
        margin: 24px 0 8px !important;
    }
    body.woocommerce nav.woocommerce-pagination ul,
    body.woocommerce-page nav.woocommerce-pagination ul,
    nav.woocommerce-pagination ul.page-numbers {
        gap: 4px !important;
    }
    body.woocommerce nav.woocommerce-pagination ul li a,
    body.woocommerce nav.woocommerce-pagination ul li span,
    body.woocommerce-page nav.woocommerce-pagination ul li a,
    body.woocommerce-page nav.woocommerce-pagination ul li span,
    nav.woocommerce-pagination ul.page-numbers li a,
    nav.woocommerce-pagination ul.page-numbers li span {
        min-width: 34px !important;
        height: 34px !important;
        padding: 0 10px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }
}

}