/* ===== FLOATING CART ===== */
.floating-cart {
 position: fixed;
 right: 0;
 top: 110px;

 background: #e65c29;
 color: white;

 padding: 18px 18px;
 border-radius: 25px 0 0 25px;

 text-decoration: none;
 font-size: 16px;

 z-index: 999;

 display: flex;
 align-items: center;
 gap: 6px;

 transition: all 0.25s ease;
}

/* іконка */
.floating-cart img {
 width: 22px;
 height: 22px;
}

/* цифра */
.floating-cart span {
 font-weight: bold;
 line-height: 1;
 min-width: 18px;
 text-align: center;
}

/* ===== HOVER ===== */
.floating-cart:hover {
 box-shadow: 0 5px 15px rgba(0,0,0,0.2);
 padding: 18px 25px;
}

.cart-count-animate {
 animation: cartPulse 0.3s ease;
}

/* label */
.in-cart-label {
 margin-left: 10px;
 color: #27ae60;
}
