.shop-hero-banner {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 4rem;
}

.shop-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.shop-banner-content {
    position: relative;
    z-index: 2;
}

.shop-banner-title {
    color: white;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.shop-banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .shop-hero-banner {
        min-height: 50vh;
    }

    .shop-banner-title {
        font-size: 2.5rem;
    }
}
