/* ============================================================
   Tienda · Portada (hero, widgets y beneficios)
   ============================================================ */

.shop-hero {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, #1b1236 0%, #2a1c4d 100%);
}

.shop-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 5, 18, 0.88) 0%, rgba(8, 5, 18, 0.55) 45%, rgba(8, 5, 18, 0.15) 100%);
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
}

.shop-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #b197fc;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.shop-hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0.25rem 0 1rem;
    color: #fff;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.45);
}

.shop-hero-ip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(177, 151, 252, 0.45);
    color: #fff;
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    backdrop-filter: blur(4px);
}

.shop-hero-online {
    color: #69db7c;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---- Widgets (comprador del mes, descuento, meta) ---- */

.shop-widget {
    border-radius: 1.1rem;
    background: rgba(26, 21, 44, 0.75);
    border-color: rgba(177, 151, 252, 0.18);
}

.shop-widget-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9d93c4;
}

.shop-widget-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.shop-widget-sub {
    font-size: 0.85rem;
    color: #a9a1c8;
}

.shop-goal {
    height: 0.55rem;
    border-radius: 50rem;
    background: rgba(177, 151, 252, 0.18);
    margin-top: 0.75rem;
}

.shop-goal .progress-bar {
    background: linear-gradient(90deg, #8b6fe8, #b197fc);
    border-radius: 50rem;
}

/* ---- Tarjetas de beneficios ---- */

.shop-feature {
    border-radius: 1.1rem;
    background: rgba(26, 21, 44, 0.75);
    border-color: rgba(177, 151, 252, 0.18);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.shop-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(177, 151, 252, 0.5);
}

.shop-feature-icon {
    font-size: 1.7rem;
    background: linear-gradient(135deg, #8b6fe8, #b197fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767.98px) {
    .shop-hero {
        min-height: 260px;
    }

    .shop-hero-content {
        padding: 1.6rem 1.2rem;
    }

    .shop-hero-title {
        font-size: 2.2rem;
    }

    .shop-hero-ip {
        font-size: 0.8rem;
        padding: 0.45rem 0.85rem;
    }
}

/* ---- Tarjetas de categorías ---- */

.shop-cat-card {
    border-radius: 1rem;
    background: rgba(26, 21, 44, 0.75);
    border-color: rgba(177, 151, 252, 0.18);
    color: #fff;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.shop-cat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(177, 151, 252, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.shop-cat-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #8b6fe8, #b197fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Skin del comprador ---- */

.shop-skin {
    border: 2px solid rgba(177, 151, 252, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 111, 232, 0.15);
}
