@import 'blog.css';
@import 'order.css';
@import 'listing.css';


/* 
.home-page {}
.product-page {}
*/


/* Index Focus */
.focus-detail {
    display: grid;
    gap: 0.5em;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.focus-detail > div {
    height: 30vh;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.focus-detail img {
    width: 100%;
}
.focus-detail > div:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
}
.focus-detail .slogn {
    width: 80%;
    top: 30%;
    left: 2rem;
}


/* Index Promote */
.promote {
    background: rgba(250, 250, 250, 0.5);
}
.promote-sku {
    border-radius: 8px;
    height: 600px;
}
.promote-txt {
    width: 40%;
    left: 5rem;
}

/* BYJESSIE Model */
.sku-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 600px;
}
.sku-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sku-product {
    opacity: 1;
    transition: opacity 1s ease;
    z-index: 1;
}
.sku-model {
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
}
.sku-wrap:hover .sku-product {
    opacity: 0;
}
.sku-wrap:hover .sku-model {
    opacity: 1;
}


.reset-password > h1,
.reset-password > p, 
.reset-password > div {
    width: 35%;
}



.brand-gallery {
    display: flex;
    gap: 1rem;
}
.brand-gallery a {
    display: inline-flex;
    width: 100%;
    height: 200px;
    border: 1px solid var(--color-light-239);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.brand-gallery img {
    height: 100%;
}


@media (max-width: 860px) {
    .focus-detail {
        display: grid;
        gap: 0.5em;
        grid-template-columns: 1fr;
    }
    .focus-detail > div {
        height: 30vh;
        background-color: #fafafa;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }
    .focus-detail img {
        width: 100%;
    }
    .focus-detail > div:nth-child(1) {
        grid-column-start: 1;
        grid-column-end: 1;
    }
    .focus-detail .slogn {
        width: 80%;
        top: 20%;
        left: 2rem;
    }

    .promote {
        background: rgba(250, 250, 250, 0.5);
        padding: 2rem 0;
    }
    .promote img {
        transform: unset;
    }
    .promote h2 {
        font-size: 1rem;
    }
    .promote-sku {
        height: 600px;
    }
    .promote-sku img {
        border-radius: 8px;
    }
    .promote-txt {
        width: 100%;
    }
    .float-window {
        position: unset;
        transform: unset;
    }
    .float-window div {
        width: 100%;
    }

    .reset-password > h1,
    .reset-password > p, 
    .reset-password > div {
        width: 90vw;
    }

}