/*===========================================
 COMPONENTE PROPIO: HERO QUE SE RENDERIZA EN:
- SHOP
- TAX
- CATG 
=========================================*/

.hero-shop {

    position: relative;
    width: 100%;
    height: 260px;
    margin: 12px 0 0 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    /* background: #fff; */

}

.hero-shop__content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shop__image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* .hero-shop__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(212, 187, 166, 0.20);
    z-index: 1;
} */

.hero-shop__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: right center;

    display: block;
}


.hero-shop__text {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 40px;

    /* Gradiente para mejorar la lectura */
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.80) 35%,
        rgba(255,255,255,.20) 65%,
        rgba(255,255,255,0) 100%
    );
}

.hero-shop__title {
    margin-bottom: 12px;
}

.hero-shop__description {
    max-width: 350px;
}


/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {

    .hero-shop {
        height: auto;
    }

    .hero-shop__text {
        width: 100%;
        padding: 24px;
    }

    .hero-shop__title {
        font-size: 2rem;
    }

    .hero-shop__description {
        max-width: none;
    }

    .hero-shop__image {
        width: 100%;
        height: 220px;
    }

}