/********** Template CSS **********/
:root {
    --primary: #F39200;
    --light: #F1F8FF;
    --dark: #2B2B2B;
}


@font-face {
    font-family: 'Secundaria';
    src: url(../css/fonts/Bondrians.ttf) format('truetype');
    

    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'tituloPrin';
    src: url(../css/fonts/Mark-Black.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




.ff-secondary {
    font-family: 'Secundaria' !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Titulos', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    padding: 20px;
    max-height: 200px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 170px;
    max-width: 190px;
}

.typingContainer{
        margin-top: 100px;
    }

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .sticky-top .navbar-dark .navbar-brand img {
        max-height: 240px;
        max-width: 300px;
    }
}

@media (max-width: 1200px) {

.typingContainer, .parrilla{
        margin-top: 100px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }

    


}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(#2b2b2bc0, #2b2b2bc0), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 50px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/

.footer{
    background-color: #2B2B2B;
    
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
    background-color: #2B2B2B;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/*** MANEJO CSS CUSTOM ***/


/*** Animacion del primer texto del inicio ***/
#typer{
    position: relative;
    font-family: 'tituloPrin' !important;
    font-size: 50px;
}

.textoInicio{
    font-family: 'tituloPrin' !important;
    font-size: 50px;
}

#typer::before{
    content: 'PRUEBA';
    color: #F39200;
    animation: words 20s infinite;
}

#typer::after{
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;

    background-color: #2B2B2B; /* o cualquier color claro */
     

    border-left: 2px solid #F39200;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
}



@keyframes cursor{
    to{
        border-left: 2px solid rgb(48, 48, 48);
    }
}

@keyframes words{
    0%, 20%{
        content: "MOMENTOS";
    }
    21%, 40%{
        content: "SABORES";
    }
    41%, 60%{
        content: "RECUERDOS";
    }
    61%, 80%{
        content: "ENCUENTROS";
    }
    81%, 100%{
        content: "AMIGOS";
    }
}

@keyframes typing{
    10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95%{
        width: 0px;
    }
    5%,20%,25%,40%,45%,60%,65%,80%,85%{
        width: calc(100% + 8px);
    }
}

/*** LOGO RK para todas las pantallas ***/

.logoRK{
    width: 220px;
    margin-left: 70px;
    transition: none !important;
}

.logoRK.scrolled {
    width: 110px;
    height: 80px;
}

.navbar{
    transition: all 0.3s ease;
    font-family: 'Titulos';
}

.dropdown-menu{
    border-radius: 10px;
    color: #ffffff;
    background-color: #2b2b2be0;
    position: relative;
    padding: 10px 15px;
}


.dropdown-item:nth-child(1) {
    animation-delay: 0.05s;
}
 .dropdown-item:nth-child(2) {
    animation-delay: 0.1s;
}
 .dropdown-item:nth-child(3) {
    animation-delay: 0.15s;
}
.dropdown-item:nth-child(4) {
    animation-delay: 0.2s;
}
.dropdown-item:nth-child(5) {
    animation-delay: 0.25s;
}
 .dropdown-item:nth-child(6) {
    animation-delay: 0.3s;
}
 .dropdown-item:nth-child(7) {
    animation-delay: 0.35s;
}
 .dropdown-item:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes itemsDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 .dropdown-item{
    color: #ffffff;
    opacity: 0;
    animation: itemsDropdown 0.6s ease forwards;
    
}

.dropdown-item:hover{
    border-radius: 10px;
    color: #ffffff;
    background-color: #F39200;
}


.dropdown-item span {
  display: inline-block;
  transition: transform 0.4s ease;
}

.dropdown-item:hover span {
  transform: translateX(10px);
}


.dropdown-menu a{
    position: relative;
    padding: 10px 15px;
    margin-top: 3px;   
}


.nav-item{
    font-weight: 900;
}

@media (min-width: 991.99px) {

    .carrito {
       display: none;
    }

    .usuario {
     display: none;
    }

 }

 @media(max-width: 1025px){

    .logoRK{
        margin-left: -30px;     
    }

 }

@media (max-width: 991.98px) {

  .navbar {
    position: relative;
    justify-content: center;
    align-items: center;
  }


    .navbar-toggler.fixed-toggler {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1055;
    }

    .carrito {
        color: #F1F8FF;
        position: absolute;
        top: 7.5rem;
        right:1.8rem;
        z-index: 1055;
    }

    .usuario {
        color: #F1F8FF;
        position: absolute;
        top: 4.5rem;
        right: 1.8rem;
        z-index: 1055;
    }

    .carritoCel {
       display: none;
    }

    .usuarioCel{
      display: none;
    }


    .logoRK{
        width: 190px;
        height: 155px;      
    }

    .dropdown-menu{
        border-radius: 10px;
        color: #ffffff;
        background-color: #505050;
        position: relative;
        padding: 10px 15px;
        margin-top: 3px;
    
    }

    .navbar-collapse{
        background-color: #2b2b2bb7;
    }

    .contentPara {
        font-size: 14px !important;
      
    }

    .textoRedesContacto{
        font-size: 14px;
    }


}


@media (max-width: 500px) {


    .contentPara {
        font-size: 13px !important;
      
    }

    .logoRK{
        width: 190px;
        height: 155px;   
        margin-left: 30px;
    }

    .contPrinCont{
        margin-top:50px;
    }

   
}

.redesSociales{
  gap: 20px;
  margin-left: 30px
}

.redesSociales a {
    display: block;
    transition: transform 2s ease;
}

.redesSociales a:hover{
  transform: rotate(360deg);
  
}


/*** PAGINA DE NOSOTROS ***/

.beneficio {
    padding: 5px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s ease-in;
    border-radius: 10px;
}



.beneficio:hover {
    height: 100%;
}

.beneficio small {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.beneficio:hover small {
    opacity: 1;
    max-height: 100px;
}


.certificados {
    padding: 5px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s ease-in;
    border-radius: 10px;
    height: 300px;
    width: 300px;
    max-width: 300px;
    margin: auto;
}

.certificados img {
    height: 200px;
}

.certificados:hover {
    height: 100%;
}

.certificados .textoCertificado {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    
}

.certificados:hover .textoCertificado {
    opacity: 1;
    max-height: 100%;
}


.parallax-section {
    background-image: linear-gradient(#2b2b2bc4, #2b2b2bd5), url(../img/bg-hero.jpg); 
    background-attachment: fixed;       
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.contentPara {
    font-size: 20px;
    font-family: 'Principal', sans-serif;
    font-weight: bold;
    padding: 20px;
    
}

.navbar-nav .nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    line-height: 1.2 !important;
}



.btn-whatsapp{
        position:fixed;
        width: 50px;
        height: 50px;
        line-height: 65px;
        bottom:110px;
        right: 43px;
        background-color: #5ccf2a;
        color: white;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    }

    .btn-whatsapp:hover{
        text-decoration: none;
        color: #5ccf2a;
        background-color: white;
        animation: shake 1s;
    }



        @keyframes shake {

            0% { transform: translateX(0); }
            20% { transform: translateX(-5px); }
            40% { transform: translateX(5px); }
            60% { transform: translateX(-5px); }
            80% { transform: translateX(5px); }
            100% { transform: translateX(0); }
        }



 /* PAGINA DE CONTACTO */


  .btn-contacto-redes{
    
        width: 60px;
        height: 60px;
        line-height: 70px;
        background-color: rgb(243, 146, 0);
        color: white;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    }

    .btn-contacto-redes:hover{
        text-decoration: none;
        color: #ffffff;
        background-color: rgb(243, 146, 0);
        animation: shake 1s;
    }


    .infoGenCont{
        font-size: 14px;
    }


     /* PAGINA DE FAQs */

     .contenedorFaqs{

        
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
        padding: 15px;
        width: 80%;
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
     }


     .contenedorPreguntas{
        color: #000000;
        width: 100%;
        margin-bottom: 10px;
        border-bottom: 2px solid #b6b6b6;
        padding: 30px;
     }

     .respuesta{
        color: #6e6e6e;
        margin-top: 15px;
        margin-left: 20px;
        overflow-wrap: break-word;  
        word-break: break-word;
     }

     details summary {
        list-style: none;
    }

    details summary::before {
        content: "+"; /* icono cuando está cerrado */
        display: inline-block;
        margin-right: 10px;
        font-weight: bold;
        font-size: 22px;
        color: rgb(243, 146, 0);
        transition: transform 0.4s ease;
    }

    details[open] summary::before {
        content: "-";
        font-size: 30px;
        transform:rotate(360deg);
        color: #f39200;
    }


    @media(max-width: 991.98px){
        
        .textoFaqs{
            font-size: 20px
        }

  
    }


    /* PAGINA DE INICIO*/


        /*Iconos Prod*/

    .img-icon {
        color: #F1F8FF;
        width: 65px;
        height: 65px;
        transition: filter 0.5s ease-in;
    }

    .ImgProd:hover .img-icon {
        filter: invert(63%) sepia(21%) saturate(7161%) hue-rotate(7deg) brightness(101%) contrast(104%);
    }


    .btn-prod{
    
        width: 85px;
        height: 85px;
        line-height: 80px;
        background-color: rgb(243, 146, 0);
        color: white;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
        transition: all 0.5s ease;
        border: 2px solid transparent;
    }

    .btn-prod:hover{
        text-decoration: none;
        color: #ffffff;
        background-color: rgb(255, 255, 255);
        border:  2px solid #F39200;
        transform: scale(1.2);
    }

    @media(max-width: 992.99px){
        
        .img-icon {
           
            width: 50px;
            height: 50px;
         
        }


        .btn-prod{
        
            width: 70px;
            height: 70px;
            line-height: 60px;
        }
  
    }


     @media(max-width: 400px){
        
        .img-icon {
           
            width: 40px;
            height: 40px;
         
        }


        .btn-prod{
        
            width: 60px;
            height: 60px;
            line-height: 55px;
        }
  
    }

/* === SLIDER INICIO === */
.sliderInicio {
  width: 100%;
  max-height: 345px;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  will-change: transform;
}

.sliderInicio .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sliderInicio-next,
.sliderInicio-prev {
  background-color: #F39200;
  color: white;
  padding: 15px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
}
.sliderInicio-next::after,
.sliderInicio-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.sliderInicio-next:hover,
.sliderInicio-prev:hover {
  background-color: #cc7700;
}
.sliderInicio-pagination .swiper-pagination-bullet {
  background-color: #797979;
  opacity: 0.6;
}
.sliderInicio-pagination .swiper-pagination-bullet-active {
  background-color: #F39200;
  opacity: 1;
}


/* === SLIDER PRODUCTOS DESTACADOS === */

.swiper-container-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
 
}
.sliderDestacados {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.sliderDestacados .swiper-wrapper {
  display: flex;
  align-items: center;
}
.sliderDestacados .swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrapper {
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}

.img-slider{
    transition: transform 1s ease;
}

.card:hover .img-slider{
    transform: scale(1.2) !important;
}


.card {
    height: 300px;
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .info {
  padding: 15px;
}

.swiper-slide{
  transform: scale(0.8) !important;
  transition: all 0.2s ease;
}

.swiper-slide-active {
  transform: scale(1) !important; 
}

.card h3 {
  font-size: 18px;
}

.sliderDestacados-next,
.sliderDestacados-prev {
  padding: 10px;
  background-color: #f39200;
  border-radius: 50%;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.sliderDestacados-next:hover,
.sliderDestacados-prev:hover {
  background-color: #f5c27a;
}
.sliderDestacados-pagination .swiper-pagination-bullet {
  background-color: #f39200;
  opacity: 0.5;
}
.sliderDestacados-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.sliderDestacados-pagination{
    margin-top: 20px !important;
}

.sliderDestacados-pagination{
     bottom: -4px !important;
}


/* === ESTILOS PARA LAS CAJAS DE LOS PRODUCTOS === */

.info{
    text-align: center !important;
}

.cart-precio {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addCart{
    transition: transform 0.5s ease;
}

.addCart:hover{
    transform: scale(1.4);
}

.precio {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #F39200;
    margin: 0;
}

.precio-antiguo {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
    font-weight: normal;
    font-size: 15px;
}



/* SECCION DE PANELES */

.containerPanels{
    display: flex;
    width: 600px;
    height: 300px;
}

.panel{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 50px;
    color: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    transition:  all 700ms ease-in;

}

.panel.active{
    flex: 5;
}



@media(max-width: 1399.99px){
    .containerPanels{
        width: 480px;
    }

}

@media(max-width: 912.99px){
    .containerPanels{
        width: 650px;
    }

}


@media(max-width: 767px){
    .containerPanels{
        width: 430px;
       
    }

}


@media(max-width: 600.99px){
    .containerPanels{
        width: 350px;
    }

}


@media(max-width: 360.99px){
    .containerPanels{
        width: 300px;
    }

}

/* SECCION DE PRODUCTOS POPULARES*/

.img-icon-popular{
    
    width: 80px;
    height: 80px;
}

@media(max-width:767px){
    .img-icon-popular{
    
    width: 55px;
    height: 55px;
}



}


@media(max-width:357px){
    .img-icon-popular{
    
    width: 40px;
    height: 40px;
}



}


  /*== SLIDER RES ==*/


.slider-res {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.slider-res .swiper-wrapper {
  display: flex;
  align-items: center;
}
.slider-res .swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderRes-next,
.sliderRes-prev {
  padding: 10px;
  background-color: #f39200;
  border-radius: 50%;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.sliderRes-next:hover,
.sliderRes-prev:hover {
  background-color: #f5c27a;
}
.sliderRes-pagination .swiper-pagination-bullet {
  background-color: #f39200;
  opacity: 0.5;
}
.sliderRes-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.sliderRes-pagination{
     bottom: -4px !important;
}


 /*== SLIDER CERDO ==*/


.slider-cerdo {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.slider-cerdo .swiper-wrapper {
  display: flex;
  align-items: center;
}
.slider-cerdo .swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderCerdo-next,
.sliderCerdo-prev {
  padding: 10px;
  background-color: #f39200;
  border-radius: 50%;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.sliderCerdo-next:hover,
.sliderCerdo-prev:hover {
  background-color: #f5c27a;
}
.sliderCerdo-pagination .swiper-pagination-bullet {
  background-color: #f39200;
  opacity: 0.5;
}
.sliderCerdo-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.sliderCerdo-pagination{
     bottom: -4px !important;
}




 /*== SLIDER ABARROTES ==*/


.slider-abarrotes {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.slider-abarrotes .swiper-wrapper {
  display: flex;
  align-items: center;
}
.slider-abarrotes .swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderAbarrotes-next,
.sliderAbarrotes-prev {
  padding: 10px;
  background-color: #f39200;
  border-radius: 50%;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.sliderAbarrotes-next:hover,
.sliderAbarrotes-prev:hover {
  background-color: #f5c27a;
}
.sliderAbarrotes-pagination .swiper-pagination-bullet {
  background-color: #f39200;
  opacity: 0.5;
}
.sliderAbarrotes-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.sliderAbarrotes-pagination{
     bottom: -4px !important;
}



/* SECCION DE PRODUCTOS PROPIOS*/

.slider-propios {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.slider-propios .swiper-wrapper {
  display: flex;
  align-items: center;
}
.slider-propios .swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderPropios-next,
.sliderPropios-prev {
  padding: 10px;
  background-color: #f39200;
  border-radius: 50%;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.sliderPropios-next:hover,
.sliderPropios-prev:hover {
  background-color: #f5c27a;
}
.sliderPropios-pagination .swiper-pagination-bullet {
  background-color: #f39200;
  opacity: 0.5;
}
.sliderPropios-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.sliderPropios-pagination{
     bottom: -4px !important;
}

/* SECCION DE REGISTRO DE CORREO*/

.parallax-section-registro {
    background-image: linear-gradient(#2b2b2bc4, #2b2b2bd5), url(../img/bg-hero.jpg); 
    background-attachment: fixed;       
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}


.contentParaRegistro {
    font-size: 20px;
    font-family: 'Principal', sans-serif;
    font-weight: bold;
    padding: 20px;
    
}


@media(max-width:776.99px){

    .contentParaRegistro  {
        font-size: 8px;
    
    }

    .contentParaRegistro h5{
        font-size: 13px;
    }

    .contentParaRegistro h1{
        font-size: 15px;
    }


}

/*** PAGINA DE PRODUCTOS ***/


 /* Categoriass */
.categorias{
    font-family: 'Titulos';
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    color:#585858;

}

.activeCat{
    color: #F39200;
}

.catProd a{
    border-bottom: 2px solid #cacaca;
    transition: transform 0.8s ease !important;
}

.catProd:hover a{
    color: #F39200;
   transform: translateX(10px);
}


 /* Filtro de precio */

.noUi-connect {
    background: #F39200;
}

.noUi-handle {
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: #2B2B2B; 
    box-shadow: none;
}



.btn-filtro{
    background-color: #2B2B2B;
    color: white;
}

.btn-filtro:hover{
    background-color: #7c7c7c;
    color: white;
}


 /* Boton de Ordenamiento */

.filtro-ordenamiento{
    margin-bottom: 10px !important;
}



#orden{
    margin-left: 5px;
    border-radius: 10px;        
    background-color: #2b2b2b; 
    color: white;               
    padding: 5px 10px;         
    border: none;
    cursor: pointer; 
    transition: all 0.5s ease; 

    /*quita el estilo nativo de los navegadores*/
    appearance: none;           
    -webkit-appearance: none;   
    -moz-appearance: none;      

    
}

 /* Etiqueta del filtro de precio */

.filtro-chip {
    background-color: #F39200;
    color: #fff;
    padding: 3px 8px;
    margin-left: 5px;
    border-radius: 12px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    cursor: default;
}

.filtro-chip .close-chip {
    margin-left: 5px;
    font-weight: bold;
    cursor: pointer;
}


#filtros-activos{
    display: inline-flex;
}

@media (max-width: 767.99px){
    
#filtros-activos{
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
}
    
}

.ver-productos{
    display: none;
}



/*** MODAL DEL PRODUCTO ***/


 /* Imagenes de los productos */

.image-preview-container {
    max-width: 500px;
    margin: auto;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
    background: #fff;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnails img:hover {
    transform: scale(1.05);
    border-color:#f39200;
}


.textoProdCompleto{
    border-radius: 12px;
    width: 70%;
    font-family: 'titulos';
    font-weight: bold;
    background-color: #dddddd; 
    color: rgb(59, 59, 59); 
    padding:10px; 
    margin-bottom:15px;
    margin-top: 15px;
}

.textoProdCompleto strong{
    color: #f39200;

}


 /* Contenedor Categorias Responsive */

@media (max-width: 991.99px){
    
    .contenedorCategorias{
        display: none;
    }

    .categoriasTitulo{
        display: none;
    }

    .textoProdCompleto  {

        width: 100%;

    }

    
}

@media (min-width: 991.99px){
    .contenedorCategoriasMovil{
        display:none;
    }

    .ver-productos{
        display: none;
    }

    .card:hover .ver-productos{
        display: block;
        background-color: #F39200;
    }

    .ver-productos:hover{
        background-color: #f3b256 !important; 
    }
}



/*** PAGINA DEL PRODUCTO COMPLETO ***/


  /* Productos relacionados */
#productos-relacionados #contenedor-productos .card {
  flex: 0 0 auto;
  width: 250px;
}


/*Boton de cantidad que va agregar de producto al carrito*/


.input-cantidad {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.input-cantidad input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
}

.input-cantidad button {
    width: 30px;
    border: none;
    background-color: #f8f9fa;
    cursor: pointer;
}

.input-cantidad button:hover {
    background-color: #e2e6ea;
}


/* VALORACIONES*/
.contenedorReseñas{
        color: #000000;
        width: 90%;
        border-bottom: 2px solid #b6b6b6;
        padding: 10px;

        word-wrap: break-word;
        overflow-wrap: break-word;
    }

.contenedorReseñas p {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.contentEnviarReview {
    flex: 1 1 35%;
    border: 1px solid #cecece;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contentEnviarReviewNueva {
    
    border: 1px solid #979797;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


.contenedorValoraciones {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}


#contenedor-reviews {
    flex: 1 1 60%;
}


@media (max-width: 991.99px){
    .contenedorReseñas{
        width: 100%;
    }
}

/* ESTRELLAS DE FORMULARIO DE RESEÑAS*/

  .rating {
    direction: rtl;
    unicode-bidi: bidi-override;
    font-size: 30px;
    display: flex;
    justify-content: center !important;
  }

  .rating input {
    display: none;
  }

  .rating label {
    cursor: pointer;
    color: #ccc;
  }

  .rating input:checked ~ label,
  .rating label:hover,
  .rating label:hover ~ label {
    color: #f39200;
  }


/* Boton cargar mas de las reseñas*/

.contenedorReseñas {
    display: none;
}

.contenedorReseñas:nth-child(-n+3) {
    display: block;
}

#contenedor-reviews.mostrar-todo .contenedorReseñas {
    display: block;
}


/*Boton para ordenar las reviews*/

#ordenReview{
    margin-left: 5px;
    border-radius: 10px;        
    background-color: #2b2b2b; 
    color: white;               
    padding: 5px 10px;         
    border: none;
    cursor: pointer; 
    transition: all 0.5s ease; 

    /*quita el estilo nativo de los navegadores*/
    appearance: none;           
    -webkit-appearance: none;   
    -moz-appearance: none;      

}


/*Zoom de las imagenes*/

.medium-zoom-overlay {
  z-index: 2008; /* Fondo oscuro */
}

.medium-zoom-image--opened {
  z-index: 2009; /* Imagen ampliada */
}





