/* ============================================================
   MODERN WISHLIST
============================================================ */

.modern-wishlist {
    min-height: 70vh;
    background:
        linear-gradient(
            180deg,
            #fafafa 0%,
            #f5f5f5 100%
        );

    padding: 55px 20px 90px;
}


.wishlist-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ============================================================
   HERO
============================================================ */

.wishlist-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 220px;

    padding: 42px 50px;

    margin-bottom: 32px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #111111,
            #272727
        );

    color: #fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);
}


.wishlist-hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    bottom: -130px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);
}


.wishlist-eyebrow {
    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #cfcfcf;

    margin-bottom: 10px;
}


.wishlist-hero h1 {
    margin: 0 0 10px;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.wishlist-hero p {
    margin: 0;

    color: #bcbcbc;

    font-size: 15px;

    max-width: 500px;

    line-height: 1.7;
}


.wishlist-hero-icon {
    position: relative;

    z-index: 2;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);
}


.wishlist-hero-icon span {
    color: #ff4b72;

    font-size: 47px;

    line-height: 1;
}


/* ============================================================
   TOOLBAR
============================================================ */

.wishlist-toolbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    color: #777;

    font-size: 14px;
}


.wishlist-toolbar strong {
    color: #111;

    font-size: 17px;
}


.wishlist-continue {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #222;

    text-decoration: none;

    font-weight: 600;

    transition: .2s;
}


.wishlist-continue:hover {
    color: #e72f58;
}


.wishlist-continue span {
    font-size: 18px;
}


/* ============================================================
   GRID
============================================================ */

.wishlist-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* ============================================================
   PRODUCT CARD
============================================================ */

.wishlist-product {
    background: #fff;

    border: 1px solid #e8e8e8;

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.wishlist-product:hover {
    transform: translateY(-6px);

    border-color: #ddd;

    box-shadow:
        0 18px 45px rgba(0,0,0,.10);
}


/* ============================================================
   IMAGE
============================================================ */

.wishlist-product-image {
    position: relative;

    height: 315px;

    overflow: hidden;

    background: #f4f4f4;
}


.wishlist-product-image > a:first-child {
    display: block;

    width: 100%;
    height: 100%;
}


.wishlist-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.wishlist-product:hover
.wishlist-product-image img {
    transform: scale(1.045);
}


/* ============================================================
   HEART
============================================================ */

.wishlist-heart {
    position: absolute;

    left: 15px;
    top: 15px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.94);

    color: #e72f58;

    font-size: 18px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.10);
}


/* ============================================================
   REMOVE
============================================================ */

.wishlist-remove {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    color: #222;

    text-decoration: none;

    font-size: 25px;

    line-height: 1;

    box-shadow:
        0 5px 18px rgba(0,0,0,.10);

    transition:
        background .2s,
        color .2s,
        transform .2s;
}


.wishlist-remove:hover {
    background: #e72f58;

    color: #fff;

    transform: rotate(90deg);
}


/* ============================================================
   DISCOUNT
============================================================ */

.wishlist-discount {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 7px 10px;

    border-radius: 7px;

    background: #e72f58;

    color: #fff;

    font-size: 11px;

    font-weight: 700;
}


/* ============================================================
   INFORMATION
============================================================ */

.wishlist-product-info {
    padding: 22px;
}


.wishlist-category {
    margin-bottom: 7px;

    color: #999;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-weight: 700;
}


.wishlist-product-info h2 {
    margin: 0 0 13px;

    font-size: 18px;

    line-height: 1.45;

    font-weight: 650;
}


.wishlist-product-info h2 a {
    color: #151515;

    text-decoration: none;

    transition: color .2s;
}


.wishlist-product-info h2 a:hover {
    color: #e72f58;
}


/* ============================================================
   PRICE
============================================================ */

.wishlist-product-price {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 13px;
}


.wishlist-current-price {
    color: #111;

    font-size: 21px;

    font-weight: 750;
}


.wishlist-product-price del {
    color: #999;

    font-size: 13px;
}


/* ============================================================
   STOCK
============================================================ */

.wishlist-stock {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 19px;

    font-size: 12px;

    font-weight: 600;
}


.wishlist-stock span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}


.in-stock {
    color: #16854a;
}


.in-stock span {
    background: #16854a;

    box-shadow:
        0 0 0 4px rgba(22,133,74,.10);
}


.out-stock {
    color: #d83232;
}


.out-stock span {
    background: #d83232;
}


/* ============================================================
   PRODUCT BUTTON
============================================================ */

.wishlist-product-btn {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 13px 17px;

    border-radius: 9px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 650;

    transition:
        background .2s,
        transform .2s;
}


.wishlist-product-btn:hover {
    background: #e72f58;

    color: #fff;
}


.wishlist-product-btn span {
    font-size: 18px;

    transition: transform .2s;
}


.wishlist-product-btn:hover span {
    transform: translateX(4px);
}


/* ============================================================
   EMPTY / LOGIN
============================================================ */

.wishlist-empty-card {
    background: #fff;

    border: 1px solid #e8e8e8;

    border-radius: 24px;

    padding: 85px 25px;

    text-align: center;

    box-shadow:
        0 10px 35px rgba(0,0,0,.04);
}


.wishlist-empty-icon {
    width: 92px;
    height: 92px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f3;

    color: #e72f58;

    font-size: 52px;

    font-weight: 300;
}


.wishlist-empty-card h2 {
    margin: 0 0 10px;

    color: #111;

    font-size: 27px;

    letter-spacing: -.5px;
}


.wishlist-empty-card p {
    max-width: 500px;

    margin: 0 auto 28px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* ============================================================
   BUTTONS
============================================================ */

.wishlist-primary-btn,
.wishlist-secondary-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 150px;

    padding: 13px 22px;

    margin: 4px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 650;

    transition: .2s;
}


.wishlist-primary-btn {
    background: #111;

    color: #fff;
}


.wishlist-primary-btn:hover {
    background: #e72f58;

    color: #fff;
}


.wishlist-secondary-btn {
    border: 1px solid #ddd;

    background: #fff;

    color: #222;
}


.wishlist-secondary-btn:hover {
    border-color: #111;

    color: #111;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .wishlist-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    .modern-wishlist {
        padding: 25px 12px 60px;
    }


    .wishlist-hero {
        min-height: 180px;

        padding: 30px 25px;

        border-radius: 18px;
    }


    .wishlist-hero h1 {
        font-size: 31px;
    }


    .wishlist-hero p {
        font-size: 13px;

        max-width: 280px;
    }


    .wishlist-hero-icon {
        width: 65px;
        height: 65px;
    }


    .wishlist-hero-icon span {
        font-size: 31px;
    }


    .wishlist-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .wishlist-product-image {
        height: 320px;
    }


    .wishlist-toolbar {
        font-size: 13px;
    }


    .wishlist-empty-card {
        padding: 60px 20px;
    }


    .wishlist-empty-card h2 {
        font-size: 23px;
    }


    .wishlist-empty-buttons {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .wishlist-primary-btn,
    .wishlist-secondary-btn {
        width: 100%;

        max-width: 250px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 400px) {

    .wishlist-hero-icon {
        display: none;
    }


    .wishlist-hero h1 {
        font-size: 28px;
    }


    .wishlist-product-image {
        height: 280px;
    }

}