/* === MISTO ONLY STYLES === */

.misto-hero-award {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-award-text-opacity);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.misto-hero-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: var(--space-xl);
}

.misto-hero-stores {
    display: flex;
    gap: var(--space-md);
}

.misto-hero-btn--award {
    background: var(--color-black);
    color: var(--color-text-white);
}

.misto-hero-btn--award:hover {
    background: var(--color-award-btn-hover);
}

.misto-hero-btn--store {
    background: var(--color-store-btn-bg);
    color: var(--color-black);
}

.misto-hero-btn--store:hover {
    background: var(--color-store-btn-bg-hover);
}

.misto-combined-parallax {
    height: 280vh; /* 100vh stuck + 180vh scroll track to allow full overlap */
    z-index: 5;
}

.misto-parallax-award__layer {
    position: absolute;
    top: 180vh; /* Starts exactly after the total scrollable area of the text */
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10; /* Slide over text and background */
}

.misto-parallax-award__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.misto-parallax-award__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.misto-parallax-award__action {
    position: absolute;
    bottom: clamp(2rem, 8vh, 4rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    width: calc(100% - 2rem);
}

/* Mobile Overrides for MISTO */
@media (max-width: 768px) {
    .misto-hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .misto-hero-stores {
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }

    .misto-parallax-award__action {
        bottom: 12vh; /* Slightly higher on mobile to avoid covering the text */
    }
}
