.home-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 164px - 56px);
    background: url("/static/images/home-pagev2.jpg") center bottom / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    pointer-events: none;
}

.home-hero>* {
    position: relative;
    z-index: 1;
}

.hero-content {

    color: white;
}

.error-content {
    position: relative;
    z-index: 1;
}

.shop-now-button {
    background: #ff6600;
    color: white !important;
    border: none;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.2s ease;
}

.shop-now-button:hover {
    background: #e65c00;
    transform: translateY(-2px);
}