/* TicketsFest Україна Single Performer Page — extracted in v9.7.1 */
:root {
    --primary:       #2563eb;
    --primary-dark:  #1d4ed8;
    --primary-light: #3b82f6;
    --bg-dark:       #0f172a;
    --white:         #ffffff;
    --gray-50:       #f8fafc;
    --gray-100:      #f1f5f9;
    --gray-200:      #e2e8f0;
    --gray-300:      #cbd5e1;
    --gray-400:      #94a3b8;
    --gray-500:      #64748b;
    --gray-800:      #1e293b;
    --gray-900:      #0f172a;

    --container:  1140px;
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --padding-x:  clamp(16px, 4vw, 24px);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
body { background: var(--gray-50); font-family: 'DM Sans', 'Inter', sans-serif; -webkit-font-smoothing: antialiased; margin: 0; padding: 0; overflow-x: hidden; }
.tfe-page-wrapper { background: var(--gray-50); min-height: 100vh; padding-bottom: clamp(40px, 8vw, 80px); }
.tfe-container { max-width: var(--container); margin: 0 auto; padding: 0 var(--padding-x); width: 100%; }
.tfe-layout { max-width: var(--container); margin: 0 auto; padding: clamp(40px, 6vw, 60px) var(--padding-x); display: flex; flex-direction: column; gap: clamp(32px, 5vw, 48px); }

/* ── HERO ── */
.tfe-hero { position: relative; background: var(--bg-dark); padding: clamp(80px, 12vw, 120px) 0 0; overflow: visible; margin-bottom: clamp(20px, 5vw, 40px); }
.tfe-hero__bg { position: absolute; inset: 0; overflow: hidden; opacity: 0.4; }
.tfe-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(40px) saturate(1.5); transform: scale(1.1); }
.tfe-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,0.2), var(--bg-dark) 100%); }
.tfe-hero__content { position: relative; z-index: 10; display: grid; grid-template-columns: clamp(260px, 30vw, 340px) 1fr; gap: clamp(32px, 5vw, 50px); align-items: end; padding-bottom: clamp(40px, 6vw, 60px); }

.tfe-hero .tfe-poster { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.8); background: var(--gray-800); transform: translateY(clamp(20px, 4vw, 40px)); border: 1px solid rgba(255,255,255,0.1); }
.tfe-hero .tfe-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.tfe-hero-info { color: var(--white); width: 100%; }
.tfe-hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(37,99,235,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(59,130,246,0.3); border-radius: 99px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; color: #60a5fa; }
.tfe-hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.tfe-hero-title { font-family: 'DM Sans', sans-serif; font-size: clamp(32px, 6vw, 68px); font-weight: 900; line-height: 1.0; margin: 0 0 16px; letter-spacing: -0.03em; color: #fff; word-break: break-word; }
.tfe-hero-desc { font-size: clamp(14px, 2vw, 16px); color: var(--gray-300); line-height: 1.75; margin: 0 0 24px; max-width: 540px; }

/* Meta pills */
.tfe-meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tfe-meta-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 99px; font-size: 13px; font-weight: 700; color: var(--white); text-decoration: none; transition: var(--transition); }
a.tfe-meta-pill:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.tfe-meta-pill svg { width: 15px; height: 15px; color: var(--gray-400); flex-shrink: 0; }
.tfe-meta-pill--blue { background: rgba(37,99,235,0.2); border-color: rgba(59,130,246,0.4); color: #93c5fd; }

/* Buttons */
.tfe-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.tfe-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 99px; font-weight: 800; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; outline: none; font-family: inherit; }
.tfe-btn svg { flex-shrink: 0; width: 16px; height: 16px; }
.tfe-btn--primary { height: clamp(48px, 7vw, 56px); padding: 0 clamp(20px, 4vw, 28px); font-size: clamp(14px, 2vw, 15px); background: var(--primary); color: var(--white); box-shadow: 0 10px 25px rgba(37,99,235,0.3); border-radius: var(--radius-md); }
.tfe-btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(37,99,235,0.4); color: var(--white); }
.tfe-btn--dark { height: clamp(48px, 7vw, 56px); padding: 0 clamp(20px, 4vw, 28px); font-size: clamp(14px, 2vw, 15px); background: var(--gray-900); color: var(--white); border-radius: var(--radius-md); }
.tfe-btn--dark:hover { background: var(--primary); transform: translateY(-2px); color: var(--white); }
.tfe-btn--outline { height: 44px; padding: 0 20px; font-size: 14px; background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
.tfe-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.tfe-btn--icon { width: 44px; height: 44px; padding: 0; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.tfe-btn--icon:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.tfe-btn--icon svg { width: 18px; height: 18px; }
.tfe-btn--icon.tfe-btn--spotify { background: rgba(30,215,96,0.15); border-color: rgba(30,215,96,0.4); color: #1ed760; }
.tfe-btn--icon.tfe-btn--spotify:hover { background: rgba(30,215,96,0.25); border-color: #1ed760; }

/* ── SECTIONS ── */
.tfe-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(24px, 5vw, 40px); box-shadow: 0 10px 30px rgba(0,0,0,0.02); width: 100%; overflow: hidden; }
.tfe-section--transparent { background: transparent; border: none; padding: 0; box-shadow: none; overflow: visible; }
.tfe-section-title { font-family: 'DM Sans', sans-serif; font-size: clamp(20px, 3.5vw, 24px); font-weight: 900; color: var(--gray-900); margin: 0 0 24px; letter-spacing: -0.02em; border-bottom: 1px solid var(--gray-100); padding-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.tfe-section-title svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ── SPOTIFY ── */
.tfe-spotify-wrap { width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-100); min-height: 352px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); border: 1px solid var(--gray-200); }

/* ── GALLERY ── */
.tfe-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(140px, 22%, 220px), 1fr)); gap: 10px; }
.tfe-gallery-item { aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; background: var(--gray-100); }
.tfe-gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.tfe-gallery-item:hover img { transform: scale(1.06); }
.tfe-gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(15,23,42,0); transition: background 0.3s; }
.tfe-gallery-item:hover::after { background: rgba(15,23,42,0.15); }

/* Lightbox */
.tfe-lb-overlay { position: fixed; inset: 0; z-index: 999999; background: rgba(5,8,20,0.95); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; padding: 20px; }
.tfe-lb-overlay.is-open { display: flex; }
.tfe-lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.tfe-lb-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 40px 80px rgba(0,0,0,0.8); display: block; }
.tfe-lb-close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.tfe-lb-close:hover { background: rgba(255,255,255,0.2); }
.tfe-lb-close svg { width: 18px; height: 18px; }
.tfe-lb-prev, .tfe-lb-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; z-index: 2; }
.tfe-lb-prev { left: -56px; }
.tfe-lb-next { right: -56px; }
.tfe-lb-prev:hover, .tfe-lb-next:hover { background: rgba(255,255,255,0.2); }
.tfe-lb-prev svg, .tfe-lb-next svg { width: 20px; height: 20px; }
.tfe-lb-counter { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); white-space: nowrap; }

/* ── NO EVENTS ── */
.tfe-no-events { text-align: center; padding: clamp(60px, 10vw, 100px) 20px; }
.tfe-no-events svg { width: 56px; height: 56px; color: var(--gray-300); margin: 0 auto 20px; display: block; }
.tfe-no-events h3 { margin: 0 0 10px; font-size: 20px; font-weight: 800; color: var(--gray-900); }
.tfe-no-events p { margin: 0; color: var(--gray-500); font-size: 16px; }

/* ── SUBSCRIBE ── */
.tfe-sub-widget { background: radial-gradient(circle at top right, #1e3a8a 0%, #0f172a 100%); color: var(--white); border-radius: var(--radius-lg); padding: clamp(32px, 6vw, 50px); display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 5vw, 40px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); flex-wrap: wrap; }
.tfe-sub-widget-text { flex: 1; min-width: 250px; }
.tfe-sub-widget h3 { margin: 0 0 10px; font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 4vw, 28px); font-weight: 900; line-height: 1.2; }
.tfe-sub-widget h3 em { font-style: normal; background: linear-gradient(to right, #fff, #bfdbfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tfe-sub-widget p { margin: 0; color: var(--gray-400); font-size: clamp(14px, 2vw, 16px); }
.tfe-sub-form { display: flex; gap: 10px; width: 100%; max-width: 450px; flex-wrap: wrap; }
.tfe-sub-input { flex: 1; min-width: 200px; height: clamp(48px, 8vw, 56px); border-radius: 12px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); padding: 0 20px; color: var(--white); outline: none; font-size: 16px; font-family: inherit; }
.tfe-sub-input::placeholder { color: rgba(255,255,255,0.5); }
.tfe-sub-btn { height: clamp(48px, 8vw, 56px); padding: 0 28px; background: var(--primary); color: var(--white); border: none; border-radius: 12px; font-weight: 800; cursor: pointer; transition: 0.2s; font-size: 15px; white-space: nowrap; font-family: inherit; }
.tfe-sub-btn:hover { background: var(--primary-light); }

/* ── SHORTCODE CARDS FIX ── */
.tfe-instance .tfe-card-item { display: flex; flex-direction: column; }
.tfe-instance .tfe-card-inner { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--white); border: 1px solid var(--gray-200); box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: var(--transition); }
.tfe-instance .tfe-card-inner:hover { border-color: var(--primary); box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-4px); }
.tfe-instance .tfe-card-inner img.tfe-poster { width: 100% !important; height: 100% !important; aspect-ratio: 4/5 !important; object-fit: cover !important; object-position: center top !important; display: block !important; margin: 0 !important; padding: 0 !important; border: none !important; border-radius: 0 !important; transform: none !important; box-shadow: none !important; }

/* ── BOOKING MODAL ── */
.tfe-bk-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.85); backdrop-filter: blur(8px); z-index: 99999; display: none; align-items: center; justify-content: center; padding: var(--padding-x); }
.tfe-bk-overlay.is-open { display: flex; }
.tfe-bk-modal { background: var(--white); border-radius: var(--radius-lg); width: min(520px, 92vw); max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.tfe-bk-head { padding: clamp(20px,4vw,28px) clamp(20px,4vw,28px) 16px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; border-bottom: 1px solid var(--gray-200); }
.tfe-bk-label { margin: 0 0 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); font-weight: 800; }
.tfe-bk-artist { margin: 0; font-size: clamp(22px,4vw,28px); font-weight: 900; color: var(--gray-900); line-height: 1.1; }
.tfe-bk-meta { margin: 6px 0 0; color: var(--primary); font-weight: 700; font-size: 14px; }
.tfe-bk-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gray-200); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: 0.2s; color: var(--gray-500); }
.tfe-bk-close:hover { background: var(--gray-100); color: var(--gray-900); }
.tfe-bk-close svg { width: 18px; height: 18px; }
.tfe-bk-progress { display: flex; gap: 8px; padding: 16px clamp(20px,4vw,28px) 0; }
.tfe-bk-bar { height: 4px; flex: 1; border-radius: 99px; background: var(--gray-200); transition: background 0.3s; }
.tfe-bk-bar.active { background: var(--primary); }
.tfe-bk-body { padding: clamp(16px,3vw,24px) clamp(20px,4vw,28px) clamp(20px,4vw,28px); }
.tfe-bk-body label { display: block; font-size: 13px; font-weight: 700; color: var(--gray-800); margin-bottom: 14px; }
.tfe-bk-input { width: 100%; margin-top: 8px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 12px 16px; font-family: inherit; font-size: 15px; color: var(--gray-900); outline: none; background: var(--white); transition: 0.2s; box-sizing: border-box; }
.tfe-bk-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.tfe-bk-acts { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; }
.tfe-bk-pri { flex: 1; min-height: 50px; border-radius: var(--radius-md); border: none; background: var(--gray-900); color: var(--white); font-family: inherit; font-size: 15px; font-weight: 800; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.tfe-bk-pri:hover:not(:disabled) { background: var(--primary); }
.tfe-bk-pri:disabled { opacity: 0.5; cursor: not-allowed; }
.tfe-bk-sec { min-height: 50px; padding: 0 20px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); background: var(--gray-50); color: var(--gray-800); font-family: inherit; font-size: 15px; font-weight: 800; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.tfe-bk-sec:hover { border-color: var(--primary); color: var(--primary); }
.tfe-bk-ok { display: none; text-align: center; padding: clamp(40px,8vw,60px) clamp(20px,4vw,28px); }
.tfe-bk-ok-icon { width: 68px; height: 68px; border-radius: 50%; background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.tfe-bk-ok-icon svg { width: 32px; height: 32px; }
.tfe-bk-ok h3 { margin: 0 0 8px; font-size: 24px; font-weight: 900; color: var(--gray-900); }
.tfe-bk-ok p { margin: 0; color: var(--gray-500); font-weight: 600; }
.tfe-bk-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

/* ── VIDEOS ── */
.tfe-video-section {}
.tfe-video-main { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; background: var(--gray-900); }
.tfe-video-main iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tfe-video-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.tfe-video-thumb { position: relative; width: clamp(100px, 20%, 160px); aspect-ratio: 16/9; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--gray-900); border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; }
.tfe-video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.tfe-video-thumb:hover img { transform: scale(1.06); }
.tfe-video-thumb.is-active { border-color: var(--primary); }
.tfe-video-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.tfe-video-thumb:hover::after { background: rgba(0,0,0,0.1); }
.tfe-video-play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.tfe-video-play-icon svg { width: 32px; height: 32px; color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8)); }

/* ── BIO ── */
.tfe-bio-content { font-size: clamp(15px, 2vw, 16px); line-height: 1.8; color: var(--gray-800); }
.tfe-bio-content p { margin: 0 0 16px; }
.tfe-bio-content p:last-child { margin-bottom: 0; }

/* ── TOURS ── */
.tfe-tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(220px, 30%, 320px), 1fr)); gap: 16px; }
.tfe-tour-card { display: flex; gap: 14px; align-items: center; padding: 14px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); text-decoration: none; color: inherit; transition: var(--transition); }
.tfe-tour-card:hover { border-color: var(--primary); background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.07); }
.tfe-tour-card__img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--gray-200); }
.tfe-tour-card__body { min-width: 0; flex: 1; }
.tfe-tour-card__title { font-weight: 800; font-size: 14px; color: var(--gray-900); margin: 0 0 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tfe-tour-card__meta { font-size: 12px; color: var(--gray-500); font-weight: 600; margin: 0; }
.tfe-tour-card__arrow { margin-left: auto; flex-shrink: 0; color: var(--gray-400); transition: var(--transition); }
.tfe-tour-card:hover .tfe-tour-card__arrow { color: var(--primary); transform: translateX(3px); }

/* ── SHARE ── */
.tfe-share-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 32px); background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.tfe-share-label { font-size: 12px; font-weight: 800; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; margin-right: 4px; }
.tfe-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 800; font-size: 11px; text-decoration: none; transition: var(--transition); flex-shrink: 0; letter-spacing: 0; }
.tfe-share-btn:hover { transform: translateY(-3px); filter: brightness(1.1); }
.tfe-share-btn--tg   { background: #0088cc; }
.tfe-share-btn--wa   { background: #25D366; }
.tfe-share-btn--fb   { background: #1877F2; }
.tfe-share-btn--copy { background: var(--gray-800); cursor: pointer; border: none; font-family: inherit; }
.tfe-share-btn--copy:hover { background: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .tfe-hero__content { grid-template-columns: 1fr; text-align: center; justify-items: center; padding-bottom: 0; }
    .tfe-hero .tfe-poster { max-width: 300px; margin: 0 auto; transform: translateY(0); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
    .tfe-meta-row { justify-content: center; }
    .tfe-actions { justify-content: center; flex-wrap: wrap; }
    .tfe-btn--primary, .tfe-btn--dark, .tfe-btn--outline { flex: 1; min-width: 140px; justify-content: center; }
    .tfe-btn--icon { flex: 0 0 44px; }
    .tfe-hero-desc { text-align: left; }
    .tfe-sub-widget { flex-direction: column; text-align: center; }
    .tfe-sub-form { max-width: 100%; }
    /* Lightbox: move prev/next inside the image area on narrow screens */
    .tfe-lb-prev { left: 4px; }
    .tfe-lb-next { right: 4px; }
    .tfe-lb-prev, .tfe-lb-next { width: 36px; height: 36px; background: rgba(0,0,0,0.5); }
    .tfe-lb-inner { max-width: 100vw; }
    .tfe-lb-inner img { max-width: 92vw; max-height: 80vh; }
    /* Video thumbs — scroll horizontally on mobile */
    .tfe-video-thumbs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .tfe-video-thumbs::-webkit-scrollbar { display: none; }
    .tfe-video-thumb { flex-shrink: 0; width: 100px; }
}
@media (max-width: 480px) {
    .tfe-sub-form { flex-direction: column; }
    .tfe-sub-btn { width: 100%; }
    .tfe-bk-acts { flex-direction: column; }
    .tfe-bk-sec { width: 100%; justify-content: center; }
    /* Modal inputs must never overflow */
    .tfe-bk-input { box-sizing: border-box; max-width: 100%; }
    .tfe-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tfe-tours-grid { grid-template-columns: 1fr; }
    .tfe-share-bar { flex-wrap: wrap; }
}

/* v9.9.37 — Bookable performer public info panel */
.tfe-booking-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(18px, 4vw, 32px);
    padding: clamp(22px, 4vw, 34px);
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 58%, #2563eb 100%);
    border: 1px solid rgba(147,197,253,.28);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .18);
}
.tfe-booking-info__main { min-width: 0; flex: 1; }
.tfe-booking-info__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.tfe-booking-info h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}
.tfe-booking-info p {
    margin: 0;
    max-width: 820px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.65;
}
.tfe-booking-info__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.tfe-booking-info__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.90);
    font-size: 13px;
    font-weight: 700;
}
.tfe-booking-info__meta strong { color: #fff; }
.tfe-booking-info .tfe-book-open {
    flex-shrink: 0;
    background: #fff !important;
    color: #0f172a !important;
    border: 0 !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.tfe-booking-info .tfe-book-open:hover { transform: translateY(-2px); }
@media (max-width: 768px) {
    .tfe-booking-info { flex-direction: column; align-items: stretch; }
    .tfe-booking-info .tfe-book-open { width: 100%; justify-content: center; }
}
