        .shop-hero {
            position: relative;
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 40px 80px;
            background: var(--cream);
            overflow: hidden;
        }
        .shop-hero > div {
            position: relative;
            z-index: 1;
            max-width: 700px;
            width: 100%;
        }
        .shop-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            color: var(--brown);
            margin-bottom: 16px;
            line-height: 1.1;
        }
        .shop-hero h1 em {
            font-style: italic;
            color: var(--terracotta);
        }
        .shop-hero .subtitle {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(0.9rem, 2.5vw, 1.15rem);
            color: var(--brown-light);
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .shop-hero { padding: 70px 20px 50px; min-height: auto; }
        }
        @media (max-width: 480px) {
            .shop-hero { padding: 60px 15px 40px; }
        }
