html, body {
    height: 100%;
}

#footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
}

/* Custom */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 5px #999;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}


#login{
    padding: 50px;

}

[x-cloak] {
    display: none !important;
}

.cart-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 26px;
    line-height: 60px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 9999;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}
.cart-float:hover { transform: scale(1.1); }



/* MODAL DO CARRINHO */
.cart-modal {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 100;
    display: none;
}

[x-cloak] { display: none; }

.cart-modal[x-show="true"] {
    display: block;
}

/* CONTEÚDO DO MODAL */
.cart-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cart-empty {
    color: #666;
    font-size: 14px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

.item-name {
    font-weight: 500;
}

.item-price {
    font-size: 12px;
    color: #777;
}

.remove-item {
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    cursor: pointer;
}

.cart-total {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
}

.clear-cart {
    margin-top: 10px;
    background-color: #ef4444;
    color: white;
    border: none;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.clear-cart:hover {
    background-color: #dc2626;
}

.cart-dropdown {
    display:none ;
    width: 300px !impottant;
    background: #FFF;
    padding: 15px;
    /* box-shadow: 0px 0px 0px 2px #E4E7ED; */
    z-index: 99;
    right: -40% !impottant;
    opacity: 0;
    visibility: hidden;
}


.dropdown {
    left:-100%
}

