/* ===== Title Section ===== */
.wishlist-title {
    text-align: center;
    font-size: 36px;
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 10px;
}

.wishlist-title span {
    color: #a93226;
}

.wishlist-sub {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* ===== Wishlist Cards ===== */
.wishlist-card {

    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ===== Product Image ===== */
.wishlist-img {
    position: relative;
    overflow: hidden;
}

.wishlist-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wishlist-img:hover img {
    transform: scale(1.08);
}

/* ===== Remove Button ===== */
.wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #d63384;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.wishlist-remove:hover {
    background: #d63384;
    color: #fff;
}

/* ===== Info Box ===== */
.wishlist-info {
    padding: 15px;
    text-align: center;
}

.wishlist-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.wishlist-info .price {
    font-size: 15px;
    color: #c0392b;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ===== Add to Cart Button ===== */
.btn-cart {
    background: #c0392b;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: #a93226;
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .wishlist-title {
        font-size: 28px;
    }

    .wishlist-info h5 {
        font-size: 15px;
    }

    .wishlist-img img {
        height: 230px;
    }
}

/* ===== Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}