/* Sticky-панель */
#wc-sticky-cart-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 12px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}
#wc-sticky-cart-panel.show {
    display: block;
}
.inside-add-to-cart-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .inside-add-to-cart-panel {
        flex-direction: column;
        text-align: center;
    }
}

/* Счётчик — ваш стиль */
.menu-bar-item.wc-menu-item .number-of-items {
    display: inline-block;
    line-height: 1.7em;
    height: 1.7em;
    width: 1.7em;
    text-align: center;
    border-radius: 50%;
    margin-left: 15px;
    position: relative;
    top: -5px;
   background-color: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
}
/* .menu-bar-item.wc-menu-item .number-of-items.no-items {
    display: none;
}  */

/* Стили для кнопки "Оформить заказ" */
#wc-sticky-cart-panel .checkout .button {
    background: #333333; /* тёмный фон для контраста */
    color: white !important;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
#wc-sticky-cart-panel .checkout .button:hover {
    background: #000000;
}