body {
    font-family: "Barlow", sans-serif !important;
}

/* nav */

.header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

.nav-black {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-black-div {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 40%;
}

.nav-black .end {
    justify-content: end !important;
}

.nav-black-div2 {
    margin-left: 20px;
}

.nav-black-a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    padding: 5px;
}

.nav {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 20px 5% !important;
    overflow: hidden !important;
}

.nav-logo {
    width: 150px;
}

.nav-div {
    display: flex;
    align-items: center;
}

.nav-div2 {
    margin-left: 30px;
}

.nav-a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px;
}

.nav-a.active {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}

.nav-ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 30px 0 0;
}

.nav-ul li {
    margin-right: 10px;
}

.nav-ul.ul2 {
    margin-right: 0;
}

.nav-ul li:last-child {
    margin-right: 0;
}

/* Estilos base para todos los botones */
.nav-btn,
.nav-btn2,
.nav-btn3 {
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* Botón con borde blanco (transparente) */
.nav-btn {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}

.nav-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Botón blanco */
.nav-btn2 {
    color: #000;
    background-color: #fff;
    border: none;
}

.nav-btn2:hover {
    background-color: #000;
    color: #fff;
}

/* Botón verde */
.nav-btn3 {
    background-color: #2aba35;
    color: #fff;
    border: none;
}

.nav-btn3:hover {
    background-color: #fff;
    color: #2aba35;
}

.ul2 li {
    position: relative;
}

.nav-span {
    background: #01a301;
    border-radius: 10px;
    padding: 0px 5px;
    color: #fff;
    position: absolute;
    top: -15px;
    right: -25px;
}


/* sidebar */

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    background: #2aba35;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    z-index: 1001;
    position: fixed;
    right: 5%;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
    border-radius: 5px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: white;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Animación del botón hamburguesa cuando el sidebar está activo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay para cerrar el sidebar al hacer clic fuera */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

/* Sidebar principal */
.sidebar-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #292929 100%);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
}

/* Header del sidebar */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Contenido del sidebar */
.sidebar-content {
    padding: 20px 0;
}

/* Enlaces del sidebar */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    position: relative;
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto hover y activo */
.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: rgba(255, 255, 255, 0.08);
    color: #2aba35;
}

/* Efecto de onda al hacer clic */
.sidebar-menu a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.sidebar-menu a:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

/* Iconos */
.sidebar-menu a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Separador */
.sidebar-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

/* Idiomas */
.sidebar-languages {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.sidebar-languages a {
    padding: 5px 15px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.sidebar-languages a.active {
    color: #2aba35;
    font-weight: 600;
    position: relative;
}

.sidebar-languages a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #2aba35;
    left: 0;
    bottom: 0;
}

/* Footer del sidebar */
.sidebar-footer {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.sidebar-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}

/* Enlaces sociales */
.sidebar-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background-color: #2aba35;
    transform: translateY(-3px);
}

/* Carrito en sidebar */
.sidebar-cart {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(42, 186, 53, 0.15);
    margin: 15px 15px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-cart:hover {
    background-color: rgba(42, 186, 53, 0.25);
}

.sidebar-cart-text {
    display: flex;
    align-items: center;
}

.sidebar-cart-text i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.sidebar-cart span {
    background-color: #2aba35;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.sidebar-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Catálogo */
.sidebar-catalog {
    padding: 12px 20px;
    margin: 20px 15px;
    background-color: #2aba35;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-catalog:hover {
    background-color: #1f8626;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sidebar-catalog i {
    margin-left: 10px;
}

/* Información de contacto */
.sidebar-contact {
    padding: 0 20px;
    margin-bottom: 15px;
}

.sidebar-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.sidebar-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.sidebar-contact i {
    margin-right: 10px;
    color: #2aba35;
}

/* one section */
.one-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.os-img {
    width: 100%;
    object-fit: cover;
}

.os-p {
    font-weight: 600;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    text-align: center;
    z-index: 10;
    white-space: pre-line;
}

.os-span {
    font-size: 3rem;
}

/* two section */
.two-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    padding: 5% 0;
}

.ts-p {
    font-weight: 600;
    color: #000;
    font-size: 1.8rem;
    white-space: pre-line;
    line-height: 1.2;
}

.ts-p2 {
    text-align: justify;
}

.ts-div {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.ts-p3 {
    font-weight: 600;
    color: #000;
    font-size: 1.2rem;
    margin: 0;
}

.ts-p4 {
    text-align: justify;
}

.ts-div i {
    font-size: 1.2rem;
    color: #000;
    margin-right: 10px;
}

.ts-div2 {
    width: 70%;
    margin: 0 auto;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    position: relative;
    cursor: pointer;
}

.ts-container {
    display: flex;
    align-items: center;
}

.ts-ul {
    padding: 1rem;
}

.ts-ul:last-child {
    margin-left: 20px;
}

.ts-ul li {
    font-size: 0.9rem;
}

.ts-div2 i {
    font-size: 1.2rem;
    color: #000;
    position: absolute;
    right: 10px;
    bottom: 5px;
}

/* three section */
.three-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    padding: 5% 0;
}

.ths-img {
    width: 100%;
    object-fit: cover;
}

.ths-p {
    font-weight: 600;
    color: #fff;
    font-size: 2.5rem;
    white-space: pre-line;
    line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

/* four section */
.four-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    padding: 5% 0;
}

.fs-p {
    font-weight: 600;
    color: #000;
    font-size: 2em;
    text-align: center;
}

.fs-p2 {
    text-align: center;
}

.fs-div {
    width: 90%;
    margin: 5% auto 0;
}

.fs-div .row .col-md-3 {
    padding: 0 !important;
}

.producto-skeleton {
    opacity: 0.7;
}

.fs-div2 {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

#productos-destacados .col-md-3 {
    transition: opacity 0.3s ease;
}

#productos-destacados.rotando .col-md-3 {
    opacity: 0;
}

.fs-img {
    width: 100%;
    object-fit: cover;
}

.fs-div3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.fs-img2 {
    height: 300px;
    padding: 20px;
    object-fit: cover;
}

.fs-p3 {
    font-weight: 500;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.fs-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.fs-p4 {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
}

.fs-a i {
    margin-left: 5px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fs-a:hover .fs-p4,
.fs-a:hover i {
    background-color: #fff;
    color: #000;
}

.fs-a2 {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 20%;
    margin: 5% auto;
    justify-content: center;
}

.fs-p5 {
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
}

.fs-a2 i {
    margin-left: 5px;
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fs-a2:hover .fs-p5,
.fs-a2:hover i {
    background-color: #000;
    color: #fff;
}

#productos-destacados {
    width: 80%;
    margin: 10% auto 0;
}

.fs-div4 {
    position: relative;
    width: 90%;
    height: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.186));
    border-radius: 10px;

}

.fs-div4 a {
    text-decoration: none;
    color: #000;
    width: 100%;
}

.fs-div4 i {
    font-size: 1.2rem;
    color: #000;
    position: absolute;
    top: 10px;
    right: 10px;
}

.fs-div5 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.fs-div5 .carrito {
    padding: 5px 10px;
}

.fs-div5 .carrito img {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.fs-p6 {
    width: 70%;
    margin: 0;
}

.fs-img3 {
    width: 80%;
    height: 220px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* five section */

.five-section,
.fis-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.fis-img {
    width: 100%;
    object-fit: cover;
}

.fis-div {
    position: absolute;
    top: 45%;
    right: 30%;
    transform: translate(50%, -50%);
    width: 40%;
}

.fis-p {
    font-weight: 600;
    color: #fff;
    font-size: 2rem;
    white-space: pre-line;
    line-height: 1.2;
}

.fis-p2 {
    color: #fff;
    text-align: justify;
    font-size: 0.9rem;
}

.fis-div2 {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff !important;
    position: relative;
}

.fis-p3 {
    font-weight: 600;
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.fis-p4 {
    text-align: justify;
    color: #fff;
    font-size: 0.9rem;
}

.accordion-item {
    cursor: pointer;
}

.accordion-title {
    cursor: pointer;
    margin-bottom: 10px;
}

.accordion-item i {
    transition: all 0.3s ease;
}

.ts-container {
    overflow: hidden;
}

.fis-div2 i {
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    bottom: 5px;
    right: 10px;
}

.fis-div3 {
    width: 100%;
    height: 300px;
    position: relative;
}

.fis-div3 .fis-r {
    width: 90%;
    margin: -60px auto 0;

}

.fis-div4 {
    width: 100%;
    height: 100%;
    background: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.186));
    padding: 20px;
    display: flex;
    align-items: center;
}

.fis-img2 {
    width: 80%;
    object-fit: cover;
}

.fis-a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.fis-p5 {
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    padding: 4px 8px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
}

.fis-a:hover .fis-p5,
.fis-a:hover i {
    background-color: #000;
    color: #fff;
}

.fis-a i {
    margin-left: 5px;
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    padding: 4px 8px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* six section */
.six-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.ss-img {
    width: 100%;
    object-fit: cover;
}

.ss-div {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.ss-p {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    white-space: pre-line;
    line-height: 1.2;
    margin-left: 60px
}

.ss-p i {
    margin-left: 50px;
}

.ss-p2 {
    color: #000;
    text-align: justify;
    font-size: 2rem;
    text-align: justify;
    width: 60%;
    white-space: pre-line;
    line-height: 1.2;
    margin-left: 60px
}

/* seven section */
.seven-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 5% 0;
}

.ses-p {
    font-weight: 600;
    color: #000;
    font-size: 2rem;
    text-align: center;
}

.ses-div {
    width: 90%;
    margin: 0 auto 5%;
}

.ses-div2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;

}

.ses-p2 {
    font-size: 1.2rem;
    color: #000;
    font-weight: 400;
    margin: 0 !important;
}

.ses-hr {
    width: 93%;
    border: 1px solid #dcdcdc;
    opacity: 1;
}

.ses-img {
    width: 90%;
    display: block;
    margin: 0 auto;
}

.carousel-control-next {
    margin-right: -30px !important;
}

.carousel-control-prev {
    margin-left: -30px !important;
}

.carousel-control-next,
.carousel-control-prev {
    background: #aeaeae !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 20px !important;
    margin: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.186)) !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 20px !important;
    height: 20px !important;
}

/* footer */

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-img {
    width: 40px;
    object-fit: cover;
}

.footer {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-div {
    width: 90%;
    margin: 5% auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-div2 {
    display: flex;
    flex-direction: column;
}

.footer-img {
    width: 200px;
    object-fit: cover;
}

.footer-div3 {
    display: flex;
    margin-top: 50px;
    align-items: center;
}

.footer-a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 5px;
}

.footer-a2 {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-a3 {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 30px;
}

.footer-a4 {
    color: #fff;
    text-decoration: none;
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.footer-a5 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
}

.footer-p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-hr {
    width: 100%;
    border: 1px solid #fff;
    opacity: 1;
    margin: 10px auto;
}

.footer-div4 {
    width: 45%;
    overflow: hidden;
}

.footer-div4.row {
    width: 100%;
}

.footer-div4 .row .col-6 {
    display: flex;
    flex-direction: column;
}

.footer-div4 .row .footer-a4 i {
    color: #2aba35;
}

/* productos one section */

.productos-one-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.pos-img {
    width: 100%;
    object-fit: cover;
}

.pos-p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    white-space: pre-line;
    line-height: 1.2;
    text-transform: uppercase;
}

/* productos two section */
.productos-two-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.pts-div {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 15px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.pts-div::-webkit-scrollbar {
    display: none;
}

/* Indicador de scroll */
.scroll-indicator {
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    padding: 5px 0;
    margin-top: 5px;
    opacity: 1;
    transition: opacity 1s ease;
}

/* Prevenir selección de texto durante el scroll */
.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.scroll-indicator i {
    margin-right: 5px;
    animation: bounce-horizontal 2s infinite;
}

.scroll-indicator.fade-out {
    opacity: 0;
}

/* Animación para el icono de scroll */
@keyframes bounce-horizontal {

    0%,
    100% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }
}

/* Animación más suave para el scroll automático */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}



.pts-div2,
.pts-div3 {
    flex: 0 0 auto;
    padding: 15px 25px;
    width: 25%;
    min-height: 100px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.pts-div2 {
    background-color: #292929;
}

.pts-div3 {
    background-color: #1a1a1a;
}

.pts-div2:hover,
.pts-div3:hover {
    transform: translateY(-3px);
}

.pts-selected {
    background-color: #01a301;
    transition: background-color 0.3s ease;
}

.pts-selected .pts-p {
    padding-bottom: 5px;
    border-bottom: 3px solid #ffffff3f;
}

.pts-p {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    margin: 0;
    width: auto;
    pointer-events: none;
}

/* Efecto al pasar el cursor */
.pts-div2:hover,
.pts-div3:hover {
    transform: scale(1.05);
}

/* productos three section */
.productos-three-section {
    width: 100%;
    background: #eeeeee;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    padding: 5% 0;
}

.pths-p {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
}

.pths-p,
.pths-p2 {
    margin-bottom: 40px;
}

.pths-p3 {
    background-color: #fff;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.095));
    padding: 10px 20px;
    border-radius: 6px;
    width: 90%;
    font-weight: 300;
    cursor: pointer;
}

.subcategoria-selected {
    background: #313131;
    color: #fff;
    font-weight: 400;
}

.pths-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    background: #fff;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.095));
    cursor: pointer;
}

.pths-i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: #000;
}

.pths-img {
    width: 90%;
    height: 220px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.pths-div2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.pths-p4 {
    font-weight: 300;
    color: #000;
    font-size: 1rem;
    margin: 0;
}

.pths-div2 .pths-img2 {
    background: #01a301;
    width: 40px;
}

.pths-img2 {
    background: #dcdcdc;
    padding: 5px 10px;
    border-radius: 5px;
    width: 32px;
}

.ver-todos {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/*  detalles one section */
.detalles-one-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    background: #EEEEEE;
    background: linear-gradient(0deg, rgba(238, 238, 238, 1) 0%, rgba(228, 228, 228, 1) 52%, rgba(215, 215, 215, 1) 73%, rgba(176, 176, 176, 1) 100%);
    padding: 10% 0;
}

.deos-div {
    width: 80%;
    margin: 0 auto;
}

.deos-div2 {
    width: 90%;
    background: #fff;
    overflow: hidden;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.deos-img {
    object-fit: contain;
    margin: 0 auto;
    display: block;
    width: 60%;
    height: 300px;
    padding: 10px;
}

.deos-p {
    margin-left: 5%;
    font-size: 1.2rem;
    color: #000;
}

.deos-p2 {
    font-size: 1.5rem;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.deos-descripcion {
    width: 80%;
}

.deos-descripcion p {
    font-size: 1rem;
    color: #000;
    margin: 0;
    text-align: justify;
}

.deos-archivos {
    width: 70%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deos-pdf {
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    width: 45%;
    text-align: center;
    text-decoration: none;
}

.deos-pdf:hover {
    background-color: #000;
    color: #fff;
}

.deos-pwg {
    border: none;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 45%;
    text-align: center;
    text-decoration: none;
}

.deos-pwg:hover {
    background-color: #000;
    color: #fff;
}

.deos-precio {
    width: 230px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deos-cantidad {
    background: #fff;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.deos-cantidad input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 1rem;
}

.deos-cantidad button {
    width: 50px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 5px 10px;
}

.deos-cantidad button:hover {
    background: #eeeeee;
}

.carrito {
    background: #2aba35;
    padding: 5px 15px;
    border-radius: 5px;
    border: none;
}

.carrito img {
    width: 20px;
    object-fit: cover;
}


/* detalles two section */
.detalles-two-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    background: #EEEEEE;
    padding: 0 10% 5%;
}

.dets-p {
    font-weight: 400;
    color: #000;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.dets-hr {
    width: 100%;
    border: 2px solid #fff;
    opacity: 1;
    margin: 20px auto;
}

.producto-relacionado {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    background: #fff;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.095));
    cursor: pointer;
}

.producto-imagen {
    width: 90%;
    height: 200px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.producto-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.producto-info a {
    text-decoration: none;
}

/* carrito one section */
.carrito-one-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    left: 0;
    background: #EEEEEE;
    background: linear-gradient(0deg, rgba(238, 238, 238, 1) 24%, rgba(201, 201, 201, 1) 53%, rgba(171, 171, 171, 1) 75%, rgba(120, 120, 120, 1) 100%);
}

.banner-carrito {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 60%;
    right: 36%;
    transform: translate(50%, -50%);
}

.banner-h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 300;
}

.banner-p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.cos-div {
    width: 80%;
    margin: 10% auto;
}

.carritoForm {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.form-control {
    background: #eeeeee !important;
    border: none !important;
    padding: 10px !important;
}

.btn-carrito2 {
    background: #2aba35 !important;
    color: #fff !important;
    border: none !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;

}

.cos-div2 {
    width: 100%;
    height: 200px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 5%;
}

.cos-div2 .row {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.cos-div2 .row .col-6 {
    height: 100%;
}

.cos-p {
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
}

.cos-div2 .deos-cantidad {
    background: #eeeeee;
    margin-bottom: 10px !important;
}

.cos-div2 .deos-cantidad input {
    background: #eeeeee;
}

.cos-div2 .deos-cantidad button {
    background: #eeeeee;
}

.cos-img {
    height: 90%;
    width: 90%;
    margin: 0 auto;
    object-fit: contain;
}

.carrito-vacio p {
    font-size: 2rem;
    font-weight: 600;
}

.carrito-vacio a {
    background: transparent;
    color: #01a301;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #01a301;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 auto;
}

.carrito-vacio a:hover {
    background: #01a301;
    color: #fff;
}

.breadcrumb-link {
    cursor: pointer;
}


.subcategory-info-section {
    margin-top: 10%;
}

.subcategory-content p {
    text-align: justify;
}


/* medias query */

@media screen and (max-width: 1450px) and (min-width: 1200px) {

    .nav-logo {
        width: 140px;
    }

    .nav-ul {
        margin: 0 20px 0 0;
    }

    .nav-ul li {
        margin-right: 5px;
    }

    .os-p {
        top: 55%;
        font-size: 1.5rem;
    }

    .os-span {
        font-size: 2.5rem;
    }

    .fs-img2 {
        height: 200px;
    }

    .fs-p4,
    .fs-a i {
        font-size: 0.8rem;
    }

    .fis-img {
        height: 650px;
    }

    .fis-div {
        width: 50%;
    }

    .fis-p6 {
        font-size: 0.9rem;
    }

    .pos-p {
        top: 55%;
    }

    .pts-p {
        font-size: 0.9rem;
    }

    .deos-p {
        font-size: 0.9rem;
    }

    .deos-pdf {
        font-size: 0.9rem;
    }

    .banner-h1 {
        font-size: 3rem;
    }

    .banner-p {
        font-size: 1rem;
    }

}

@media screen and (max-width: 1199px) and (min-width: 992px) {

    .nav-logo {
        width: 100px;
    }

    .nav-ul {
        margin: 0 20px 0 0;
    }

    .nav-ul li {
        margin-right: 5px;
    }

    .nav-btn,
    .nav-btn2,
    .nav-btn3 {
        padding: 2px 6px;
    }

    .os-p {
        top: 55%;
        font-size: 1.2rem;
    }

    .os-span {
        font-size: 2rem;
    }

    .fs-p3 {
        font-size: 1.1rem;
    }

    .fs-img2 {
        height: 160px;
    }

    .fs-p4,
    .fs-a i {
        font-size: 0.8rem;
    }

    .fs-div4 {
        height: 280px;
    }

    .fs-img3 {
        height: 120px;
    }

    .fs-p6 {
        font-size: 0.8rem;
        width: 60%;
    }

    .fs-div5 .carrito {
        padding: 5px 10px;

    }

    .fs-div5 .carrito img {
        width: 15px;
    }

    .fis-img {
        height: 620px;
    }

    .fis-div {
        width: 60%;
        right: 35%;
    }

    .fis-p {
        font-size: 1.5rem;
    }

    .fis-p3 {
        font-size: 1rem;
    }

    .fis-div3 .fis-r {
        width: 95%;
    }

    .fis-p5,
    .fis-a i {
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .fis-p6 {
        font-size: 0.8rem;
    }

    .ss-p2 {
        font-size: 1.5rem;
    }

    .ths-p {
        font-size: 2rem;
    }

    .pos-p {
        top: 55%;
        font-size: 1.5rem;
    }

    .pts-p {
        font-size: 0.9rem;
    }

    .ts-p {
        font-size: 1.5rem;
    }

    .pths-img {
        height: 120px;
    }

    .pths-div2 .pths-img2 {
        width: 30px;
        padding: 2px 6px;
    }

    .banner-img {
        height: 350px;
    }

    .banner-h1 {
        font-size: 2.5rem;
    }

    .banner-p {
        font-size: 1rem;
    }

    .cos-p {
        font-size: 0.9rem;
    }

    .cos-p2 {
        font-size: 0.8rem;
    }

    .cos-div2 {
        height: 190px;
    }

    .deos-cantidad {
        width: 120px;
    }

    .deos-cantidad button {
        padding: 0;
    }

    .btn-eliminar {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {

    .nav-black {
        padding: 0 5%;
    }

    .nav-black-div {
        width: 50%;
    }

    .nav-logo {
        width: 100px;
    }

    .nav-div2 {
        margin-left: 15px;
    }

    .nav-a {
        font-size: 0.8rem;
    }

    .nav-ul {
        margin: 0 5px 0 0;
    }

    .nav-ul li {
        margin-right: 5px;
    }

    .nav-btn,
    .nav-btn2,
    .nav-btn3 {
        font-size: 0.8rem !important;
    }

    .os-p {
        top: 55%;
        font-size: 1rem;
    }

    .os-span {
        font-size: 1.5rem;
    }

    .fs-img {
        height: 300px;
    }

    .fs-p3 {
        font-size: 0.9rem;
    }

    .fs-img2 {
        height: 140px;
    }

    .fs-p4,
    .fs-a i {
        font-size: 0.7rem;
    }

    #productos-destacados {
        width: 100%;
    }

    .fs-div4 {
        height: 220px;
    }

    .fs-img3 {
        height: 100px;
    }

    .fs-p6 {
        font-size: 0.7rem;
    }

    .fs-div5 .carrito {
        padding: 5px 10px;

    }

    .fs-div5 .carrito img {
        width: 15px;
    }

    .fs-a2 {
        width: 30%;
    }

    .fis-img {
        height: 600px;
    }

    .fis-div {
        width: 80%;
        right: 50%;
    }

    .fis-p {
        font-size: 1.2rem;
    }

    .fis-p3 {
        font-size: 0.9rem;
    }

    .fis-p6 {
        font-size: 0.7rem;
    }

    .fis-img2 {
        width: 100%;
    }

    .fis-div3 {
        height: 150px;
    }

    .fis-div3 .fis-r {
        width: 95%;
    }

    .fis-div4 {
        padding: 10px;
    }

    .fis-a {
        margin-left: -18px;
    }

    .fis-p5,
    .fis-a i {
        font-size: 0.6rem;
        padding: 2px 4px;
        white-space: nowrap;
    }

    .ss-p2 {
        font-size: 1.2rem;
    }

    .ths-p {
        font-size: 1.5rem;
    }

    .ts-p {
        font-size: 1.5rem;
        white-space: normal;
    }

    .ts-div2 {
        width: 90%;
    }

    .pos-img {
        height: 300px;
    }

    .pos-p {
        font-size: 1.5rem;
        top: 55%;
    }

    .pts-p {
        font-size: 0.9rem;
    }

    .pts-div2,
    .pts-div3 {
        padding: 10px 20p
    }

    .pths-div {
        padding: 15px;
    }

    .pths-img {
        height: 100px;
    }

    .pths-div2 .pths-img2 {
        width: 30px;
    }

    .deos-p {
        font-size: 0.8rem;
    }

    .deos-img {
        height: 200px;
    }

    .producto-imagen {
        height: 100px;
    }

    .deos-p2 {
        font-size: 1.2rem;
    }

    .banner-img {
        height: 300px;
    }

    .banner-h1 {
        font-size: 2rem;
    }

    .banner-p {
        font-size: 0.9rem;
    }

    .carritoForm {
        padding: 15px;
    }

    .btn-carrito2 {
        font-size: 0.9rem !important;
        padding: 5px 10px !important;
    }

    .cos-div2 {
        height: 200px;
        padding: 10px;
        overflow: hidden;
    }

    .cos-div2 .deos-cantidad {
        width: 100px;
    }

    .cos-div2 .deos-cantidad input {
        width: 40px;
    }

    .cos-div2 .deos-cantidad button {
        width: 40px;
        padding: 0;
    }

    .cos-img {
        height: 80%;
        width: 100%;
    }

    .btn-eliminar {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }

    .footer-img {
        width: 150px;
    }

}


@media screen and (max-width: 767px) {
    .nav-div:last-child {
        display: none;
    }

    .nav-div2 {
        margin-left: 10px;
    }

    /* Mostrar botón hamburguesa */
    .menu-toggle {
        display: flex !important;
    }

    /* Mostrar sidebar cuando está activo */
    .sidebar-mobile.active {
        transform: translateX(0);
    }

    /* Mostrar overlay cuando el sidebar está activo */
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-black,
    .nav-div2 {
        display: none;
    }

    .w-100 {
        height: 300px;
        object-fit: cover;
    }

    .os-p {
        top: 55%;
        width: 80%;
        font-size: 1rem;
    }

    .os-span {
        font-size: 1.5rem;
    }

    .fs-div {
        width: 80%;
    }

    .fs-div2 {
        margin-bottom: 20px
    }


    #productos-destacados {
        width: 100%;
    }

    .fs-p {
        font-size: 1.5rem;
    }

    .fs-div4 {
        margin-bottom: 25px;
    }

    .fs-a2 {
        width: 90%;
    }

    .fs-img2 {
        height: 220px;
    }

    .fis-div {
        width: 90%;
        right: 50%;
    }

    .fis-img {
        height: 1000px;
    }


    .fis-img2 {
        width: 100px;
        object-fit: contain;
        height: 100px;
    }

    .fis-div4 {
        margin-bottom: 25px;
        height: auto;
    }

    .fis-div3 {
        height: auto;
        padding-bottom: 20px;
    }

    .fis-div3 .fis-r {
        margin: -90px auto 0;
    }

    .ss-img {
        height: 160px;
    }

    .ss-div {
        width: 90%;
        left: 50%;
    }

    .ss-p {
        font-size: 1.5rem;
        margin: 0;
    }

    .ss-p2 {
        font-size: 1rem;
        width: 100%;
        margin: 10px 0;
        white-space: normal;
        text-align: justify;
    }

    .ths-img {
        height: 160px;
    }

    .ths-p {
        font-size: 1.5rem;
        margin: 0;
    }

    .footer-div {
        flex-direction: column;
    }

    .footer-div3 {
        justify-content: center;
    }

    .footer-div4 {
        width: 90%;
    }

    .ts-p {
        font-size: 1.4rem;
        white-space: normal;
        text-align: center;
    }

    .ts-p2 {
        width: 90%;
        margin: 0 auto 20px;
    }

    .ts-div2 {
        width: 90%;
    }

    .pos-img {
        height: 300px;
    }

    .pos-p {
        font-size: 1.5rem;
        top: 55%;
        width: 80%;
    }

    .pts-div2,
    .pts-div3 {
        padding: 10px 15px;
        width: 50%;
    }

    .pts-p {
        font-size: 0.8rem;
    }

    .deos-p {
        margin-left: 0;
        font-size: 0.8rem;
    }

    .deos-div2 {
        width: 100%;
    }

    .deos-p2 {
        margin-top: 25px;
    }

    .deos-archivos {
        display: block;
    }

    .producto-relacionado {
        margin-bottom: 20px;
    }

    .pths-p,
    .pths-p2 {
        font-size: 0.9rem;
        width: 90%;
        margin: 0 auto 20px;
    }

    .banner-img {
        height: 260px;
    }

    .banner-text {
        width: 80%;
        right: 50%;
    }

    .banner-h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .banner-p {
        font-size: 1rem;
        text-align: center;
    }


    .carritoForm {
        width: 100%;
        margin: 0 auto;
        padding: 15px;
    }

    #nombre {
        margin-bottom: 20px;
    }

    .btn-carrito2 {
        font-size: 0.9rem !important;
        padding: 5px 10px !important;
    }

    .cos-div {
        width: 90%;
        margin: 10% auto;
    }

    .cos-div2 {
        height: 200px;
        padding: 10px;
        overflow: hidden;
    }

    .cos-div2 .deos-cantidad {
        width: 100px;
    }

    .cos-div2 .deos-cantidad input {
        width: 40px;
    }

    .cos-div2 .deos-cantidad button {
        width: 40px;
        padding: 0;
    }

    .cos-img {
        height: 80%;
        width: 100%;
    }

    .btn-eliminar {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }

    .carrito-vacio p {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .carrito-vacio a {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

}