* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
    background: #f5f7fb;
}

body.dark {
    background: #07111f;
}

body.dark .wishlist-card {
    background: #111827;
    color: #edf4ff;
    border: 1px solid #334155;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

body.dark .wishlist-header h2,
body.dark .wishlist-content h3,
body.dark .wishlist-content h4 {
    color: #edf4ff;
}

body.dark .wishlist-content p {
    color: #cbd5e1;
}

body.dark .wishlist-remove {
    background: #0f172a;
    color: #fca5a5;
    border: 1px solid #334155;
}

.wishlist-page {
    width: 90%;
    margin: 40px auto;
    background: #f5f7fb;
}

body.dark .wishlist-page {
    background: #07111f;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.wishlist-header h2 {
    font-size: 34px;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.wishlist-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
}

.wishlist-card:hover {
    transform: translateY(-5px);
}

.wishlist-image {
    position: relative;
    height: 230px;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-remove {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: white;
    color: red;

    font-size: 20px;
    cursor: pointer;
}

.wishlist-content {
    padding: 18px;
}

.wishlist-content h3 {
    margin-bottom: 8px;
}

.wishlist-content p {
    color: gray;
    margin-bottom: 15px;
}

.wishlist-content h4 {
    color: #0E53B5;
    font-size: 24px;
    margin-bottom: 18px;
}

.wishlist-cart-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: #0E53B5;
    color: white;
    cursor: pointer;
}

@media(max-width:1100px) {

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .wishlist-grid {
        grid-template-columns: 1fr;
    }

}