.shop-header-container {
    max-width: 1600px;
    margin: auto;
    width: 100%;
    height: 100vh;
    max-height: 700px;
    background: url("../../assets/img/shop/shop_header.png");
    background-size: cover;
    background-position: center top;

}

.card {
    position: relative;
    overflow: hidden;
}

.card img {
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover img {
    filter: brightness(25%);
}
.card:hover .card-overlay {
    opacity: 1;
}




.back-home  {
    max-width: 1600px;
    margin: auto;
    width: 100%;
    min-width: 375px;
    height: 100px;
    background-color: black;
}

.voucher-box {
    background-color: #eeeeee;
    max-width: 1600px;
    margin: auto;
}

.voucher-box form input {
    border: none;
    background-color: black;
    color: white;
}

.back-bottom-container {
    width: 100%;
    max-width: 1600px;
    margin: -1px auto;
    height: 100px;
    background-color: black;
}
.back-button-box {
    width: 30%;
    min-width: 375px;
    height: 100px;
    background-color: white;
    margin-top: -2px;
}