/* Плашка справа */
.matrix-cart-toggle {
    display: none !important;
    /* position: fixed;
    right: 0;
    top: 40%;
    width: 60px;
    height: 60px;
    background: #003153;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999; */
}

.matrix-cart-icon {
    width: 30px;
    height: 30px;
    background-image: url('/wp-content/uploads/icons/cart.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 24px;
    line-height: 1;
}

.matrix-cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ff3a3a;
    color: #fff;
    padding: 1px 6px;
    font-size: 12px;
    border-radius: 50%;
}

/* Сайдбар */
.matrix-cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 360px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 99998;
    display: flex;
    flex-direction: column;
}

.matrix-cart-sidebar.open {
    right: 0;
}

.matrix-cart-header {
    padding: 20px;
    font-size: 22px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.matrix-cart-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.matrix-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.matrix-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.matrix-cart-thumb img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.matrix-cart-info {
    flex: 1;
    margin-left: 10px;
}

.matrix-cart-qty {
    display: flex;
    align-items: center;
}

.matrix-cart-qty button {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    padding: 0;
}

.matrix-cart-qty input {
    width: 36px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 5px;
}

.matrix-cart-remove {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.matrix-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.matrix-btn {
    display: block;
    margin-bottom: 10px;
    padding: 12px;
    text-align: center;
    border: 1px solid #003153;
    color: #003153;
}

.matrix-cart-footer .matrix-btn-primary {
    background: #003153;
    color: #fff;
}

.matrix-cart-content.loading {
    opacity: 0.5;
    pointer-events: none;
}

.matrix-cart-content.loading:after {
    content: "Загрузка...";
    display: block;
    text-align: center;
    padding: 20px;
}

/* Пустая корзина */
.matrix-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}