/* Mobile Footer Bar */
.custom-mobile-footer-icons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
    padding: 10px 20px;
    z-index: 10000;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}
.cart-count-footer {
	  background: red;
	  color: white;
	  font-size: 12px;
	  padding: 1px 6px;
	  border-radius: 100%;
	  position: relative;
	  top: -16px;
	  right: 6px;
}
.custom-mobile-footer-icons .footer-icon {
    font-size: 22px;
    color: #333;
    text-decoration: none;
}

/* Show only on small screens */
@media (max-width: 768px) {
    .custom-mobile-footer-icons {
        display: flex;
    }
}

/* Mobile slide-out cart */
#mobile-slideout-cart {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 340px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
#mobile-slideout-cart.open {
    right: 0;
}
#mobile-slideout-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
}
#mobile-slideout-overlay.active {
    display: block;
}
#mobile-slideout-cart .cart-header {
    padding: 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#mobile-slideout-cart .cart-contents {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
}
#mobile-slideout-cart .cart-buttons {
    padding: 15px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}
