/* ==========================================================================
   Vegas411 Feed Placements – dark theme (black2026)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Pick Bar – one-line text-only recommendation
   -------------------------------------------------------------------------- */
.feed-pick {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    margin: 6px 0;
    border-radius: 8px;
    background: rgba(212,175,55,.06);
    border: 1px solid rgba(212,175,55,.12);
    text-decoration: none !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    transition: border-color .2s, background .2s;
    overflow: hidden;
    white-space: nowrap;
}
.feed-pick:hover {
    border-color: rgba(212,175,55,.3);
    background: rgba(212,175,55,.1);
}
.feed-pick__dot { color: #d4af37; font-size: 12px; flex-shrink: 0; }
.feed-pick__label {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .05em; color: #d4af37; flex-shrink: 0;
}
.feed-pick__divider { color: rgba(255,255,255,.15); flex-shrink: 0; }
.feed-pick__name {
    font-weight: 700; color: #fff; flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis;
}
.feed-pick__price { font-weight: 800; color: #d4af37; flex-shrink: 0; }
.feed-pick__cta {
    font-size: 11px; font-weight: 800; color: #0a0a0a;
    background: linear-gradient(135deg, #d4af37, #e4bf47);
    padding: 5px 12px; border-radius: 5px; flex-shrink: 0;
    transition: transform .15s, box-shadow .15s;
}
.feed-pick:hover .feed-pick__cta {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212,175,55,.25);
}
@media (max-width: 600px) {
    .feed-pick { font-size: 12px; padding: 10px 14px; gap: 8px; }
    .feed-pick__label, .feed-pick__divider { display: none; }
}

/* --------------------------------------------------------------------------
   Featured Shows Strip – compact horizontal scroll (shows category page)
   -------------------------------------------------------------------------- */
.feed-shows-strip {
    margin: 0 0 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.feed-shows-strip__label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #d4af37;
    margin-bottom: 10px;
}
.feed-shows-strip__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.1) transparent;
}
.feed-shows-strip__track::-webkit-scrollbar { height: 3px; }
.feed-shows-strip__track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }

.feed-shows-strip__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    border-radius: 8px;
    background: #141414;
    border: 1px solid rgba(212,175,55,.1);
    text-decoration: none !important;
    color: #fff !important;
    transition: border-color .2s, box-shadow .2s;
    white-space: nowrap;
}
.feed-shows-strip__item:hover {
    border-color: rgba(212,175,55,.3);
    box-shadow: 0 2px 12px rgba(212,175,55,.08);
}
.feed-shows-strip__thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.feed-shows-strip__icon {
    width: 48px; height: 48px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460); flex-shrink: 0;
}
.feed-shows-strip__icon .material-icons { font-size: 22px; color: #d4af37; opacity: .5; }
.feed-shows-strip__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.feed-shows-strip__name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.feed-shows-strip__price {
    font-size: 11px;
    font-weight: 800;
    color: #d4af37;
}

@media (max-width: 540px) {
    .feed-shows-strip__thumb { width: 40px; height: 40px; }
    .feed-shows-strip__name { font-size: 12px; }
}

/* --------------------------------------------------------------------------
   Events Carousel
   -------------------------------------------------------------------------- */
.feed-carousel {
    margin: 0 0 20px; padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.feed-carousel__header { margin-bottom: 12px; }
.feed-carousel__title { font-size: 17px; font-weight: 800; color: #fff; margin: 0; }
.feed-carousel__track {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 6px;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.12) transparent;
}
.feed-carousel__track::-webkit-scrollbar { height: 4px; }
.feed-carousel__track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }
.feed-carousel__card {
    flex: 0 0 170px; scroll-snap-align: start;
    border-radius: 8px; overflow: hidden;
    background: #141414; border: 1px solid rgba(255,255,255,.06);
    text-decoration: none; color: #fff;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feed-carousel__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    border-color: rgba(212,175,55,.2);
    text-decoration: none; color: #fff;
}
.feed-carousel__image-wrap { aspect-ratio: 4/3; overflow: hidden; background: #1a1a1a; }
.feed-carousel__image {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s;
}
.feed-carousel__card:hover .feed-carousel__image { transform: scale(1.04); }
.feed-carousel__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
}
.feed-carousel__placeholder .material-icons { font-size: 30px; color: #d4af37; opacity: .4; }
.feed-carousel__body { padding: 8px 10px 10px; }
.feed-carousel__name {
    font-size: 12px; font-weight: 700; line-height: 1.35; color: #fff;
    margin: 0 0 3px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.feed-carousel__price { font-size: 12px; font-weight: 800; color: #d4af37; }
@media (max-width: 540px) { .feed-carousel__card { flex: 0 0 145px; } }
