@import url('https://fonts.googleapis.com/css2?family=Savate:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+SC:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


*{
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    outline: none;
    list-style: none;
    transition: all .2S linear;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
}
:root{
    --logo:"Dancing Script", cursive;
    --black:#1f1f1f;
    --softblack:#3b3b3b;
    --gray:#7b7b7b;
    --white:#fff;
    --softwhite:#f9f9f9;
    --midwhite:#eee;
    --gold:#e7bf0c;
    --orange:#ff5500;
    --red:#ff0000;
    --darkred:#960000;
    --precio:"Savate", sans-serif;
    --description:"Alumni Sans SC", sans-serif;
}


section{
    padding: 2rem 6%;
    min-height: 100dvh;
    cursor: default;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
body{
    overflow-x: hidden;
    background: #eee;
}
html::-webkit-scrollbar{
    width: .7rem;
}
 html::-webkit-scrollbar-track{
    background-color: transparent;
}
 html::-webkit-scrollbar-thumb{
    background-color: var(--gold);
    border-radius: 5rem;
}



/*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*/








/*Header Empieza*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    background: var(--darkred);
    box-shadow: 0 3px 8px rgba(0,0,0, .7);
    border-bottom: 2px solid var(--gold);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
}
.header .logoCont{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.header .logoCont img{
    width: 4rem;
}
.header .logoCont h1{
    font-family: var(--logo);
    color: var(--white);
    text-shadow: -2px 2px 3px #000;
    font-size: clamp(1rem, 3vw, 2.5rem);
}

/*Status Active Empieza*/
.header .storeStatus{
    margin-right: auto;
    margin-left: 1rem;
    width: min-content;
    cursor: default;
    background: var(--softblack);
    border-radius: 5px;
    border-radius: 5px;
    outline: 1px solid var(--gold);
}

.header .storeStatus .online,
.header .storeStatus .offline{
    display:none;
    align-items: center;
    gap: .5rem;
    flex-direction: column;
    font-size: clamp(.5rem, 2vw, .7rem);
    text-align: center;
    color: var(--white);
    padding: .5rem;
    width: max-content;
    border-radius: 3px;
    background: var(--softBlack);
}

.header .storeStatus p .greenOnline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #10a729;
}
.header .storeStatus .online.active,
.header .storeStatus .offline.active{
    display: flex;
}



.header .storeStatus p .greenOnline::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in;
    background: #10a729;
}


.header .storeStatus p .redOffline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #ff1900;
}
.header .storeStatus p .redOffline::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in;
    background: #ff1900;
}

@keyframes pulse{
    from{
        transform: scale(0.5);
        opacity: 1;
    }to{
        scale: (1.5);
        opacity: 0;
    }
}
/*Status Active Termina*/

.header .cartContainer{
    position: relative;
    margin-left: .5rem;
    padding: 5px;
    background: var(--black);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header .cartContainer .carrito{
    font-size: 1.5rem;
    color: var(--white);
}
.header .cartContainer .carrito.active{
    text-shadow:0 0 15px rgb(255, 187, 0) ;
    color: var(--gold);
}
.header .cartContainer .contItem{
    color: var(--midwhite);
}


.header .cartContainer .carrito:hover{
    color: var(--orange);
}




.header .navBar{
    background: var(--darkred);
}
.header .navBar a{
    color: var(--white);
    padding: 3px .2rem;
    font-family: var(--description);
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    outline: 1px solid transparent;
    width: 100%;
}
.header .navBar a:hover{
    color: var(--gold);
    background: #790000;
    border-radius: 3px;
    outline: 1px solid var(--gold);
}
.header .navBar span{
    color: var(--black);
    font-weight: 600;
    letter-spacing: 1px;
    padding:.7rem 3rem;
    background: var(--white);
    border-radius:30px ;
    display: none;
    position: absolute;
    z-index: 3;
    bottom: 5rem;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    cursor: pointer;

}
.header .navBar span:hover{
    background: greenyellow;
}

.header .menuBar{
    padding: .5rem;
    margin-left: 2rem;
    cursor: pointer;
    display: none;
}
.header .menuBar i{
    font-size: 1.8rem;
    color: var(--white);
}
/*Header Termina*/





/*Grid banner Empieza*/

.bannerCode{
    min-height: 10vh;
    height: 100%;
    width: 100%;
    margin-top: 5.2rem;
}

.bannerCode .container{
    background: #fff;
    padding: 1rem;
    border-radius: 7px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.075);

}

.bannerCode .container h1{
    font-size: clamp(2rem, 5vw, 5rem);
    color: #185070;
}
.bannerCode .container h1 i{
    color: #ff4500;
}

.bannerCode .container p{
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--gray);
}

/*Grid banner Termina*/





/*SecciÃ³n Buscador Empieza*/
.search{
    min-height: 10vh;
}

.search .container{
    background: url(/images/resources/mapBg.svg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 8px 15px rgba(0,0,0, .3);
}

.search .container img{
    width: 20%;
    border-radius: 50px;
    outline: 2px solid #dfdfdf;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
}

.search .container .bigCont{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
}

.search .container .bigCont .containerForm{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 50px;
    gap: .2rem;
}
.search .container .bigCont .containerForm label{
    font-size: clamp(1rem, 3vw, 1.2rem);
    width: max-content;
    padding: .5rem 1rem;
    color: #ffffff;
    font-weight: 800;
    margin-right: auto;
    background: #0088aa;
    border-radius: 7px;
}

.search .container .bigCont .containerForm input{
    padding: .5rem 1rem;
    width: 100%;
    border-radius:25rem;
    color: #136391;
    font-weight: bolder;
    font-size: 1.2rem;
    background: #ffffff;
    border: 1px solid #a0a0a0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.151);
}

.search .container .bigCont .containerForm input::placeholder{
        color: #61a9da;
        font-weight: 500;
        font-size: .8rem;
        font-style: oblique;
}

.search .container .bigCont .submit{
    cursor: pointer;
    background: #0756be;
    color: var(--white);
    position: relative;
    height: 2.5rem;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    overflow: hidden;
    border-radius: 7px;
}
.search .container .bigCont .submit:hover{
    background: #07479b;
}


/*SecciÃ³n Buscador Termina*/


/*SecciÃ³n Localizado Empieza*/
.locate{
    position: fixed;
    background: #eee;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    top: 0;
    left: -110%;
    z-index: 9999;
    cursor: default;
    opacity: 0;
}

.locate.active{
    left: 0;
    opacity: 1;
}



.locate .container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
    background: #f9f9f9;
    padding: .5rem;
    border-radius: 7px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    gap: .5rem;
}
.locate .container i{
    font-size: 2.5rem;
    color: #134269;
    cursor: pointer;
    margin-left: auto;
}
.locate .container i:hover{
    color:#002d52 ;
}

.locate .container p,
.locate .container span{
    text-align: left;
    width: 100%;
}

.locate .container .title{
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #243364;
    font-weight: bolder;
    text-align: center;
    font-weight: 400;
}
.locate .container .message{
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 2.2rem);
    color: #666;
    text-align: center;
}

/* .locate .container .message::first-letter{
    font-size: clamp(2rem, 3vw, 5rem);
    text-shadow: -3px 3px 3px rgba(0,0,0, .6);
} */

.locate .container .showContainer{
    width: 75%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    border-radius: 7px;
    margin-bottom: 1rem;
    background: #fff;
}

.locate .container .showContainer .shows{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(1rem, 2vw, 1.7rem);
    color: #191d52;
}



.locate .container .showContainer .shows .postalCode{
    font-size: clamp(.8rem, 3vw, 4rem);
    color: var(--white);
    padding: .5rem 3rem;
    background:#13567c;
    border-radius: 50px;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial !important;
}

.locate .container .showContainer .barrios{
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial !important;
    margin-bottom: 5rem;
}

.locate .container .showContainer .barrios h5{
    padding: .5rem;
    border-radius: 3px;
    background:#13567c;
}

.locate .container .showContainer .shows h5{
    margin-left: auto;
    color: #fff;
}


.locate .close{
    cursor: pointer;
    padding: .3rem 3rem;
    background:#0E9FE1;
    color: #fff;
    width: max-content;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.locate .close:hover{
    background:#0081bd;

}


/*SecciÃ³n Localizado Termina*/























@media(max-width:1200px){

    /*BotÃ³n Menu Empieza*/
    .header .menuBar{
        display: block;
    }
    /*BotÃ³n Menu Termina*/


    /*NavBar Empieza*/
    .header .navBar{
        position: absolute;
        top: 100%;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        background: var(--black);
        min-height: 96dvh;
        border-top: 1px solid var(--gold);
        padding: 1rem .5rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        background-image: url(/images/icons/favicon.png);
        background-repeat: no-repeat;
        background-size: 25%;
        background-position:50% 70%;
    }
    .header .navBar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .navBar span{
        display: block;
    }
    /*NavBar Termina*/


    .aviso-carrito {
    width: 75%;
}

        .search .bigCont .submit{
        width: 100%;
    }

    .search .bigCont .container label{
        display: none;
    }


    .search .bigCont .container input{
        width: 100%;
    }

    .locate .container .showContainer{
        width: 100%;
    }
    .locate .close{
        width: 100%;
        text-align: center;
    }

}