.test4 {
    height: 120px;
}

/* === Wishlist: Empty State === */
.wishlist {
    background-color: rgb(253, 250, 245);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wishlist .icon {
    color: rgb(90, 125, 101);
    font-size: 40px;
    font-family: Inter, sans-serif;
    border: 0.8px solid rgb(230, 227, 218);
    border-radius: 50%;
    height: 113.6px;
    width: 113.6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
}

.wishlist h1 {
    color: rgb(58, 59, 55);
    font-size: 36px;
    font-family: serif;
    font-weight: 700;
    margin-top: 20px;
}

.wishlist p {
    color: rgb(139, 140, 136);
    font-family: Inter, sans-serif;
    margin-top: 20px;
}

.wishlist .shop-btn,
.wishlist button {
    background-color: rgb(90, 125, 101);
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-top: 30px;
    height: 52px;
    width: 198px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wishlist .shop-btn:hover,
.wishlist button:hover {
    background-color: rgb(54, 40, 142);
    transform: translateY(-2px);
}
.Return-to-Shop {
    color: #ffffff !important;
    font-size: large;
}
/* === عرض المنتجات (Wishlist Grid) === */
.wishlist-grid {
    background-color: rgb(255, 251, 232);
    display: none;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 80px 5%;
    width: 100%;
}

.wishlist-card {
    width: 260px;
    background: #ffffff;
    border: 1px solid rgb(230, 227, 218);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wishlist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.wishlist-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.wishlist-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 15px 10px;
    color: rgb(58, 59, 55);
    line-height: 1.4;
}

.wishlist-card .price {
    color: rgb(90, 125, 101);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.wishlist-card .remove-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    border: 1px solid rgb(230, 227, 218);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    color: #e74c3c;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.wishlist-card .remove-wishlist:hover {
    background: #ffecec;
    transform: scale(1.1);
}