.shop-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    overflow: hidden;
}

/* SLIDER */
.shop-hero__slider {
    position: absolute;
    inset: 0;
}

.shop-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity var(--transition-slow);
}

.shop-slide.active {
    opacity: 1;
}

/* OVERLAY */
.shop-hero__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95) 30%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.2) 100%
    );
}

/* CONTENT */
.shop-hero__content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

/* TITLE */
.shop-hero__content h1 {
    font-family: var(--font-title);
    font-size: var(--fs-xxl);
    margin-bottom: var(--space-sm);
}

/* TEXT */
.shop-hero__content p {
    color: var(--color-text-muted);
    font-size: var(--fs-md);
    line-height: 1.6;
}

@media (max-width: 768px) {

    .shop-hero {
        height: 250px;
        padding: 0 var(--space-md);
        text-align: center;
        justify-content: center;
    }

    .shop-hero__content {
        max-width: 300px;
    }

    .shop-hero__content h1 {
        font-size: 28px;
    }
}