/* Wishlist Page Styles */
.wishlist-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.wishlist-table-wrapper {
    background: #fff;
    border: 1px solid #eee;
    overflow-x: auto;
}

.wishlist-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.wishlist-table th {
    background: #fdfdfd;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #eee;
    font-size: 0.9rem;
    color: #444;
}

.wishlist-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.product-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-info img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.product-info .name {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.product-info .meta {
    font-size: 0.8rem;
    color: #999;
}

.price-col {
    font-weight: 700;
    color: #d00000;
}

/* Stock Status */
.stock-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.stock-badge.in-stock {
    background: #e6ffed;
    color: #2ecc71;
}

/* Buttons */
.btn-add-cart {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: #d00000;
}

.remove-col i {
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.remove-col i:hover {
    color: #d00000;
}

/* Empty Wishlist */
.wishlist-empty {
    text-align: center;
    padding: 100px 20px;
}

.wishlist-empty i {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
}

.btn-return-shop {
    display: inline-block;
    margin-top: 20px;
    background: #d00000;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .wishlist-table thead {
        display: none;
    }

    .wishlist-table, .wishlist-table tbody, .wishlist-table tr, .wishlist-table td {
        display: block;
        width: 100%;
    }

    .wishlist-table tr {
        border-bottom: 15px solid #f9f9f9;
        padding: 20px;
    }

    .wishlist-table td {
        border: none;
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .wishlist-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #333;
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .product-info img {
        width: 100px;
        height: 120px;
    }

    .product-info::before {
        display: none;
    }

    .btn-add-cart {
        width: 100%;
    }
}
