/********** Template CSS **********/
:root {
    --primary: #f3912b;
    --secondary: #b5181b;
    --light: #f6f6f6;
    --dark: #222222;
    --white: #fff;
    --main-foreground: #222222;
    --main-background: #ffffff;
    --main-foreground-opacity-10: #222222;
    --border-solid: 1px solid;
    --border-radius-half: calc(var(--border-radius) / 2);
    --main-foreground-opacity-30: #222222;
}

body {
    font-family: "Open Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;
    color: #222222;
}

.text-primary {
    color: var(--dark) !important;
}

a:hover,
a:focus,
a:active,
button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 600;
    color: #222222;
    font-family: "Open Sans", sans-serif !important;
}

h5,
.h5 {
    font-size: 1rem;
}

.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 30px;
    z-index: 99;
}

.bg-dark {
    background-color: #222222 !important;
}

text-#222222 {
    color: #222222 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
    -webkit-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    -moz-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    -ms-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    -o-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.5s;
    font-weight: 500;
}

.btn-dark {
    color: white;
    background-color: #333;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
    color: white;
    background-color: var(--primary);
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-primary,
.btn-outline-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary,
.btn-outline-secondary {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-outline-secondary:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
    border-bottom: 1px solid #eee;
}

.navbar.sticky-top img {
    max-height: 60px;
}

.navbar .nav-item .dropdown-menu .dropdown-category::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* .navbar .nav-item .dropdown-menu ul .dropdown-item::after {
    display: none;
} */
/* .navbar .nav-item .dropdown-item.noafter::after {
    display: none;
} */
.navbar .nav-item .dropdown-menu ul {
    /* display: none; */
    padding-left: 5px;
}

/* .navbar .nav-item .dropdown-menu:hover ul {
    display: block;
} */
.navbar .nav-item .dropdown-menu ul.show {
    display: block;
}

.navbar .nav-item .dropdown-menu ul li {
    list-style: none;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-toggler:hover,
.navbar-light .navbar-toggler:active,
.navbar-light .navbar-toggler:focus {
    border: none !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 10px;
    padding: 13px 13px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 300;
    outline: none;
    position: relative;
}

.navbar .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 15px;
    width: 50%;
    height: 2px;
    z-index: 0;
    background-color: var(--primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    transition: opacity 0.2s ease-out 0.3s, -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s,
        -webkit-transform 0.2s ease-out;
}

.navbar .navbar-nav .nav-link:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #222;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        overflow: auto;
        max-height: 300px;
    }

    /* .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    } */
    .navbar .nav-item .dropdown-menu.show {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: transparent;
    border: 2px solid white;
    background-size: 50%;
}

@media (max-width: 961px) {
    #header-carousel .carousel-item .carousel-caption img {
        object-fit: contain;
        max-width: 30%;
        position: absolute;
        top: 30%;
        left: 30%;
    }

    #header-carousel .carousel-item {
        position: relative;
        min-height: 100vh;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #header-carousel .carousel-caption {
        top: -40%;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item .carousel-caption img {
        object-fit: contain;
        max-width: 60%;
        position: absolute;
        top: 30%;
        left: 20%;
    }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 10px;
    font-size: 1.75rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    top: 0;
    left: 43%;
    background: var(--primary);
    z-index: 1;
}

.section-title.text-start::before {
    width: 30px;
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    transition: 0.5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: 0.5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #ffffff;
}

.service-item .service-text .btn {
    font-weight: 300 !important;
    font-size: 16px;
    border-color: var(--secondary);
}

.service-item .service-text .btn:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    min-height: 480px;
}
.product-item .zoom img {
    min-height: 285px;
    max-height: 285px;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    padding-top: 60px;
    transition: 0.5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}

/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #eeeeee;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    font-size: 22px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

/*** Footer ***/
.footer {
    color: white;
}

.footer p {
    font-size: 14px !important;
}

.footer h5 {
    color: white;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}

.footer h5:before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 2px;
    bottom: -5px;
    left: 0px;
    background-color: white;
    width: 20%;
    transition: all 0.3s ease-in-out 0s;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.box-shadow {
    -webkit-box-shadow: -1px -1px 12px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px -1px 12px 2px rgba(0, 0, 0, 0.1);
    box-shadow: -1px -1px 12px 2px rgba(0, 0, 0, 0.1);
}

.product-item .under {
    min-height: 160px;
}

.product-item .position-relative a.btn {
    right: 5px;
    bottom: 5px;
    z-index: 1;
    color: var(--dark);
    background-color: var(--white);
    border-color: var(--white);
}

.product-item .btn {
    font-weight: 300 !important;
    font-size: 12px;
    color: var(--white);
    background-color: var(--dark);
    border-color: var(--dark);
}

.product-item .under .d-flex {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0%;
    bottom: 20px;
}

.promo {
    background-color: transparent;
    margin: 0 auto;
}

.promo p {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 300;
}

.promo h1 {
    font-size: 3.4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0;
}

.promo h4 {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 400;
}

.bg-red {
    background-color: rgba(209, 35, 44, 0.65);
}

.promo-listado h5 {
    font-size: 1.6rem;
    line-height: 1.5;
}

.promo .h5 {
    font-weight: 300 !important;
}

.promo .auto {
    padding: 3rem 3rem;
}

.zoom {
    display: block;
    overflow: hidden;
}

.zoom img {
    transform: scale(1);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    object-fit: cover;
    width: 100%;
}

.zoom:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

.news .h5 {
    font-weight: 300 !important;
}

/**********************
Ws botón redondo con tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
    position: fixed;
    bottom: 13px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    cursor: pointer;
    display: block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
    z-index: 999;
    background: #1ca550;
    padding: 8px 11px;
    opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
    padding-left: 0px;
    padding-top: 0px;
    width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
    font-size: 44px;
    color: white;
}

.ws.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #1ca550;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.copyright {
    background: #201f1f;
    font-size: 14px;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: white;
}

.mx-auto {
    overflow: hidden;
}

.recurso {
    position: absolute;
    right: 0;
    top: 0;
    display: none !important;
}

/*Estilos para contacto solo*/

/* Contacto */

a:hover,
a:focus,
a:active,
.form-control:focus,
.form-control:active,
.form-control:hover,
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled),
.btn-success.focus,
.btn-success:focus,
button:hover,
button:active,
button:focus,
.btn-success,
.btn,
[type="button"],
[type="reset"],
[type="submit"],
button,
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.help-block.with-errors {
    color: var(--primary);
    margin-top: 5px;
}

textarea.form-control {
    height: 250px;
}

.alert-success {
    color: #fff;
    background-color: transparent;
    border-color: #f1f0f5;
}

.alert-danger {
    color: #222222;
    background-color: #f1f0f5;
    border-color: #f1f0f5;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0px;
    color: white;
    font-weight: 300;
    background: #222222;
    border: 0;
}

.alert {
    position: relative;
    padding: 2rem;
    margin-bottom: 1rem;
    border: 0px solid transparent;
    border-radius: 0px;
}

.text-muted {
    color: #313875;
}

.history-text p.text-muted {
    color: #313875;
}

.messages {
    background: #222222;
    color: white;
}

.btn.disabled,
.btn[disabled],
.btn-send,
.btn-success,
fieldset[disabled] .btn {
    background: var(--primary);
    color: white;
    text-transform: uppercase;
    width: 165px;
    border: none;
    height: 51px;
    border-radius: 50px;
    cursor: pointer;
    font-size: calc(12px + 0.4vw);
    opacity: 1;
}

.btn.disabled:hover,
.btn.disabled:active,
.btn.disabled:focus,
.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn[disabled]:hover,
.btn[disabled]:active,
.btn[disabled]:focus,
fieldset[disabled] .btn:hover,
fieldset[disabled] .btn:active,
fieldset[disabled] .btn:focus,
.btn-send:hover,
.btn-send:active,
.btn-send:focus {
    background: #222222;
    color: white;
    opacity: 1;
}

.d-none {
    display: none !important;
}

.nice-select.wide {
    width: 100%;
    border-radius: 0;
}

.input-group-addon {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 8px;
}

.form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    margin-bottom: 20px;
}

/* Termina Contacto */

/* comienza ficha */

.sec-product-detail ul {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

.sec-product-detail li {
    margin: 0px;
    list-style-type: none;
}

.stext-109 {
    font-size: 14px;
    line-height: 1.833333;
}

.cl8 {
    color: #555;
}

.p-r-15,
.p-lr-15,
.p-all-15 {
    padding-right: 15px;
}

.p-l-25,
.p-lr-25,
.p-all-25 {
    padding-left: 25px;
}

.p-t-30,
.p-tb-30,
.p-all-30 {
    padding-top: 30px;
}

.cl4 {
    color: var(--primary);
}

.p-b-60,
.p-tb-60,
.p-all-60 {
    padding-bottom: 60px;
}

.p-t-65,
.p-tb-65,
.p-all-65 {
    padding-top: 65px;
}

.size-302 {
    min-height: 80px;
}

.flex-c-m {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.flex-w {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-w,
.flex-l,
.flex-r,
.flex-c,
.flex-sa,
.flex-sb,
.flex-t,
.flex-b,
.flex-m,
.flex-str,
.flex-c-m,
.flex-c-t,
.flex-c-b,
.flex-c-str,
.flex-l-m,
.flex-r-m,
.flex-sa-m,
.flex-sb-m,
.flex-col-l,
.flex-col-r,
.flex-col-c,
.flex-col-str,
.flex-col-t,
.flex-col-b,
.flex-col-m,
.flex-col-sb,
.flex-col-sa,
.flex-col-c-m,
.flex-col-l-m,
.flex-col-r-m,
.flex-col-str-m,
.flex-col-c-t,
.flex-col-c-b,
.flex-col-c-sb,
.flex-col-c-sa,
.flex-col-l-sb,
.flex-col-r-sb,
.flex-row,
.flex-row-rev,
.flex-col,
.flex-col-rev,
.dis-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.m-t-73,
.m-tb-73,
.m-all-73 {
    margin-top: 73px;
}

.p-b-15,
.p-tb-15,
.p-all-15 {
    padding-bottom: 15px;
}

.p-t-15,
.p-tb-15,
.p-all-15 {
    padding-top: 15px;
}

.stext-107 {
    font-size: 13px;
    line-height: 1.923;
}

.cl6 {
    color: #888;
}

.p-r-25,
.p-lr-25,
.p-all-25 {
    padding-right: 25px;
}

.p-l-25,
.p-lr-25,
.p-all-25 {
    padding-left: 25px;
}

.p-b-30,
.p-tb-30,
.p-all-30 {
    padding-bottom: 30px;
}

.p-r-30,
.p-lr-30,
.p-all-30 {
    padding-right: 30px;
}

/*//////////////////////////////////////////////////////////////////
[ Slick3 ]*/
.wrap-slick3 {
    position: relative;
}

/*---------------------------------------------*/
.wrap-slick3-arrows {
    position: absolute;
    z-index: 100;
    width: 83.333333%;
    right: 0;
    top: calc(50% - 20px);
}

.slick-slide img {
    display: block;
    width: 100%;
}

.arrow-slick3 {
    font-size: 25px;
    color: #fff;
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.arrow-slick3:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.m-r-10 {
    margin-right: 10px;
}

.prev-slick3 {
    left: 0px;
}

.next-slick3 {
    right: 0px;
}

/*---------------------------------------------*/
.wrap-slick3-dots {
    width: 11.111111%;
}

.slick3 {
    width: 83.333333%;
}

.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 27px;
}

.slick3-dots li img {
    width: 100%;
}

.slick3-dot-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.p-b-14 {
    padding-bottom: 14px;
}

.slick3-dot-overlay:hover {
    border-color: #ccc;
}

.slick3-dots .slick-active .slick3-dot-overlay {
    border-color: #ccc;
}

.flex-sb {
    justify-content: space-between;
}

.flex-sb-m {
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.slick-slide {
    outline: none !important;
}

.pos-relative {
    position: relative;
}

.wrap-pic-s,
.wrap-pic-max-s,
.wrap-pic-w,
.wrap-pic-max-w,
.wrap-pic-h,
.wrap-pic-max-h {
    display: block;
}

.slick-slide img {
    border-style: none;
}

.how-pos1 {
    position: absolute;
    top: 10px;
    right: 10px;
}

.bor0 {
    border-radius: 50%;
}

.bg0 {
    background-color: #fff;
}

.size-108 {
    width: 40px;
    height: 40px;
}

.cl10 {
    color: #222;
}

.p-t-33,
.p-tb-33,
.p-all-33 {
    padding-top: 33px;
}

.flex-r-m {
    justify-content: flex-end;
    -ms-align-items: center;
    align-items: center;
}

.p-b-10,
.p-tb-10,
.p-all-10 {
    padding-bottom: 10px;
}

.size-203 {
    width: 105px;
}

.size-204 {
    width: calc(100% - 105px);
}

.bor8 {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
}

button,
select {
    text-transform: none;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

[role="button"],
a,
area,
button,
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.rs1-select2 .select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

.rs1-select2 .select2-container .select2-selection--single {
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
    border-radius: 0px;
    position: relative;
}

/*------------------------------------------------------------------
  [ in select ]*/
.rs1-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.2;
    padding-left: 20px;
    background-color: transparent;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 38px;
    height: 20px;
    top: calc(50% - 10px);
    right: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e6e6e6;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "\f0dc";
    font-family: FontAwesome;
    font-size: 13px;
    color: #808080;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow:hover:after {
    color: var(--primary);
}

/*------------------------------------------------------------------
  [ Dropdown option ]*/
.rs1-select2 .select2-container--open .select2-dropdown {
    z-index: 1251;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 0px;
    overflow: hidden;
    background-color: white;
    left: 0px;

    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.rs1-select2 .select2-dropdown--above {
    top: -2px;
}

.rs1-select2 .select2-dropdown--below {
    top: 2px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected="true"] {
    background: var(--primary);
    color: white;
}

.rs1-select2 .select2-container .select2-results__option--highlighted[aria-selected] {
    background: var(--primary);
    color: white;
}

.rs1-select2 .select2-results__options {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.2;
}

.rs1-select2 .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.2;
}

/*------------------------------------------------------------------
  [ rs2 ]*/
.rs2-select2 .select2-container .select2-selection--single {
    height: 40px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 35px;
    right: 0px;
    border-left: none;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "\f0d7";
}

.flex-m {
    -ms-align-items: center;
    align-items: center;
}

.p-l-100,
.p-lr-100,
.p-all-100 {
    padding-left: 100px;
}

.p-t-40,
.p-tb-40,
.p-all-40 {
    padding-top: 40px;
}

.bor9 {
    border-right: 1px solid #e6e6e6;
}

.tooltip100 {
    position: relative;
}

.trans-04 {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.lh-10 {
    line-height: 1;
}

.p-r-5,
.p-lr-5,
.p-all-5 {
    padding-right: 5px;
}

.p-l-5,
.p-lr-5,
.p-all-5 {
    padding-left: 5px;
}

.p-b-2,
.p-tb-2,
.p-all-2 {
    padding-bottom: 2px;
}

.p-t-2,
.p-tb-2,
.p-all-2 {
    padding-top: 2px;
}

.fs-14 {
    font-size: 14px;
}

.bor10 {
    border: 1px solid #e6e6e6;
}

.m-t-50,
.m-tb-50,
.m-all-50 {
    margin-top: 50px;
}

.p-b-40,
.p-tb-40,
.p-all-40 {
    padding-bottom: 40px;
}

.p-t-43,
.p-tb-43,
.p-all-43 {
    padding-top: 43px;
}

/*//////////////////////////////////////////////////////////////////
[ Tab01 ]*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: none;
}

.tab01 .nav-tabs .nav-item {
    margin: 0px 15px;
}

.tab01 .nav-tabs .nav-link.active,
.tab01 .nav-tabs .nav-item.show .nav-link {
    font-weight: bold;
    color: var(--primary);
}

.tab01 .nav-link {
    font-size: 15px;
    color: #888;
    line-height: 1.2;

    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.how-pos2 {
    padding-left: 10.7%;
    padding-right: 11%;
}

.btn-variant.selected {
    color: var(--main-foreground);
    border-color: var(--main-foreground);
    background: var(--main-foreground-opacity-10);
}

.btn-variant {
    display: inline-block;
    font-size: 14px;
    line-height: 10px;
    min-width: 28px;
    min-height: 28px;
    margin: 0 10px 10px 0;
    padding: 0 5px;
    border: var(--border-solid) var(--main-foreground-opacity-30);
    color: var(--main-foreground);
    border-radius: var(--border-radius-half);
    font-weight: 400;
    text-transform: initial;
    vertical-align: top;
    -webkit-border-radius: var(--border-radius-half);
    -moz-border-radius: var(--border-radius-half);
    -ms-border-radius: var(--border-radius-half);
    -o-border-radius: var(--border-radius-half);
}

.btn-variant-content {
    display: block;
    min-height: 18px;
    margin: 4px;
    line-height: 19px;
}

.btn-variant.selected {
    color: #333333;
    border-color: var(--main-foreground);
    background: var(--main-foreground-opacity-10);
}

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

.form-group .form-label {
    float: left;
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    margin-top: 10px;
}

#jarse p {
    font-size: 12px;
}

/* Video Inicio */

.main-banner {
    position: relative;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

/* Comienza portfolio de categorías */

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #ffffff;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    font-size: 60px;
    line-height: 0;
    transition: 0.1s;
    transition-delay: 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: 0.5s;
    z-index: 1;
    background: rgba(209, 35, 44, 0.7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

/* Banner Iconos */

#banner-icono .promo {
    background-color: transparent;
    margin-top: 0;
    padding-top: 0;
}

#banner-icono .promo .h5 {
    font-weight: 600 !important;
    margin-bottom: 0;
}

#banner-icono .promo p {
    margin-bottom: 0;
}

#banner-icono .promo .auto {
    padding: 3rem 3rem;
}

#banner-icono {
    background-color: white !important;
}

#banner-icono h5 img {
    width: 100%;
}

.text-color {
    color: var(--primary) !important;
}

h1 span {
    font-weight: 300;
}

.bg-claro {
    background-color: #f7f7f7 !important;
    z-index: 1;
    position: relative;
}

.bg-claro .section-title.bg-white {
    background-color: #f7f7f7 !important;
}

.bg.claro .border-end {
    border: 1px solid var(--primary) !important;
}

.bg.claro hr.w-25 {
    color: var(--primary) !important;
    background-color: rgb(227 0 68) !important;
}

.mtext-105.cl2.js-name-detail {
    position: relative;
    display: inline-block;
}

.mtext-105.cl2.js-name-detail::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    bottom: 26px;
    left: 104%;
    background: var(--primary);
    z-index: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #222;
    height: auto;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: white;
}

.tarjetas {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: white;
    padding: 10px 15px;
}

.tarjetas h5 span {
    color: var(--primary);
}

.promo-box {
    background: linear-gradient(120deg,
            rgb(243 145 43) 1%,
            rgb(181 24 57) 100%);
    background-repeat: no-repeat;
    background-position: 95% 5%;
    background-size: 100%;
    padding: 5px;
}

@media (max-width: 768px) {
    .tarjetas {
        flex-direction: column;
        text-align: center;
    }

    .tarjetas h5 {
        padding: 0px;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-info .pull-left {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
}

/*** Product Sales ***/
.product-item-sales {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    min-height: 295px;
}

.product-item-sales .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    padding-top: 60px;
    transition: 0.5s;    
    z-index: 1;
}

.product-item-sales:hover .product-overlay {
    opacity: 0;
    padding-top: 0;
}

.product-item-sales .under {
    min-height: 160px;
    position: absolute;
    z-index: 1;
    bottom: 0;
}

.product-item-sales .under a {
    color: white;
}

.product-item-sales .text-muted {
    color: white !important;
}

.product-item-sales .text-tachado {
    color: white !important;
    text-decoration: line-through;
    font-weight: 300;
}

.product-item-sales .h6.precio {
    color: white;
    background: var(--secondary);
    padding: 2px 10px;
}

.product-item-sales .position-relative a.btn {
    left: 5px;
    top: 5px;
    z-index: 1;
}

.product-item-sales .btn {
    font-weight: 300 !important;
    font-size: 12px;
}

.product-item-sales .under .d-flex {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 20px;
}

.product-item-sales .position-relative a.btn-secondary {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.sale-text {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    transform: translateX(50%) translateY(-50%) rotate(45deg);
    transform-origin: center;
    z-index: 1;
}

.sale-text::before {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%;
}

.sale-text>span {
    display: inline-block;
    background: var(--primary);
    padding: 6px 45px;
    transform: translateY(-50%);
    font-size: 18px;
    text-align: center;
    color: white;
    white-space: nowrap;
}

/* Comprar fácil */

.tarjetas-comprar {
    top: 50%;
    overflow: hidden;
}

.comprar-facil {
    position: relative;
}

.comprar-facil .bg-orange {
    background: var(--primary);
}

.comprar-facil .tarjeta {
    width: 400px;
    border-radius: 6px;
    min-height: 200px;
}

.comprar-facil .imagen-wrapper img {
    object-fit: cover;
    /* Mantiene la imagen siempre llena y recortada estéticamente */
    object-position: center;
}

.comprar-facil .bg-danger {
    background: var(--secondary);
}

.comprar-facil .bg-gray {
    background: #c0bab7;
}

.separador {
    height: 100px;
    position: relative;
    width: 100%;
}

/* --- AJUSTES PARA CELULARES (SIN BORRAR NADA DE LO EXISTENTE) --- */

@media (max-width: 991px) {

    /* La columna derecha no debe tener tanto margen arriba */
    .comprar-facil .bg-orange {
        margin-top: 0 !important;
    }

    /* Las tarjetas pasan a posición estática para no quedar flotantes sobre la imagen */
    .tarjetas-comprar {
        position: relative !important;
        top: 0 !important;
        padding: 2rem 1rem;
        margin-top: -20px;
        /* Simula un leve solapado pero sin romper layout */
    }

    /* Cada tarjeta ocupa el ancho del móvil */
    .comprar-facil .tarjeta {
        width: 100% !important;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Reducimos tamaño del ícono */
    .comprar-facil .tarjeta i {
        font-size: 28px !important;
    }
}

@media (max-width: 576px) {

    /* Tarjetas aún más cómodas para pantallas muy chicas */
    .comprar-facil .tarjeta {
        max-width: 300px;
        padding: 1.5rem !important;
    }

    .tarjetas-comprar {
        margin-top: -10px;
    }

    /* Reducir el alto visible de la imagen para evitar que se alargue demasiado */
    .comprar-facil .imagen-wrapper {
        max-height: 280px;
        overflow: hidden;
    }
}

.home-category .portfolio-box {
    min-height: 300px;
}

.home-category .portfolio-box img {
    object-fit: cover;
    min-height: 300px;
}

/* =========================================================
   PRODUCT CAROUSEL – FINAL COMPLETO (Encapsulado seguro)
   ========================================================= */

.section-products {
    position: relative;
    /* importante para posicionar flechas relativas a esta sección */

    /* --------------------------------------
       CONTENEDOR DE IMAGEN
    -------------------------------------- */
    .product-image-container {
        width: 100%;
        height: 220px;
        overflow: hidden;
        border-radius: 10px;
    }

    .product-image,
    .img-cover,
    .img-fluid {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        min-height: 235px;
        max-height: 235px;
    }

    /* --------------------------------------
       NAV EXTERNO PERSONALIZADO (FLECHAS)
    -------------------------------------- */
    /* El contenedor ocupa todo el ancho pero no crea alto extra */
    .product-carousel-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 100%;
        pointer-events: none;
        /* evitar que el contenedor bloquee clicks salvo los botones */
    }

    .product-carousel-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
        pointer-events: auto;
        /* los botones sí responden */
        width: 42px;
        height: 42px;
        background: #fff;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        color: #444;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.15s ease;
        border: 1px solid black;
    }

    .product-carousel-nav button:hover {
        background: #f1f1f1;
    }

    /* Posición lateral de las flechas (afuera) */
    .product-carousel-nav .product-prev {
        left: -25px;
        /* <- valor pedido: fuera del contenedor */
    }

    .product-carousel-nav .product-next {
        right: -25px;
        /* <- valor pedido: fuera del contenedor */
    }

    /* --------------------------------------
       FIX: Neutralizar columnas internas
       (Para que Owl controle el ancho)
    -------------------------------------- */
    .product-carousel {
        overflow: hidden;
    }

    .product-carousel .item {
        display: flex;
        justify-content: center;
        align-items: stretch;
        padding: 0;
        /* espacio simétrico: evita que se peguen */
        box-sizing: border-box;
    }

    .product-carousel .item>div {
        width: 100% !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        display: block;
        padding: 0 !important;
    }

    /* FIX OWL + BOOTSTRAP: evita que los items queden pegados */
    .product-carousel .owl-item {
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box;
    }

    .product-carousel .item>div {
        width: 100% !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
    }

    /* --------------------------------------
       TARJETA DEL PRODUCTO
    -------------------------------------- */
    .product-carousel .product-item {
        width: 280px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        overflow: hidden;
    }

    @media (min-width: 1400px) {
        .product-carousel .product-item {
            width: 300px;
        }
    }

    @media (min-width: 1200px) and (max-width: 1399px) {
        .product-carousel .product-item {
            width: 280px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .product-carousel .product-item {
            width: 260px;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .product-carousel .product-item {
            width: 220px;
        }
    }

    @media (max-width: 767px) {
        .product-carousel .product-item {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .product-carousel .owl-item {
            padding-left: 5px !important;
            padding-right: 5px !important;
        }
    }

    .product-carousel .product-item .under {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        min-height: 252px;
    }

    /* --------------------------------------
       IMAGEN DE LA TARJETA
    -------------------------------------- */
    .product-carousel .img-cover {
        height: 220px;
        /* mismo alto que product-image-container */
    }

    /* --------------------------------------
       Ajustes Owl
    -------------------------------------- */
    .product-carousel .owl-stage-outer {
        padding-bottom: 18px !important;
    }

    .product-carousel .owl-item {
        min-width: 0 !important;
    }

    .product-carousel .owl-nav {
        display: none !important;
    }
}

/* -------------------------------------------------------
   Small helper: si usás el HTML original sin wrapper,
   proporciono reglas no encapsuladas por si olvidás
   envolver con .section-products (seguridad)
   ------------------------------------------------------- */

.product-carousel .item {
    padding: 0 12px;
}

.product-carousel-nav button {
    top: 50%;
    transform: translateY(-50%);
}

.product-carousel-nav .product-prev {
    left: -25px;
}

.product-carousel-nav .product-next {
    right: -25px;
}

/* ===========================================
   FIX: EVITAR QUE LOS PRODUCTOS SE PEGUEN
   =========================================== */

/* Eliminar padding lateral de Bootstrap dentro del carrusel */
.product-carousel .owl-item .col-md-6,
.product-carousel .owl-item .col-lg-4,
.product-carousel .owl-item .col-xl-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Ajustar spacing total */
.product-carousel .owl-stage-outer {
    padding-left: 5px;
    padding-right: 5px;
}

.product-carousel .product-item .under.text-tachado {
    color: white !important;
    text-decoration: line-through;
    font-weight: 300;
}

@media (max-width: 767px) {
    .promo h1 {
        font-size: 2rem;
    }

    .promo .auto {
        padding: 1rem;
    }
    .linea-comprar, .quantity-controls-wrapper>div {
        flex-direction: column;
        width: 100%;
    }
    .izq, .respon6-next, #contactPrimaryBtn, .btn.disabled, .btn[disabled], .btn-send, .btn-success, fieldset[disabled] .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Parallax */
.banner {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.product-item-sales .zoom img {
    min-height: 300px;
    max-height: 300px;
}
