.wishlist-wrapper {
    margin: 0 20px 30px;
}

.wishlist-wrapper .my-wishlist-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

/* کارت */
.wishlist-wrapper .wishlist-item {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 30px 40px 25px;
    text-align: center;
    transition: 0.3s;
}

.wishlist-wrapper .wishlist-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* باکس حذف بالا وسط */
.wishlist-wrapper .wishlist-remove {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.wishlist-wrapper .wishlist-remove:hover {
    color: #000;
}

/* آیکن ضربدر */
.wishlist-wrapper .remove-icon {
    font-size: 16px;
    line-height: 1;
}

/* تصویر بزرگ‌تر */
.wishlist-wrapper .wishlist-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

/* عنوان */
.wishlist-wrapper .wishlist-title {
    font-size: 15px;
    margin-bottom: 10px;
    min-height: 45px;
    color: black;
}

/* قیمت تخفیف */
.wishlist-price {
    margin-top: 10px;
}

.wishlist-price .price-old {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 14px;
}

.wishlist-price .price-new {
    color: #0044B0;
    font-weight: 700;
    font-size: 17px;
}

.wishlist-wrapper a {
    text-decoration: none !important;
}

.wishlist-add-to-cart {
    margin-top: 15px;
    text-align: center;
}

.wishlist-add-to-cart .button {
    background-color: #0044B0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.wishlist-add-to-cart .button:hover {
    background-color: #006cd7;
}