.wishlist-section {
    background: #fcfdfe;
    min-height: 70vh;
}

.wishlist-section .wishlist-panel {
    border: 1px solid #eef1f6 !important;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    background: #fff;
    overflow: hidden;
}

.wishlist-section .wishlist-table-wrap {
    overflow-x: auto;
}

.wishlist-section .talla-wishlist-table {
    margin-bottom: 0 !important;
    min-width: 760px;
}

.wishlist-section .table thead th {
    background: #f9fafc !important;
    border-bottom: 1px solid #edf1f7 !important;
    padding: 18px !important;
    font-size: 0.95rem;
}

.wishlist-section .table tbody td {
    padding: 22px 18px !important;
}

.tinv-wishlist .social-buttons,
.tinv-wishlist .tinvwl-share-on,
.tinv-wishlist .tinv-header {
    display: none !important;
}

.wishlist-section table img {
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-section tr:hover img {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.wishlist-section .btn-dark {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.wishlist-section .btn-dark:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.wishlist-section .product-cb {
    text-align: center;
    width: 56px;
}

.wishlist-section .product-cb input[type="checkbox"] {
    accent-color: #212529;
    cursor: pointer;
    height: 16px;
    width: 16px;
}

.wishlist-section .wishlist-product-title {
    color: #212529;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}
.wishlist-section .product-price,
.wishlist-section .product-remove {
    white-space: nowrap;
}

.wishlist-section .wishlist-actions {
    align-items: center;
    background: #fff;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.wishlist-section .wishlist-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wishlist-section .wishlist-bulk-btn {
    align-items: center;
    border-radius: 999px !important;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px !important;
    text-decoration: none !important;
}

.wishlist-section .wishlist-bulk-btn.btn-outline-dark {
    background: #fff;
    border: 1px solid #212529;
    color: #212529;
}

.wishlist-section .wishlist-bulk-btn.btn-outline-dark:hover {
    background: #212529;
    color: #fff;
}

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

    .wishlist-section .table tr {
        display: block;
        padding: 15px;
        border-bottom: 10px solid #f8f9fb;
    }
    .wishlist-section .table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 0 !important;
        border: none !important;
    }

    .wishlist-section .table td[data-title]::before {
        color: #6c757d;
        content: attr(data-title);
        font-size: 0.8rem;
        font-weight: 700;
        margin-inline-end: 16px;
    }

    .wishlist-section .table td:first-child {
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .wishlist-section .talla-wishlist-table {
        min-width: 0;
    }

    .wishlist-section .wishlist-product {
        align-items: flex-start !important;
    }

    .wishlist-section .wishlist-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wishlist-section .wishlist-bulk-actions,
    .wishlist-section .wishlist-bulk-btn {
        width: 100%;
    }
}