.itemsShopCont{
    display: flex;
    flex-direction: column;
    min-height: 10vh;
    background: #000;
    row-gap: 1rem;
    width: 100%;
    border-top: 2px solid #eee;
}
.itemsShopCont h1{
    color: #fff;
}




.itemsShopCont .addItemCont{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding:.7rem .5rem;
    border-radius: .4rem;
    background: linear-gradient(45deg, #bebebe, #e2e2e2);
    gap: .3rem;
}
.itemsShopCont .addItemCont span{
    padding: .3rem .6rem;
    font-size: clamp(.7rem, 2vw, 1.1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    background: #fff;
    border-radius: .5rem;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0, .2);
}
.itemsShopCont .addItemCont span:first-child{
    background: #ff0000;
    color: #fff;
}
.itemsShopCont .addItemCont span:last-child{
    background: #008000;
    color: #ffffff;
    box-shadow: 0 0 10px #06e906;
    border: 1px solid #48ff00;
}



.itemsShopCont .itemsCont{
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    padding: 1rem;
    background: #666;
    border-radius: 1rem;
    width: 100%;
}
.itemsShopCont .itemsCont .noItems{
    padding: 1rem;
    border-radius: .5rem;
    background: #ffa500;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff4500;
    font-size: clamp(1rem, 2vw, 1.3rem);
}
.itemsShopCont .itemsCont .noItems.active{
    display: flex;
}

.itemsShopCont .itemsCont .inputCont{
    width: 100%;
    display: flex;
    align-items: center;
    gap:.5rem;
    padding: .3rem;
    border-radius: 3px;
    background: #ddd;
    border: 1px solid #fff;
    box-shadow: 0 5px 10px rgba(0,0,0, .180);
}

.itemsShopCont .itemsCont .inputCont input{
    height: 1.2rem;
    width: 1.2rem;
    cursor: pointer;
}
.itemsShopCont .itemsCont .inputCont .textItem{
    font-size: clamp(.8rem, 2vw, 1rem);
    font-weight: 700;
}
.itemsShopCont .itemsCont .inputCont .textItem.done{
    font-style: oblique;
    text-decoration: line-through;
    color: #666;
}

.itemsShopCont .itemsCont .inputCont .deleteThisItem{
    margin-left: auto;
    cursor: pointer;
    color: #ff0000;
}


/*Falso Formulario Empieza*/
.addItemForm{
    position: fixed;
    top: 0;
    min-height: 100dvh;
    z-index: 200;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    left: -100%;
    pointer-events: none;
    visibility: hidden;
    transition: .2s cubic-bezier(.6,-0.09,.3,.87);
}
.addItemForm.active{
    pointer-events: all;
    visibility: visible;
    left: 0;
}


.addItemForm .formBase{
    width: 100%;
    padding: 2rem 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: .5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 18px rgba(0,0,0, .080);
}
.addItemForm .formBase h2{
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #555;
    font-weight: 500;
}
.addItemForm .formBase input{
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .5rem;
    outline: none;
    border: 1px solid #777;
    font-size: clamp(.8rem, 2vw, 1.2rem);
    font-weight: 800;
}
.addItemForm .formBase input::placeholder{
    color: #666;
    font-weight: 400;
    font-style: oblique;
}


.addItemForm .buttonsContform{
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: end;
}
.addItemForm .buttonsContform button{
    padding: .5rem 3rem;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: clamp(.8rem, 2vw, 1.1rem);
    color: #747474;
    border-radius: .5rem;
    justify-content: center !important;
}

@media(max-width:990px){
    .addItemForm .buttonsContform button{
        width: 100%;
    }

}
.addItemForm .buttonsContform .saveCancel{
    background: #fff;
    color: #555;
}
.addItemForm .buttonsContform .plzSaveNow{
    background: #008000;
    color: #fff;
    box-shadow: 0 0 12px #07e907;
}

.htmlScroll{
    overflow-y:auto ;
}
.htmlScroll.stop{
    overflow: hidden;
}





/* =========================
   TOASTS (generados por JS)
========================= */
.toastRoot{
    position: fixed;
    z-index: 9999;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    width: min(420px, calc(100% - 2rem));
    pointer-events: none;
}

.toast{
    pointer-events: auto;
    background: rgba(255,255,255, .92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0, .08);
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(0,0,0, .18);
    padding: .9rem 1rem;
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    transition: .18s ease;
    position: relative;
    overflow: hidden;
}

.toast.show{
    transform: translateY(0);
    opacity: 1;
}

.toast.hide{
    transform: translateY(-10px);
    opacity: 0;
}

.toast .toastBody{
    display: flex;
    flex-direction: column;
    gap: .15rem;
    width: 100%;
}

.toast .toastTitle{
    font-weight: 900;
    color: #222;
    font-size: clamp(.9rem, 2vw, 1rem);
    letter-spacing: .2px;
}

.toast .toastMsg{
    color: #444;
    font-weight: 700;
    font-size: clamp(.82rem, 2vw, .95rem);
    line-height: 1.2;
}

.toast .toastX{
    margin-left: auto;
    border: none;
    background: transparent;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: #444;
    padding: 0 .2rem;
}

.toast.success{ border-left: 8px solid #1f9d55; }
.toast.error{ border-left: 8px solid #d63031; }
.toast.info{ border-left: 8px solid #0984e3; }
.toast.confirm{ border-left: 8px solid #ffa500; }

.toast.timed .toastBar{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(0,0,0,.08);
}

.toast.timed .toastBar::after{
    content: "";
    position: absolute;
    inset: 0;
    transform-origin: left;
    background: rgba(0,0,0,.18);
    animation: toastbar var(--toastDur, 2400ms) linear forwards;
}

@keyframes toastbar{
    from{ transform: scaleX(1); }
    to{ transform: scaleX(0); }
}

.toast .toastBtns{
    display: flex;
    gap: .6rem;
    margin-top: .6rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.toast .toastBtns .tBtn{
    border: none;
    cursor: pointer;
    padding: .45rem 1rem;
    border-radius: .7rem;
    font-weight: 900;
    letter-spacing: .3px;
}

.toast .toastBtns .tBtn.cancel{
    background: rgba(0,0,0,.06);
    color: #333;
}

.toast .toastBtns .tBtn.ok{
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 12px rgba(255,0,0,.25);
}




/*Falso Formulario Termina*/
