
/* =========================================================
   SFH WISHLIST PAGE
   ========================================================= */

.sfh_wishlist_page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px 80px;
    box-sizing: border-box;
}

/* Wishlist main wrapper */
.sfh_wishlist_page .wishlist-fragment {
    width: 100%;
}

/* Wishlist heading */
.sfh_wishlist_page .wishlist-title {
    margin: 0 0 35px;
    padding: 0;
    text-align: left;
}

.sfh_wishlist_page .wishlist-title h2 {
    margin: 0;
    color: #252126;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

/* Hide unnecessary default title elements */
.sfh_wishlist_page .wishlist-title .fa,
.sfh_wishlist_page .wishlist-title i {
    color: #c2185b;
}

/* Wishlist table wrapper */
.sfh_wishlist_page .shop_table {
    width: 100%;
    margin: 0;
    border: 1px solid #e8dfe3;
    border-radius: 18px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(37, 33, 38, 0.06);
}

/* Table header */
.sfh_wishlist_page .shop_table thead {
    background: #fff5f8;
}

.sfh_wishlist_page .shop_table thead th {
    padding: 17px 20px;
    border-bottom: 1px solid #e8dfe3;
    color: #252126;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wishlist rows */
.sfh_wishlist_page .shop_table tbody tr {
    transition: background-color .2s ease;
}

.sfh_wishlist_page .shop_table tbody tr:hover {
    background: #fffafb;
}

/* Table cells */
.sfh_wishlist_page .shop_table tbody td {
    padding: 20px;
    border-bottom: 1px solid #e8dfe3;
    vertical-align: middle;
    color: #252126;
}

.sfh_wishlist_page .shop_table tbody tr:last-child td {
    border-bottom: 0;
}

/* Product image */
.sfh_wishlist_page .product-thumbnail {
    width: 110px;
}

.sfh_wishlist_page .product-thumbnail img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e8dfe3;
    background: #ffffff;
}

/* Product name */
.sfh_wishlist_page .product-name a {
    color: #252126;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.sfh_wishlist_page .product-name a:hover {
    color: #c2185b;
}

/* Price */
.sfh_wishlist_page .product-price {
    color: #c2185b;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

/* Original / sale price */
.sfh_wishlist_page .product-price del {
    margin-right: 5px;
    color: #99939a;
    font-size: 13px;
    font-weight: 400;
}

.sfh_wishlist_page .product-price ins {
    color: #c2185b;
    text-decoration: none;
}

/* Stock status */
.sfh_wishlist_page .wishlist-empty {
    padding: 60px 25px;
    text-align: center;
    color: #777177;
    font-size: 16px;
}

.sfh_wishlist_page .product-stock {
    font-size: 13px;
    font-weight: 600;
}

.sfh_wishlist_page .product-stock .wishlist-in-stock {
    color: #278a52;
}

.sfh_wishlist_page .product-stock .wishlist-out-of-stock {
    color: #c2185b;
}

/* Add to cart button */
.sfh_wishlist_page .product-add-to-cart a,
.sfh_wishlist_page .add_to_cart,
.sfh_wishlist_page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 9px;
    background: #c2185b;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
    box-sizing: border-box;
}

.sfh_wishlist_page .product-add-to-cart a:hover,
.sfh_wishlist_page .add_to_cart:hover,
.sfh_wishlist_page .button:hover {
    background: #a3154c;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Remove wishlist item */
.sfh_wishlist_page .product-remove a,
.sfh_wishlist_page .remove_from_wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #e8dfe3;
    border-radius: 50%;
    background: #ffffff;
    color: #c2185b !important;
    font-size: 18px;
    line-height: 1;
    text-decoration: none !important;
    transition: all .2s ease;
}

.sfh_wishlist_page .product-remove a:hover,
.sfh_wishlist_page .remove_from_wishlist:hover {
    background: #c2185b;
    border-color: #c2185b;
    color: #ffffff !important;
}

/* Quantity */
.sfh_wishlist_page .quantity {
    display: inline-flex;
    align-items: center;
}

.sfh_wishlist_page .quantity input {
    width: 55px;
    min-height: 42px;
    padding: 8px;
    border: 1px solid #e8dfe3;
    border-radius: 8px;
    background: #ffffff;
    color: #252126;
    text-align: center;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.sfh_wishlist_page .quantity input:focus {
    border-color: #c2185b;
}

/* Wishlist bottom controls */
.sfh_wishlist_page .wishlist-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
}

/* Share section */
.sfh_wishlist_page .wishlist-share {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #e8dfe3;
    border-radius: 14px;
    background: #fff8fa;
}

.sfh_wishlist_page .wishlist-share-title {
    margin: 0 0 12px;
    color: #252126;
    font-size: 15px;
    font-weight: 700;
}

/* Social/share links */
.sfh_wishlist_page .wishlist-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 7px;
    border: 1px solid #e8dfe3;
    border-radius: 50%;
    background: #ffffff;
    color: #c2185b;
    text-decoration: none;
    transition: all .2s ease;
}

.sfh_wishlist_page .wishlist-share a:hover {
    background: #c2185b;
    border-color: #c2185b;
    color: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .sfh_wishlist_page {
        padding: 30px 15px 60px;
    }

    .sfh_wishlist_page .wishlist-title {
        margin-bottom: 25px;
    }

    .sfh_wishlist_page .wishlist-title h2 {
        font-size: 26px;
    }

    /* Make wishlist table horizontally scrollable */
    .sfh_wishlist_page .wishlist-fragment {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sfh_wishlist_page .shop_table {
        min-width: 760px;
        border-radius: 14px;
    }

    .sfh_wishlist_page .shop_table thead th,
    .sfh_wishlist_page .shop_table tbody td {
        padding: 14px;
    }

    .sfh_wishlist_page .product-thumbnail img {
        width: 70px;
        height: 70px;
    }

    .sfh_wishlist_page .product-name a {
        font-size: 14px;
    }

    .sfh_wishlist_page .product-add-to-cart a,
    .sfh_wishlist_page .add_to_cart {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 12px;
    }
}