/**
 * Cococure What's On Styles
 * Brand Guidelines 2026 - Parent brand neutral styling (black and gold)
 * Uses Haus Gold (#c9a96e) as the primary accent for cross-venue content
 */

/* ============================================
   Core Container
   ============================================ */
.sj-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================
   Hero Section
   ============================================ */
.sj-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sj-hero--bleed {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
}

.sj-hero img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.sj-hero .sj-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

/* ============================================
   Venue Tabs — Bold & Prominent
   ============================================ */
.sj-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sj-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.2px;
}

.sj-tab:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: #c9a96e;
    color: #c9a96e;
    transform: translateY(-1px);
}

.sj-tab--active,
.sj-tab.sj-tab--active {
    background: #c9a96e !important;
    color: #000 !important;
    border-color: #c9a96e !important;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
    transform: scale(1.05);
}

/* ============================================
   Type Filters (All / Events / Dining) — Prominent
   ============================================ */
.sj-type-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sj-type-filters .sj-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border: 2px solid;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.sj-chip-icon {
    font-size: 16px;
    line-height: 1;
}

/* All — gold */
.sj-chip--all {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.35);
    color: #c9a96e;
}
.sj-chip--all:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: #c9a96e;
}
.sj-chip--all.sj-tab--active {
    background: #c9a96e !important;
    border-color: #c9a96e !important;
    color: #000 !important;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.5);
    transform: scale(1.05);
}

/* Events — purple */
.sj-chip--events {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.35);
    color: #A855F7;
}
.sj-chip--events:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: #A855F7;
    color: #C084FC;
}
.sj-chip--events.sj-tab--active {
    background: #A855F7 !important;
    border-color: #A855F7 !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
}

/* Dining — warm orange */
.sj-chip--dining {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.35);
    color: #F97316;
}
.sj-chip--dining:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: #F97316;
    color: #FB923C;
}
.sj-chip--dining.sj-tab--active {
    background: #F97316 !important;
    border-color: #F97316 !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
    transform: scale(1.05);
}

/* Find My Night chip */
.sj-chip--finder {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(168, 85, 247, 0.12));
    border-color: rgba(201, 162, 39, 0.4);
    color: #c9a96e;
    cursor: pointer;
    font-family: inherit;
}
.sj-chip--finder:hover {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(168, 85, 247, 0.2));
    border-color: #c9a96e;
    transform: scale(1.05);
}

/* ============================================
   Find My Night Flow
   ============================================ */
.sj-finder {
    margin-top: 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sj-finder.is-open {
    opacity: 1;
    transform: translateY(0);
}

.sj-finder__card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    max-width: 600px;
}

.sj-finder__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #888;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.sj-finder__close:hover { color: #fff; }

.sj-finder__progress {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    margin-bottom: 24px;
    overflow: hidden;
}
.sj-finder__progress-bar {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #c9a96e, #A855F7);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.sj-finder__q {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.sj-finder__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sj-finder__options--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.sj-finder__opt {
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #e8e4dc;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-align: center;
}
.sj-finder__opt:hover {
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.4);
    color: #c9a96e;
}
.sj-finder__opt.is-selected {
    background: rgba(201, 162, 39, 0.2);
    border-color: #c9a96e;
    color: #c9a96e;
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.2);
}

/* Results */
.sj-finder__results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sj-finder__result {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #e8e4dc;
    transition: all 0.2s;
}
.sj-finder__result:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
}

.sj-finder__result-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sj-finder__result-info {
    flex: 1;
    min-width: 0;
}

.sj-finder__result-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sj-finder__result-meta {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.sj-finder__result-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    margin-right: 4px;
}
.sj-finder__result-tag--vip {
    background: rgba(201, 162, 39, 0.15);
    color: #c9a96e;
}

.sj-finder__empty {
    text-align: center;
    color: #888;
    padding: 20px;
    font-size: 14px;
}

.sj-finder__restart {
    margin-top: 16px;
    background: none;
    border: 1px solid #444;
    border-radius: 8px;
    color: #888;
    padding: 8px 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.sj-finder__restart:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

@media (max-width: 480px) {
    .sj-finder__card { padding: 20px 16px; }
    .sj-finder__q { font-size: 18px; }
    .sj-finder__options--grid { grid-template-columns: 1fr 1fr; }
    .sj-finder__result-img { width: 50px; height: 50px; }
}

/* ============================================
   Filters Section
   ============================================ */
.sj-filters {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sj-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sj-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sj-chip:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

.sj-chip.sj-tab--active {
    background: #c9a96e !important;
    border-color: #c9a96e !important;
    color: #000 !important;
    box-shadow: 0 3px 12px rgba(201, 162, 39, 0.4);
    transform: scale(1.05);
}

/* Day Pills */
.sj-daypills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sj-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sj-pill:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

.sj-pill.sj-tab--active {
    background: #c9a96e !important;
    border-color: #c9a96e !important;
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(201, 162, 39, 0.4);
    transform: scale(1.05);
}

/* ============================================
   Buttons
   ============================================ */
.sj-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 8px;
    color: #c9a96e;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sj-btn:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: #c9a96e;
    color: #c9a96e;
}

.sj-btn--primary {
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    border-color: #c9a96e;
    color: #000;
}

.sj-btn--primary:hover {
    background: linear-gradient(135deg, #B8960C, #c9a96e);
    color: #000;
    transform: translateY(-1px);
}

.sj-btn--gold {
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    border-color: #c9a96e;
    color: #000;
    font-weight: 600;
}

.sj-btn--gold:hover {
    background: linear-gradient(135deg, #B8960C, #c9a96e);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

/* Date Picker */
.sj-datepicker-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sj-datepicker-label {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
    line-height: 1;
    white-space: nowrap;
}

.sj-datepicker-input {
    width: auto;
    max-width: 180px;
    padding: 8px 14px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 20px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    color-scheme: dark;
    -webkit-appearance: none;
    appearance: none;
}

.sj-datepicker-input::-webkit-calendar-picker-indicator {
    filter: invert(60%) sepia(60%) saturate(500%) hue-rotate(90deg);
    cursor: pointer;
}

.sj-datepicker-input:hover,
.sj-datepicker-input:focus {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    outline: none;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.sj-datepicker-active {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #22c55e;
    border-radius: 20px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(34, 197, 94, 0.4);
}

/* Icons */
.sj-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================================
   Event Cards Grid
   ============================================ */
.sj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .sj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .sj-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Event Card
   ============================================ */
.sj-card {
    position: relative;
    background: #111 !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sj-card > * {
    background: #111 !important;
    background-color: #111 !important;
}

.sj-card-bottom {
    background: #111 !important;
}

.sj-card-privileges {
    background: #111 !important;
}

.sj-card-actions-secondary {
    background: #111 !important;
}

.sj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(201, 162, 39, 0.2);
}

/* Flyer container */
.sj-card-flyer {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 13;
    overflow: hidden;
    background: #000;
}

.sj-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.sj-img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover !important;
    object-position: center top;
    transition: transform 0.5s ease;
}

.sj-card:hover .sj-img {
    transform: scale(1.03);
}

/* ============================================
   Venue Badge — Bold & Prominent
   ============================================ */
.sj-locchip {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Haus Stratford venue badge */
.sj-locchip[data-venue*="Haus"],
.sj-locchip[data-venue*="haus"] {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.9), rgba(184, 150, 12, 0.9));
    color: #000;
    border-color: transparent;
}

/* TWNTY7 venue badge */
.sj-locchip[data-venue*="TWNTY7"],
.sj-locchip[data-venue*="twnty7"] {
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.9), rgba(230, 57, 0, 0.9));
    color: #fff;
    border-color: transparent;
}

/* Cite Aldgate venue badge */
.sj-locchip[data-venue*="Cite"],
.sj-locchip[data-venue*="cite"],
.sj-locchip[data-venue*="Cité"],
.sj-locchip[data-venue*="Aldgate"] {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.9), rgba(211, 84, 0, 0.9));
    color: #fff;
    border-color: transparent;
}

/* ============================================
   Special Badges (Ladies Pricing / Dining / Sold Out)
   — More Prominent
   ============================================ */
.sj-special-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.sj-special-badge::before {
    content: "\1F451";
    font-size: 13px;
}

/* Dining badge */
.sj-special-badge--dining {
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.sj-special-badge--dining::before {
    content: "\1F37D\FE0F";
    font-size: 13px;
}

/* Experience badge */
.sj-special-badge--experience {
    background: linear-gradient(135deg, #E040FB, #AB47BC);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(224, 64, 251, 0.4);
}

.sj-special-badge--experience::before {
    content: "\2728";
    font-size: 13px;
}

/* Sold out badge */
.sj-special-badge--soldout {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.sj-special-badge--soldout::before {
    content: none;
}

/* ── Social Proof Pills ── */
.sj-proof {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}
.proof--hot {
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
}
.proof--momentum {
    background: rgba(59, 130, 246, 0.8);
    color: #fff;
}
.proof--tonight {
    background: rgba(168, 85, 247, 0.8);
    color: #fff;
}
.proof--soon {
    background: rgba(30, 41, 59, 0.85);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.3);
}
.proof--guestlist {
    background: rgba(20, 184, 166, 0.8);
    color: #fff;
}
.proof--vibe {
    background: rgba(30, 41, 59, 0.85);
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.3);
}
.proof--history {
    background: rgba(30, 41, 59, 0.85);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.proof--tables {
    background: rgba(201, 169, 110, 0.15);
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.3);
}
.proof--weather {
    background: rgba(250, 204, 21, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(250, 204, 21, 0.3);
}
.proof--appeal {
    background: rgba(30, 41, 59, 0.85);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.proof--dining {
    background: rgba(201, 169, 110, 0.15);
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.25);
}
.proof--experience {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}
.proof--default {
    background: rgba(30, 41, 59, 0.85);
    color: #94a3b8;
}

/* Gradient overlay */
.sj-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top,
        rgba(17, 17, 17, 1) 0%,
        rgba(17, 17, 17, 0.98) 10%,
        rgba(17, 17, 17, 0.85) 25%,
        rgba(17, 17, 17, 0.5) 50%,
        rgba(17, 17, 17, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Info overlay at bottom of flyer */
.sj-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    z-index: 2;
    color: #fff;
}

/* ============================================
   Date / Time Meta — Highly Readable
   ============================================ */
.sj-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.sj-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.65);
    padding: 8px 14px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #fff;
}

.sj-meta .sj-icon {
    width: 15px;
    height: 15px;
    opacity: 0.9;
    flex-shrink: 0;
    color: #c9a96e;
}

.sj-meta-icon {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

.sj-meta-sep {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Event title */
.sj-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.sj-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sj-card-title a:hover {
    color: #c9a96e;
}

/* Tags */
.sj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.sj-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* ============================================
   Bottom Button
   ============================================ */
.sj-card-bottom {
    background: #111 !important;
    padding: 16px;
    flex-grow: 1;
}

.sj-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.sj-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45);
    color: #000;
    background: linear-gradient(135deg, #B8960C, #c9a96e);
}

.sj-card-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.sj-card-cta:hover svg {
    transform: translateX(4px);
}

/* Secondary action row */
.sj-card-actions-secondary {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.sj-card-actions-secondary .sj-btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sj-card-actions-secondary .sj-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 162, 39, 0.5);
    color: #c9a96e;
}

.sj-card-actions-secondary .sj-btn-secondary svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* ============================================
   Privileges Block
   ============================================ */
.sj-card-privileges {
    padding: 0 16px 16px;
    background: #111;
}

.sj-card .cg-premium-cta {
    padding: 14px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.03)) !important;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin: 0;
}

.cg-premium-cta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}

.cg-premium-pill {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    border-radius: 16px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cg-info-bubble {
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid #c9a96e;
    color: #c9a96e;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cg-popover {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 100;
    max-width: 280px;
    color: #374151;
    font-size: 12px;
}

.cg-popover-inner strong {
    display: block;
    color: #000;
    margin-top: 8px;
    font-size: 13px;
}

.cg-popover-inner strong:first-child {
    margin-top: 0;
}

.cg-popover-inner p {
    margin: 4px 0 0;
    line-height: 1.4;
}

.cg-premium-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 8px 0 10px;
}

.cg-premium-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cg-premium-btn {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cg-premium-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cg-premium-btn--ghost:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

.cg-premium-btn--primary {
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    color: #000;
}

.cg-premium-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.cg-premium-form-wrap {
    margin-top: 10px;
}

/* ============================================
   Empty State
   ============================================ */
.sj-empty {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   Dining Card Description Hover (Desktop)
   ============================================ */
.sj-card-desc-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    text-align: center;
}

.sj-card--has-desc .sj-card-flyer:hover .sj-card-desc-hover {
    opacity: 1;
    pointer-events: auto;
}

.sj-card-desc-hover p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 280px;
    font-weight: 400;
}

.sj-card-desc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sj-card-desc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
    color: #000;
}

/* On mobile, hide the hover overlay — use the tap modal instead */
@media (hover: none) and (pointer: coarse) {
    .sj-card-desc-hover {
        display: none !important;
    }
}

/* ============================================
   Dining Description Overlay (Mobile Modal)
   ============================================ */
.sj-desc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sj-desc-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sj-desc-overlay-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sj-desc-overlay-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sj-desc-overlay-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sj-desc-overlay-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sj-desc-overlay-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sj-desc-overlay-body {
    padding: 24px;
}

.sj-desc-overlay-venue {
    font-size: 12px;
    font-weight: 700;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sj-desc-overlay-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}

.sj-desc-overlay-meta {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.sj-desc-overlay-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}

.sj-desc-overlay-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #c9a96e, #B8960C);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sj-desc-overlay-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
    color: #000;
}

.sj-desc-overlay-cta svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Venue-Specific Card Theming
   ============================================ */

/* Haus Stratford */
.sj-card[data-venue*="Haus"] .sj-card-cta,
.sj-card[data-venue*="haus"] .sj-card-cta {
    background: linear-gradient(135deg, #c9a96e, #a68b1f);
}

.sj-card[data-venue*="Haus"]:hover,
.sj-card[data-venue*="haus"]:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.sj-card[data-venue*="Haus"] .sj-card-title a:hover,
.sj-card[data-venue*="haus"] .sj-card-title a:hover {
    color: #c9a96e;
}

/* TWNTY7 Nightclub */
.sj-card[data-venue*="TWNTY7"] .sj-card-cta,
.sj-card[data-venue*="twnty7"] .sj-card-cta {
    background: linear-gradient(135deg, #FF3D00, #E63900);
}

.sj-card[data-venue*="TWNTY7"] .sj-card-cta:hover,
.sj-card[data-venue*="twnty7"] .sj-card-cta:hover {
    box-shadow: 0 12px 32px rgba(255, 61, 0, 0.45);
}

.sj-card[data-venue*="TWNTY7"]:hover,
.sj-card[data-venue*="twnty7"]:hover {
    border-color: rgba(255, 61, 0, 0.3);
}

.sj-card[data-venue*="TWNTY7"] .sj-card-title a:hover,
.sj-card[data-venue*="twnty7"] .sj-card-title a:hover {
    color: #FF3D00;
}

.sj-card[data-venue*="TWNTY7"] .sj-btn-secondary:hover,
.sj-card[data-venue*="twnty7"] .sj-btn-secondary:hover {
    border-color: rgba(255, 61, 0, 0.5);
    color: #FF3D00;
}

/* Cite Aldgate */
.sj-card[data-venue*="Cite"] .sj-card-cta,
.sj-card[data-venue*="cite"] .sj-card-cta,
.sj-card[data-venue*="Cité"] .sj-card-cta,
.sj-card[data-venue*="Aldgate"] .sj-card-cta {
    background: linear-gradient(135deg, #E67E22, #D35400);
}

.sj-card[data-venue*="Cite"] .sj-card-cta:hover,
.sj-card[data-venue*="cite"] .sj-card-cta:hover,
.sj-card[data-venue*="Cité"] .sj-card-cta:hover,
.sj-card[data-venue*="Aldgate"] .sj-card-cta:hover {
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.45);
}

.sj-card[data-venue*="Cite"]:hover,
.sj-card[data-venue*="cite"]:hover,
.sj-card[data-venue*="Cité"]:hover,
.sj-card[data-venue*="Aldgate"]:hover {
    border-color: rgba(230, 126, 34, 0.3);
}

.sj-card[data-venue*="Cite"] .sj-card-title a:hover,
.sj-card[data-venue*="cite"] .sj-card-title a:hover,
.sj-card[data-venue*="Cité"] .sj-card-title a:hover,
.sj-card[data-venue*="Aldgate"] .sj-card-title a:hover {
    color: #E67E22;
}

.sj-card[data-venue*="Cite"] .sj-btn-secondary:hover,
.sj-card[data-venue*="cite"] .sj-btn-secondary:hover,
.sj-card[data-venue*="Cité"] .sj-btn-secondary:hover,
.sj-card[data-venue*="Aldgate"] .sj-btn-secondary:hover {
    border-color: rgba(230, 126, 34, 0.5);
    color: #E67E22;
}

/* ============================================
   Dining Card Modifier
   ============================================ */

/* Dining tag pill inside card overlay */
.sj-tag--dining {
    background: rgba(201, 162, 39, 0.25);
    color: #c9a96e;
    border: 1px solid rgba(201, 162, 39, 0.4);
}

/* Experience tag */
.sj-tag--experience {
    background: rgba(224, 64, 251, 0.2);
    color: #E040FB;
    border: 1px solid rgba(224, 64, 251, 0.4);
}

/* Dining CTA */
.sj-card-cta--dining {
    background: linear-gradient(135deg, #c9a96e, #B8960C);
}

.sj-card-cta--dining:hover {
    background: linear-gradient(135deg, #B8960C, #c9a96e);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45);
}

.sj-card--dining:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.sj-card--dining .sj-card-cta {
    background: linear-gradient(135deg, #c9a96e, #B8960C);
}

.sj-card--dining .sj-card-cta:hover {
    background: linear-gradient(135deg, #B8960C, #c9a96e);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45);
}

/* ============================================
   Sold Out State
   ============================================ */
.sj-special-badge--soldout {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.sj-special-badge--soldout::before {
    content: none;
}

.sj-card-cta--soldout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 12px;
    color: #f87171;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: default;
    pointer-events: none;
}

.sj-card--soldout .sj-img {
    filter: brightness(0.7) saturate(0.6);
}

.sj-card--soldout:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sj-card.sj-card--soldout .sj-card-cta,
.sj-card.sj-card--soldout .sj-card-cta.sj-card-cta--soldout,
.sj-card.sj-card--soldout .sj-card-cta.sj-card-cta--dining,
.sj-card[data-venue].sj-card--soldout .sj-card-cta {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #f87171;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

/* ============================================
   Responsive — Mobile Optimized Cards
   ============================================ */
@media (max-width: 768px) {
    .sj-hero img {
        height: 200px;
    }

    .sj-tabs {
        gap: 8px;
    }

    .sj-tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .sj-card-title {
        font-size: 18px;
    }

    .sj-card-cta {
        padding: 14px 20px;
        font-size: 14px;
    }

    .sj-meta span {
        padding: 7px 12px;
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .sj-grid {
        gap: 20px;
    }

    .sj-card-flyer {
        aspect-ratio: 3 / 4;
    }

    .sj-card {
        border-radius: 16px;
    }

    .sj-locchip {
        padding: 8px 12px;
        font-size: 12px;
        top: 12px;
        left: 12px;
    }

    .sj-special-badge {
        padding: 7px 12px;
        font-size: 11px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .sj-card-overlay {
        padding: 16px;
    }

    .sj-card-bottom {
        padding: 0 12px 12px;
    }

    .sj-meta {
        font-size: 12px;
        gap: 8px;
    }

    .sj-meta span {
        padding: 6px 10px;
        font-size: 11px;
    }

    .sj-card-title {
        font-size: 16px;
    }

    .sj-desc-overlay-card {
        border-radius: 20px;
    }

    .sj-desc-overlay-body {
        padding: 20px;
    }

    .sj-desc-overlay-title {
        font-size: 20px;
    }
}

/* ============================================
   Background Color Override
   Force a deep charcoal/near-black background
   instead of the weird blue from the theme
   ============================================ */
.sj-wrap {
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================================
   COCOCURE EDITORIAL OVERRIDES  (.coco-ed scope)
   Matches /brunch/ + homepage typography / tokens.
   ===================================================================== */
.coco-ed.sj-wrap{
    --bg: #0a0a0a;
    --gold: #c9a96e;
    --gold-dim: rgba(201,169,110,0.15);
    --cream: #FAF7F0;
    --muted: #888;
    --surface: #141414;
    --border: #1f1f1f;
    --ed-serif: "Fraunces", "Playfair Display", Georgia, serif;
    --ed-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ed-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
    --ed-radius: 12px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    font-family: var(--ed-sans);
    color: var(--cream);
    -webkit-font-smoothing: antialiased;
}
.coco-ed.sj-wrap em{ font-family: var(--ed-serif); font-style: italic; }

/* Editorial hero (overrides .sj-hero on What's On) */
.coco-ed .coco-ed-hero{
    position: relative;
    min-height: 58vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 60px;
    margin: 0 -32px 32px;
    background: #000;
}
.coco-ed .coco-ed-hero-img{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    max-width: none;
}
.coco-ed .coco-ed-hero-scrim{
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 15%, rgba(0,0,0,0.4), rgba(0,0,0,0.65) 50%, #000 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.55) 80%, #0a0a0a 100%);
    z-index: 1;
}
.coco-ed .coco-ed-hero-inner{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.coco-ed .coco-ed-hero-title{
    font-family: var(--ed-serif);
    font-weight: 300;
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin: 8px 0 0;
}
.coco-ed .coco-ed-hero-title em{ font-style: italic; color: var(--gold); font-weight: 300; }
.coco-ed .coco-ed-hero-sub{
    font-size: clamp(16px, 1.4vw, 20px);
    color: rgba(250,247,240,0.82);
    margin: 20px 0 0;
    max-width: 620px;
    line-height: 1.55;
}
.coco-ed .coco-ed-hero-sub em{ color: var(--gold); }

/* Filter summary (appears in hero when any filter is active) */
.coco-ed .coco-ed-filter-summary{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin: 24px 0 0;
    padding: 18px 22px;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 999px;
    max-width: fit-content;
}
.coco-ed .coco-ed-filter-label{
    font-family: var(--ed-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    flex-shrink: 0;
}
.coco-ed .coco-ed-filter-chips{
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}
.coco-ed .coco-ed-filter-chip{
    font-family: var(--ed-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.005em;
}
.coco-ed .coco-ed-filter-sep{
    color: var(--gold);
    font-family: var(--ed-serif);
    font-style: normal;
    font-size: 18px;
    opacity: 0.6;
    line-height: 1;
}
.coco-ed .coco-ed-filter-clear{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-family: var(--ed-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.65);
    border: 1px solid rgba(250,247,240,0.18);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
    flex-shrink: 0;
    margin-left: auto;
}
.coco-ed .coco-ed-filter-clear:hover{
    border-color: var(--gold);
    color: var(--gold);
}
.coco-ed .coco-ed-filter-clear span{ font-size: 13px; }

/* Standalone filter summary (when the hero is disabled by show_header="0").
   Sits above the filter pill row so the guest always sees what's active. */
.coco-ed .coco-ed-filter-summary--standalone{
    margin: 32px 0 20px;
}

/* ── Compact "What's on" title bar (always visible, ~60px tall) ──── */
.coco-ed .coco-ed-whatson-bar{
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 24px 0 20px;
    margin: 0;
    border-bottom: 1px solid var(--border);
}
.coco-ed .coco-ed-whatson-h1{
    font-family: var(--ed-serif);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin: 0;
    flex-shrink: 0;
}
.coco-ed .coco-ed-whatson-h1 em{
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.coco-ed .coco-ed-whatson-filter{
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-left: auto;
}
.coco-ed .coco-ed-whatson-filter-label{
    font-family: var(--ed-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
}
.coco-ed .coco-ed-whatson-filter-chips{
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
}
.coco-ed .coco-ed-whatson-filter-chip{
    font-family: var(--ed-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.1;
    color: var(--cream);
}
.coco-ed .coco-ed-whatson-filter-sep{
    color: var(--gold);
    opacity: 0.55;
    font-size: 15px;
    line-height: 1;
}
.coco-ed .coco-ed-whatson-clear{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    margin-left: 4px;
    font-family: var(--ed-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.6);
    border: 1px solid rgba(250,247,240,0.18);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}
.coco-ed .coco-ed-whatson-clear:hover{
    border-color: var(--gold);
    color: var(--gold);
}
.coco-ed .coco-ed-whatson-clear span{ font-size: 12px; }

@media (max-width: 640px){
    .coco-ed .coco-ed-whatson-bar{
        padding: 20px 0 16px;
        gap: 10px;
    }
    .coco-ed .coco-ed-whatson-filter{
        margin-left: 0;
        width: 100%;
    }
    .coco-ed .coco-ed-whatson-filter-chip{ font-size: 15px; }
}

@media (max-width: 640px){
    .coco-ed .coco-ed-filter-summary{
        border-radius: 16px;
        max-width: 100%;
        padding: 14px 18px;
        gap: 10px 12px;
    }
    .coco-ed .coco-ed-filter-chip{ font-size: 17px; }
    .coco-ed .coco-ed-filter-clear{ margin-left: 0; }
}

/* Kicker primitive */
.coco-ed .coco-kicker{
    font-family: var(--ed-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    display: inline-block;
    margin-bottom: 12px;
}
.coco-ed .coco-kicker--gold{ color: var(--gold); opacity: 1; }

/* Location tabs — editorial treatment */
.coco-ed .sj-tabs{
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    margin-top: 24px !important;
}
.coco-ed .sj-tab{
    padding: 14px 22px;
    font-family: var(--ed-mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.55);
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    text-decoration: none;
    margin-bottom: -1px;
    transition: color .2s ease, border-color .2s ease;
}
.coco-ed .sj-tab:hover{ color: var(--cream); }
.coco-ed .sj-tab--active{
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: transparent;
}

/* Type filter chips */
.coco-ed .sj-type-filters{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.coco-ed .sj-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--ed-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.72);
    text-decoration: none;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}
.coco-ed .sj-chip:hover{ border-color: var(--gold); color: var(--gold); }
.coco-ed .sj-chip.sj-tab--active{
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}
.coco-ed .sj-chip--finder{
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.4);
    color: var(--gold);
}
.coco-ed .sj-chip--finder:hover{ background: rgba(201,169,110,0.18); }
.coco-ed .sj-chip-icon{ font-size: 13px; }

/* Day pills */
.coco-ed .sj-daypills{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.coco-ed .sj-pill{
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--ed-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.72);
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}
.coco-ed .sj-pill:hover{ border-color: var(--gold); color: var(--gold); }
.coco-ed .sj-pill.sj-tab--active{
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

/* Date picker */
.coco-ed .sj-datepicker-wrap{
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.coco-ed .sj-datepicker-label{
    font-family: var(--ed-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.coco-ed .sj-datepicker-input{
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
    font-family: var(--ed-sans);
    font-size: 14px;
    color: var(--cream);
    color-scheme: dark;
}
.coco-ed .sj-datepicker-input:focus{ outline: none; border-color: var(--gold); }
.coco-ed .sj-datepicker-active{
    font-family: var(--ed-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
}

.coco-ed .sj-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-family: var(--ed-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.72);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}
.coco-ed .sj-btn:hover{ border-color: var(--gold); color: var(--gold); }

/* Results grid */
.coco-ed #sj-results{ margin-top: 32px !important; }
.coco-ed .sj-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.coco-ed .sj-empty{
    padding: 80px 32px;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: var(--ed-radius);
    color: rgba(250,247,240,0.55);
}
.coco-ed .sj-empty div:first-child{
    font-family: var(--ed-serif) !important;
    font-style: italic;
    font-weight: 400 !important;
    font-size: 24px !important;
    color: var(--cream);
    margin-bottom: 8px;
}

/* Event / dining cards — editorial skin applied to existing .sj-card markup */
.coco-ed .sj-card,
.coco-ed .sj-event-card{
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--ed-radius) !important;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease;
    color: var(--cream);
}
.coco-ed .sj-card:hover,
.coco-ed .sj-event-card:hover{
    border-color: rgba(201,169,110,0.45) !important;
    transform: translateY(-2px);
}
.coco-ed .sj-card h3,
.coco-ed .sj-event-card h3,
.coco-ed .sj-event-title,
.coco-ed .sj-card-title{
    font-family: var(--ed-serif) !important;
    font-style: italic;
    font-weight: 400;
    font-size: 22px !important;
    line-height: 1.15;
    color: var(--cream) !important;
    letter-spacing: -0.005em;
}
.coco-ed .sj-card-venue,
.coco-ed .sj-event-venue,
.coco-ed .sj-venue{
    font-family: var(--ed-mono) !important;
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
}
.coco-ed .sj-card-date,
.coco-ed .sj-card-time,
.coco-ed .sj-event-date,
.coco-ed .sj-event-time,
.coco-ed .sj-date{
    font-family: var(--ed-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.65);
}

/* Clear filters button editorial */
.coco-ed .sj-filters{ margin-top: 20px !important; }
.coco-ed .sj-chips{ display: flex; gap: 8px; flex-wrap: wrap; }

/* "Find My Night" finder modal overrides */
.coco-ed .sj-finder__card{
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--ed-radius);
}
.coco-ed .sj-finder__q{
    font-family: var(--ed-serif) !important;
    font-style: italic;
    font-weight: 400;
    font-size: 28px !important;
    color: var(--cream);
}
.coco-ed .sj-finder__opt{
    font-family: var(--ed-sans);
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 14px 22px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--cream);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}
.coco-ed .sj-finder__opt:hover{
    border-color: var(--gold);
    background: rgba(201,169,110,0.06);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 640px){
    .coco-ed.sj-wrap{ padding: 0 20px; }
    .coco-ed .coco-ed-hero{ margin: 0 -20px 24px; min-height: 48vh; padding: 100px 0 40px; }
    .coco-ed .coco-ed-hero-inner{ padding: 0 20px; }
}
