/* Super destacado — hero principal */
.tienda-super-wrap {
    display: none;
    margin-bottom: 28px;
}
.tienda-super-wrap.is-visible {
    display: block;
}
.tienda-super {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #080808;
    border: 1px solid rgba(251, 191, 36, 0.35);
    box-shadow:
        0 0 0 1px rgba(251, 191, 36, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(251, 191, 36, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: tienda-super-glow 4s ease-in-out infinite;
}
.tienda-super:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(251, 191, 36, 0.2),
        0 32px 90px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(251, 191, 36, 0.22);
}
@keyframes tienda-super-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(251, 191, 36, 0.1),
            0 24px 80px rgba(0, 0, 0, 0.55),
            0 0 50px rgba(251, 191, 36, 0.1);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(251, 191, 36, 0.28),
            0 28px 90px rgba(0, 0, 0, 0.58),
            0 0 90px rgba(251, 191, 36, 0.2);
    }
}
.tienda-super__crown {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    background: linear-gradient(135deg, #fde68a, #fbbf24, #f59e0b);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.45);
}
.tienda-super__media {
    position: relative;
    width: 100%;
    height: clamp(300px, 48vw, 480px);
    background: #111;
    overflow: hidden;
}
.tienda-super__media img,
.tienda-super__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.tienda-super__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 35%,
        rgba(5, 5, 8, 0.88) 72%,
        rgba(5, 5, 8, 0.98) 100%
    );
    pointer-events: none;
}
.tienda-super__no-media {
    width: 100%;
    height: clamp(300px, 48vw, 480px);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(255, 255, 255, 0.04));
}
.tienda-super__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(20px, 3.5vw, 36px);
    z-index: 2;
}
.tienda-super__eyebrow {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 6px;
}
.tienda-super__title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 5.5vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.tienda-super__desc {
    color: rgba(245, 245, 247, 0.75);
    line-height: 1.55;
    font-size: 0.95rem;
    max-width: 680px;
    margin: 0 0 14px;
}

/* Carrusel destacados */
.tienda-spotlight-wrap {
    display: none;
    margin-bottom: 32px;
}
.tienda-spotlight-wrap.is-visible {
    display: block;
}
.tienda-spotlight__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}
.tienda-spotlight__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.tienda-spotlight {
    position: relative;
}
.tienda-spotlight__viewport {
    overflow: hidden;
    border-radius: 20px;
}
.tienda-spotlight__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}
.tienda-spotlight__slide {
    flex: 0 0 100%;
    min-width: 0;
}
.tienda-spotlight-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.22);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
    min-height: clamp(280px, 38vw, 380px);
}
.tienda-spotlight-card:hover {
    border-color: rgba(251, 191, 36, 0.38);
    transform: translateY(-2px);
}
.tienda-spotlight-card__media {
    position: relative;
    min-height: clamp(280px, 38vw, 380px);
    background: #111;
}
.tienda-spotlight-card__media img,
.tienda-spotlight-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: clamp(280px, 38vw, 380px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.tienda-spotlight-card__ph {
    min-height: clamp(280px, 38vw, 380px);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.03));
}
.tienda-spotlight-card__body {
    padding: clamp(22px, 3.2vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.tienda-spotlight-card__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.08);
}
.tienda-spotlight-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4.2vw, 2.2rem);
    font-style: italic;
    line-height: 1.12;
    margin: 0;
}
.tienda-spotlight-card__desc {
    margin: 0;
    min-width: 0;
}
.tienda-spotlight-card .tienda-buy {
    margin-top: 4px;
    padding: 12px 22px;
    font-size: 0.92rem;
}
.tienda-spotlight__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.tienda-spotlight__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, width 0.2s;
}
.tienda-spotlight__dot.is-active {
    width: 22px;
    background: var(--accent);
}
@media (max-width: 720px) {
    .tienda-spotlight-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .tienda-spotlight-card__media {
        min-height: clamp(200px, 52vw, 260px);
    }
    .tienda-spotlight-card__media img,
    .tienda-spotlight-card__media video,
    .tienda-spotlight-card__ph {
        min-height: clamp(200px, 52vw, 260px);
    }
}

/* Listas [ - ] en tarjetas, super y carrusel */
.tienda-feat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tienda-feat-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
}

.tienda-super__desc .tienda-feat-list__item {
    font-size: 0.92rem;
    color: rgba(245, 245, 247, 0.72);
}

.tienda-spotlight-card__desc .tienda-feat-list__item {
    font-size: 0.9rem;
}

.tienda-bullet {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    margin-top: 1px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    user-select: none;
}

.tienda-bullet__br {
    color: rgba(255, 255, 255, 0.28);
}

.tienda-bullet__mid {
    color: var(--accent);
    padding: 0 1px;
    font-weight: 700;
}

.tienda-bullet__txt {
    flex: 1;
    min-width: 0;
}

.tienda-bullet__txt strong {
    color: var(--head);
    font-weight: 600;
}

.tienda-desc-line {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.tienda-super__desc .tienda-desc-line {
    font-size: 0.95rem;
    color: rgba(245, 245, 247, 0.75);
}

.tienda-spotlight-card__desc .tienda-desc-line {
    font-size: 0.9rem;
}
