.cart-list {
    display: grid;
    gap: 0.1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 0.86rem 1fr;
    gap: 0.12rem;
    padding: 0.12rem;
    background: #fff;
    border-radius: 0.2rem;
}

.cart-item img {
    height: 0.86rem;
    object-fit: contain;
    background: #f6f8fb;
    border-radius: 0.16rem;
}

.cart-info h3 {
    font-size: 0.15rem;
}

.cart-info p {
    color: var(--muted);
    font-size: 0.11rem;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.08rem;
}

.delete-btn {
    color: var(--muted);
    background: transparent;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.14rem;
}

.qty-box button,
.qty-box span {
    width: 0.3rem;
    height: 0.28rem;
    display: grid;
    place-items: center;
    background: #fff;
}

.qty-box span {
    color: var(--text);
    background: #f7f8fb;
}
