.btn-1{
    background-color: var(--Midnight-Whisper-main-color);
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #fff;
}
.btn-1:hover{
    background-color: #fff;
    color: var(--Midnight-Whisper-main-color);
    border: 1px solid var(--Midnight-Whisper-main-color);
}
.btn-1:active{
    color: var(#000);
}
.btn-2{
    border: 1px solid #fff;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #fff;
}
.heart{
    display: inline-block;
    height: 1.2rem;
    aspect-ratio: 1/1;
}
.heart img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-product{
    background: url("../img/product_banner.jpg") no-repeat 50% 50% / cover;
    height: 960px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.banner-product h1{
    margin-top: var(--space-x-small);
}
@media (max-width:1440px){
    .banner-product{
        height: 700px;
    }
}
@media (max-width:768px){
    .banner-product{
        height: 100vh
    }
}