.sunshine-image {
    position: relative;
}

.lovehd-customize-btn {

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    opacity: 0;

    transition: all .3s ease;

    background: #000;
    color: #fff;

    border: none;

    padding: 14px 24px;

    z-index: 999;
    cursor: pointer;
}

.sunshine-image:hover .lovehd-customize-btn {
    opacity: 1;
}

#lovehd-product-modal {

    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.7);

    z-index: 999999;
}

.lovehd-modal-inner {

    width: 90%;
    max-width: 1100px;

    margin: 50px auto;

    background: #fff;

    padding: 30px;

    border-radius: 12px;
}

#lovehd-products {

    display: grid;

    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));

    gap: 20px;
}

.lovehd-product {

    border: 1px solid #eee;

    padding: 15px;

    text-align: center;
}

.lovehd-product img {
    width: 100%;
}