 body {
            background: linear-gradient(135deg, #f8fdff 10%, #ffffff 50%, #ecf7ff 100%);
        }
        .wishlist-page {
            padding-top: 60px;
            padding-bottom: 80px;
        }

        .wishlist-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .wishlist-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
        }

        .wishlist-container {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
            padding: 2rem;
        }

        /* Header untuk daftar/tabel */
        .wishlist-list-header {
            display: flex;
            padding: 0 1rem 1rem 1rem;
            border-bottom: 2px solid #e9ecef;
            color: #6c757d;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        /* Item dalam daftar */
        .wishlist-item {
            display: flex;
            align-items: center;
            padding: 1.5rem 1rem;
            border-bottom: 1px solid #e9ecef;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.4s ease forwards;
        }
        .wishlist-item:last-child {
            border-bottom: none;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Kolom-kolom */
        .col-product { flex: 4; }
        .col-category { flex: 2; text-align: center; }
        .col-date { flex: 2; text-align: center; }
        .col-remove { flex: 1; text-align: right; }

        .product-info {
            display: flex;
            align-items: center;
        }
        .product-info img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 6px;
            margin-right: 1.5rem;
        }
        .product-info .product-title {
            font-weight: 600;
            color: #212529;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .product-info .product-title:hover {
            color: #11ACDA;
        }
        .product-info .product-desc {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 5px;
        }

        .remove-btn {
            background: none;
            border: none;
            color: #adb5bd;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .remove-btn:hover {
            color: #dc3545;
        }

        /* Pesan saat Wishlist Kosong */
        #empty-wishlist-message {
            text-align: center;
            padding: 50px 20px;
        }
        #empty-wishlist-message i { font-size: 3rem; color: #ced4da; }
        #empty-wishlist-message h3 { margin-top: 1rem; color: #495057; }

        /* Loader */
        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #11ACDA;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 50px auto;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        
        /* Responsif untuk HP */
        @media (max-width: 767px) {
            .wishlist-list-header { display: none; }
            .wishlist-item {
                flex-direction: column;
                align-items: flex-start;
                position: relative;
            }
            .col-product, .col-category, .col-date, .col-remove {
                flex: none;
                width: 100%;
                text-align: left;
                padding: 5px 0;
            }
            .col-category::before, .col-date::before {
                font-weight: 600;
                color: #212529;
                margin-right: 10px;
            }
            .col-category::before { content: 'Category:'; }
            .col-date::before { content: 'Date Added:'; }
            
            .col-remove { position: absolute; top: 1.5rem; right: 1rem; }
        }


        /* === CSS BARU UNTUK KONTROL WISHLIST === */

.wishlist-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa; /* Warna sedikit berbeda dari container utama */
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
}

/* Wrapper untuk Search Input */
.search-wrapper {
    position: relative;
    flex-grow: 1; /* Membuat search bar mengisi ruang */
    margin-right: 1.5rem;
}

.search-wrapper .fa-search {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #adb5bd;
}

#search-wishlist {
    padding-left: 40px; /* Memberi ruang untuk ikon */
    border-radius: 50px; /* Membuatnya bulat */
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

#search-wishlist:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Styling Paginasi */
.pagination-controls .btn {
    border-radius: 50px !important; /* Membuat tombol bulat */
    font-weight: 600;
}

.pagination-controls .btn-light {
    color: #212529;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
/* Menghilangkan hover effect pada info halaman */
.pagination-controls .btn-light:hover {
    background-color: #e9ecef;
}


/* Responsif untuk kontrol bar */
@media (max-width: 767px) {
    .wishlist-controls-bar {
        flex-direction: column;
    }
    .search-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
/* === CSS BARU UNTUK SORT DROPDOWN === */

.sort-wrapper {
    flex-shrink: 0; /* Mencegah dropdown menyusut */
}

#sort-wishlist {
    border-radius: 50px; /* Membuatnya bulat */
    font-weight: 500;
    border: 1px solid #ced4da;
    color: #495057;
}

#sort-wishlist:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}







.info-bookmark-banner {
            display: flex;
            align-items: center;
            background-color: #212529;
            color: #f8f9fa;
            border-radius: 50px;
            padding: 10px 15px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            overflow: hidden; /* Penting: untuk menyembunyikan teks saat di luar banner */
        }

        .info-tag {
            background-color: #dc3545;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 700;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* (DIUBAH) Mengganti ikon */
        .info-tag .fa-bullhorn {
            margin-right: 8px;
        }

        .info-text {
            margin: 0 1rem;
            flex-grow: 1;
            /* (BARU) Properti untuk Teks Bergerak */
            white-space: nowrap; /* Mencegah teks turun baris */
            overflow: hidden; /* Memastikan teks terpotong rapi */
        }

        /* (BARU) Elemen yang akan bergerak */
        .info-text p {
            display: inline-block; /* Agar bisa dianimasikan */
            padding-left: 100%; /* Memulai animasi dari luar layar kanan */
            animation: marquee 15s linear infinite; /* Terapkan animasi */
            margin: 0;
        }

        /* (BARU) Definisi Animasi Marquee */
        @keyframes marquee {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .info-link {
            color: #e84150;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .info-link:hover {
            color: #f06a77;
            text-decoration: underline;
        }

        @media (max-width: 767px) {
            .info-bookmark-banner {
                flex-direction: column;
                border-radius: 12px;
                padding: 1rem;
                text-align: center;
            }
            .info-text {
                margin: 1rem 0;
                width: 100%; /* Memastikan lebar penuh di mobile */
            }
            .info-text p {
                padding-left: 110%; /* Sedikit penyesuaian untuk mobile */
                animation-duration: 10s; /* Animasi lebih cepat di mobile */
            }
        }