@import url('https://fonts.googleapis.com/css2?family=Sofia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chicle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


*{
    padding: 0;
    outline: none;
    border: none;
    margin: 0;
    font-family: "Karla", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .2s linear;
}



:root{

    /*Fuentes Empieza*/
    --Sofia:"Sofia", cursive;
    --Karla:"Karla", sans-serif;
    --Dancing:"Dancing Script", cursive;
    --Chicle:"Chicle", serif;
    --Description:"Pacifico", cursive;
    --QuickSand: "Quicksand", sans-serif;
    /*Fuentes Termina*/

    /*Base de Colores Empieza*/
    --black100:#000;
    --black70:#202020;
    --black50:#242424;
    --gray:#808080;
    --graymimd:#5c5c5c;

    --brow10:#e7b8a1;
    --brown50:#8a6756;
    --brown70:#4e2917;
    --brown100:#3e1704;

    /*Acentos Empieza*/
    --mostaza:#e2b857;
    --turquesa:#a8dadc;
    --frambuesa:#d45d5d;
    --malva:#bfa0c9;
    --cobre:#cc6b49;
    --verdesalvia:#b8c2b1;
    /*Acentos Termina*/

    /*Base de Colores Termina*/
}





html{
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
html::-webkit-scrollbar{
    width:.7rem;
}
 html::-webkit-scrollbar-track{
    background-color: transparent;
}
 html::-webkit-scrollbar-thumb{
    background-color: var(--brown50);
    border-radius: 5rem;
}

section{
    padding: 2rem 4%;
    min-height: 100vh;
}

body{
    overflow-x: hidden;
}











/*Animación Item Agregado Empieza*/
.aviso-carrito {
    position: fixed;
    top: 1.5rem;
    left: -100%;
    font-size: clamp(.5rem, 3vw, 1.1rem);
    background-color: #28a745; /* verde éxito */
    color: #fff;
    padding: .6rem 1.2rem;
    border-radius: 5px;
    z-index: 999999;
    animation: avisoFadeIn 0.6s forwards;
    font-weight: bold;
    width: 35%;
    text-align: center;
}

@keyframes avisoFadeIn {
    to {
        left: 50%;
        transform: translateX(-50%);
    }
}

.fade-out {
    animation: avisoFadeOut 0.8s forwards;
}

@keyframes avisoFadeOut {
    from {
        left: 50%;
        transform: translateX(-50%);
    }
    to {
        left: 150%;
        opacity: 0;
    }
}

/*Animación Item Agregado Termina*/









/*Sección Inicio Empieza*/
.inicio{
    min-height: 30vh;
    cursor: default;
    background: #ffffff;
}

.inicio h1{
    font-family: var(--Dancing);
    font-weight: bolder;
    width: 100%;
    border-bottom: 1px solid #ddd;
    font-size: clamp(3rem, 7vw, 5rem);


}


.inicio p{
    color:rgb(109, 109, 109);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.inicio h2{
    margin-top: 1rem;
    color: #535353;
    font-weight:400;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.inicio .container{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    min-height: 30vh;
    padding: 1rem;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    height: 100%;
}
.inicio .container a{
    flex: 1 1 10rem;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(0, #f4f4f4, #fff);
    position: relative;
    overflow: hidden;
    width: 100%;
    outline: 5px solid #ffffff;
    outline-offset: -1px;
}

.inicio .container a .heading{
    display: flex;
    flex-direction: column;
    height:100%;
    gap: 1rem;
    
}
.inicio .container a img{
    position: absolute;
    bottom: -2%;
    left: -15%;
    height: 70%;
    filter: drop-shadow(3px 3px 5px #888);
}
.inicio .container a .heading h4{
    text-align: right;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    color: #ffffff;
    background:linear-gradient(-45deg, #000000,#3d3d3d);
    border-bottom: 1px solid #eee;
    font-family: var(--QuickSand);
    font-weight: 900;
    padding: .2rem .5rem;
}

.inicio .container a .heading p{
    padding: .5rem;
    border-radius: 7px;
    height: 100%;
    font-size: .8rem;
    text-align: right;
    width: 80%;
    margin-left: auto;
    color: #000000;
    z-index: 5;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.5);
    margin-right: .5rem;
    backdrop-filter: blur(2px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.090);
    border: 1px solid #d8d8d8;
}

.inicio .container a .heading i{
    margin-left: auto;
    margin-right: .5rem;
    margin-bottom: .5rem;
    font-size: 2rem;
    color: #4d4d4d;
    transform: translateY(150%);
}

.inicio .container a:hover .heading i{
    transform: translateY(0) rotate(360deg);
}




.inicio h3{
    color: #fff;
    margin-bottom: .5rem;
}
.inicio .containerdos{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.inicio .containerdos a{
    flex: 1 1 10rem;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    border: 2px solid #202020;
    padding: .5rem;
    text-align: center;
    color: var(--mostaza);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}
.inicio .containerdos a:hover{
    color: rgb(0, 255, 242);
    border: 2px solid rgb(0, 255, 242);
    border-radius: 7px;
    background: radial-gradient(rgb(0, 30, 126), black 75%);
    text-shadow: 0 0 15px rgb(0, 247, 255),
                 0 0 25px rgba(0, 255, 179, 0.4);
    box-shadow: 0 0 15px rgba(0, 140, 255, 0.685),
                0 0 45px rgba(0, 140, 255, 0.5);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.inicio .containerdos a:nth-child(4){
    font-size: clamp(.8rem, 2vw, 1rem);
}
.inicio .containerdos a i{
    font-size: clamp(2.2rem, 5vw, 3rem);
}
/*Sección Inicio Termina*/




/*Banner Grid Productos Empieza*/
.gridProductos{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 20vh;
    gap: 1rem;
    background: #f9f9f9;
}

.gridProductos h1{
    font-size: clamp(1.5rem, 3vw, 4rem);
    color: #444;
    font-weight: 600;
}

.gridProductos .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: .5rem;
    padding: .5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0, .080);
    width: 100%;
}

@media(max-width:1200px){
    .gridProductos .container{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
        gap: .5rem;
        padding: .5rem;
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 8px 15px rgba(0,0,0, .080);
        width: 100%;
    }
}


.gridProductos .container a{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(45deg, #000000, #383838);
    border-radius: .5rem;
    box-shadow: 0 5px 10px rgba(0,0,0, .280);
    overflow: hidden;
    border: 2px solid #555;
    transition: .3s ease-in-out !important;
    height: 12rem;
}

.gridProductos .container a:hover{
    background: linear-gradient(45deg, #000000, #5f5f5f);
    box-shadow: -7px 7px 7px rgba(0,0,0, .6);
    
}


.gridProductos .container a .heading{
    text-align: center;
    background: #000;
    width: 100%;
    border-bottom: 1px solid #555;
}
.gridProductos .container a:hover .heading{
    background: linear-gradient(45deg, #222, #472200);
}


.gridProductos .container a .heading h2{
    font-size: .8rem;
    color: #eee;
    padding: .5rem;
}

.gridProductos .container a:hover .heading h2{
    color: #00ff95;
}

.gridProductos .container p{
    color: #ffdd6d;
    font-size: .7rem;
    padding: .3rem;
    margin-bottom: auto;
}

.gridProductos .container a .gridPics{
    display: flex;
    width: 100%;
    gap: .2rem;
    align-items: center;
    justify-content: center;
    padding: .5rem;
}

.gridProductos .container a .gridPics img{
    height: 2.2rem;
    width: 2.2rem;
    border-radius: 50%;
    border: 1px solid #888;
}
/*Banner Grid Productos Termina*/







/*Promo Morning Empieza*/
.promoMorning{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: #d6dbe2;
    width: 100%;
    cursor: default;
    min-height: 50vh !important;
}

.promoMorning .heading{
    width: 100%;
}
.promoMorning .heading h1{
    font-size: clamp(2rem, 5vw, 2.5rem);
    width: 100%;
    height: 5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.090);
    padding: .5rem;
    background: linear-gradient(0, #000, #3f3f3f);
    color: #eee;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.promoMorning .container{
  padding: .5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.090);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  height: 100%;
  min-height: 80vh;
}
.promoMorning .container .dashBoard{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .7rem;
    background: #e6e6e6;
    padding: 3px;
    height: 2.7rem;
}





.promoMorning .container .dashBoard .allMorning{
    padding: .5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 800;
    color: #555;
    font-size: clamp(.8rem, 2vw, 1rem);
    z-index: 5;
}

.promoMorning .container .dashBoard .allMorning.clear{
    color: #aaa;
    font-weight:600;
}

.promoMorning .container .dashBoard .promoMonday{
    padding: .5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    color: #aaa;
    font-size: clamp(.8rem, 2vw, 1rem);
    z-index: 5;
}
.promoMorning .container .dashBoard .promoMonday.grow{
    font-weight: 800;
    color: #555;   
}





.promoMorning .container .dashBoard .bgForm{
    background: #ffffff;
    height: 2.3rem;
    width: 50%;
    display: flex;
    border-radius: .7rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    cursor: default;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 3;
    transition:all .4s cubic-bezier(.23,.48,.3,1.1) !important;
}

.promoMorning .container .dashBoard .bgForm.right{
    left: 49.6%;
}





.promoMorning .container .promosCont{
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 60vh;
}
.promoMorning .container .promosCont .promoA{
    position: absolute;
    top: 0;
    left: 102%;
    width: 100%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
    min-height: 50vh;
    background-color:#272727;
    background-image: url(/images/resources/promoMorning.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 50%;
    height: 100%;
    transition:all .4s cubic-bezier(.23,.48,.3,1.1) !important;
}

@media(max-width:1200px){
    .promoMorning .container .promosCont .promoA{
        background-size: 100%;
    }
}


.promoMorning .container .promosCont .promoA.hide{
    left: -102%;
}
.promoMorning .container .promosCont .promoA h1{
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 700;
    text-shadow: -1px 2px 2px #000;
}

.promoMorning .container .promosCont .promoA h2{
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 900;
    color: #eeff00;
    text-shadow: -1px 2px 3px #000;
}






.promoMorning .container .promosCont .promoB{
    position: absolute;
    top: 0;
    left: 102%;
    width: 100%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
    min-height: 50vh;
    background-color:#272727;
    background-image: url(/images/resources/cookiesflying.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 60%;
    height: 100%;
    transition:all .4s cubic-bezier(.23,.48,.3,1.1) !important;
}

@media(max-width:1200px){
    .promoMorning .container .promosCont .promoB{
        background-size: 100%;
    }
}

.promoMorning .container .promosCont .promoB.show{
    left: 0;
}
.promoMorning .container .promosCont .promoB h1{
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 700;
    text-shadow: -1px 2px 2px #000;
}

.promoMorning .container .promosCont .promoB h2{
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 900;
    color: aqua;
    text-shadow: -1px 2px 3px #000;
}
.promoMorning .container .promosCont .promoB span{
    font-size: 5rem;
    color: #ffffff;
    margin-block:1rem ;
    font-weight: 900;
    background: linear-gradient(45deg, #ff4500, #f800cf);
    padding: .5rem;
    width: 7rem;
    height: 7rem;
    display: flex;
    border-radius: 50%;
    align-items: center;
    outline: 5px solid #ffd000;
    outline-offset: 5px;
    box-shadow: 0 8px 15px rgb(0, 0, 0);
}
.promoMorning .container .promosCont .promoB span strong{
    font-weight: 500;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: auto;
    margin-top: 1rem;
}



.promoMorning .container .promosCont .promoB a{
    font-size: clamp(.7rem, 2vw, .9rem);
    padding: .5rem 2rem;
    margin-top: auto;
    margin-bottom: .5rem;
    border-radius: 25px;
    background: #88ff00;
    width: max-content;
    font-weight: 900;
    color: #000;
}




/*Promo Morning Termina*/
/*#F5BA41*/

/*Sección Glovo Empieza*/
.glovoDelivery{
    min-height:10vh ;
    background:#F5BA41;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    cursor: default;
}

.glovoDelivery h1{
    font-size: clamp(1.7rem, 3vw, 3rem);
    color:#fff;
}

.glovoDelivery a{
    width: 100%;
    text-align: center;
}

.glovoDelivery a svg{
    width: calc(100% - 50%);
}


.glovoDelivery .footLinks{
    width: 100%;
}

.glovoDelivery .footLinks h2{
    font-size: clamp(.8rem, 3vw, 1.5rem);
    color: #333;
}

.glovoDelivery .footLinks .links{
    display: flex;
    gap: .3rem;
    width: 100%;
    margin-block: .5rem;
}
.glovoDelivery .footLinks .links a{
    padding: .3rem 1rem;
    border-radius: 25px;
    background:#00A082 ;
    color: #fff;
    width: max-content;
    font-weight: 700;
}
/*Sección Glovo Termina*/




















@media(max-width:1200px){

    .banner .swiper .swiper-wrapper .swiper-slide  img{
        position: absolute;
        left: 45%;
        top: -80rem;
        object-fit: contain;
        height: 200rem;
    }

    .inicio .container a .heading i{
    margin-left: auto;
    margin-right: .5rem;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    color: #4d4d4d;
    transform: translateY(0);
}




    .banner .swiper .swiper-wrapper .swiper-slide .containerdos p{
        margin-top: auto;
    }
    .swiper-button-next,
    .swiper-button-prev{
        top: 73% !important;
    }
}