/* =========================
   TABLE BASE
========================= */
.wishlist-table {
    table-layout: fixed;
    width: 100%;
}

.wishlist-table td,
.wishlist-table th {
    vertical-align: middle;
    padding: 14px;
}

.wishlist-table tbody tr {
    border-bottom: 1px solid #eee;
}

/* =========================
   PRODUCT COLUMN
========================= */
.product-col {
    width: 48%;
}

.wishlist-img img {
    width: 60px;
    height: auto;
}

.product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

/* =========================
   QUANTITY BOX
========================= */
.quantity-box {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.quantity-box input {
    width: 45px;
    border: 0;
    outline: none;
    box-shadow: none;
    text-align: center;
}

.qty-plus,
.qty-minus {
    border: none;
    background: #f3f4f6;
    cursor: pointer;
    padding: 7px 12px;
}

.qty-plus:hover,
.qty-minus:hover {
    background: #e5e7eb;
}

/* =========================
   STOCK COLUMN
========================= */
.stock-col {
    width: 105px;
    text-align: center;
}

.stock-in,
.stock-out {
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
}

.stock-in {
    color: #16a34a;
}

.stock-out {
    color: #dc2626;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .product-col {
        width: 200px;
    }

    .wishlist-img img {
        width: 50px;
    }
}