.wishlist {
    background-color: var(--violet-lightest);
    padding: 15px 0px 150px 0px;
}

.wishlist-title {
    font-family: var(--font-semibold);
    font-weight: 700;
    font-size: var(--fs-nl);
    margin-bottom: 22px !important;
}
.wishlist-list {
    padding: 20px !important;
}

.empty-wishlist {
    border-radius: 12px;
}

.empty-wishlist h3 {
    font-family: var(--font-semibold);
    font-size: var(--fs-nl);
    font-weight: 600;
}

.empty-wishlist p {
    color: #808080;
}

.empty-wishlist a {
    all: unset;
    padding: 10px 20px;
    background-color: var(--violet-darkest);
    color: white;
    font-size: var(--fs-sm);
    font-weight: 700;
    font-family: var(--font-bold);
    border-radius: 12px;
    cursor: pointer;
}

.empty-wishlist a:hover {
    background-color: var(--violet-darkest);
    color: white;
    cursor: pointer;
}

@media (max-width: 992px) {
    .empty-wishlist {
        padding: 193px 0px;
    }
}

/* Pagination container */
.custom-pagination {
    margin-top: 30px;
}

/* Pagination list */
.custom-pagination .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Default page item */
.custom-pagination .page-item .page-link {
    color: #444;
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ddd;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Hover */
.custom-pagination .page-item .page-link:hover {
    background: #f0f0f0;
    border-color: #aaa;
    color: #000;
}

/* Active page */
.custom-pagination .page-item.active .page-link {
    background: #ff6a00;
    border-color: #ff6a00;
    color: #fff;
    font-weight: 600;
}

/* Disabled */
.custom-pagination .page-item.disabled .page-link {
    background: #e9e9e9;
    border-color: #dcdcdc;
    color: #aaaaaa;
    pointer-events: none;
    cursor: not-allowed;
}

/* Smooth hover for next/prev arrows */
.custom-pagination .page-item:not(.disabled):not(.active) .page-link {
    cursor: pointer;
}
.show-more {
    all: unset;
    padding: 10px 20px;

    font-size: var(--fs-md);
    font-family: var(--font-bold);

    background-color: var(--violet-darkest);
    border: none;
    color: white;
    border-radius: 12px;
}
.show-more:hover {
    color: white !important;
}

.wishlist-cards a {
    text-decoration: none;
    /* color: white !important; */
}

.wishlist-cards a:hover {
    text-decoration: none;
    /* color: white !important; */
}
