/* Home V3 Styles */

/* =========================================
   HERO
   ========================================= */

.home-hero-v3 {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

/* Dark overlay so text stays readable */
.home-hero-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.home-hero-v3__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.home-hero-v3__headline {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.home-hero-v3__headline .highlight {
    color: #f15622;
}

.home-hero-v3__subheadline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
}

.home-hero-v3__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    width: 100%;
}

.home-hero-v3__cta {
    display: inline-block;
    background-color: #f15622;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 48px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.home-hero-v3__cta:hover {
    background-color: #d44a18;
    color: #ffffff;
    text-decoration: none;
}

.home-hero-v3__stores {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.home-hero-v3__stores .store-link img {
    height: 44px;
    width: auto;
    display: block;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 600px) {
    .home-hero-v3 {
        min-height: 420px;
        padding: 48px 16px;
    }

    .home-hero-v3__cta {
        max-width: 100%;
        padding: 14px 24px;
    }
}

.home-offer-cards--v3 {
    margin-top: -30px;
}