/*
Theme Name: BizzTok
Theme URI: https://bizztok.id
Author: BizzTok Team
Author URI: https://bizztok.id
Description: Platform direktori bisnis lokal bergaya TikTok untuk UMKM Indonesia. Fitur feed video fullscreen, filter kota, badge terverifikasi, dan sistem pendaftaran bisnis multi-step.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bizztok
Tags: business-directory, video, local, mobile-first, dark

BizzTok WordPress Theme
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --bt-primary: #FF2D55;
  --bt-primary-dark: #cc1a3e;
  --bt-primary-light: #FAECE7;
  --bt-secondary: #1a1a2e;
  --bt-secondary-mid: #0d0d1a;
  --bt-blue: #378ADD;
  --bt-blue-light: #E6F1FB;
  --bt-blue-dark: #185FA5;
  --bt-green: #3B6D11;
  --bt-green-light: #EAF3DE;
  --bt-amber-light: #FAEEDA;
  --bt-purple-light: #EEEDFE;
  --bt-purple: #534AB7;
  --bt-white: #ffffff;
  --bt-border: rgba(255,255,255,0.1);
  --bt-text-muted: rgba(255,255,255,0.6);
  --bt-text-subtle: rgba(255,255,255,0.4);
  --bt-nav-height: 64px;
  --bt-header-height: 48px;
  --bt-radius-sm: 8px;
  --bt-radius-md: 12px;
  --bt-radius-lg: 20px;
  --bt-radius-pill: 50px;
  --bt-font: 'Plus Jakarta Sans', 'Noto Sans', system-ui, sans-serif;
  --bt-font-mono: 'JetBrains Mono', monospace;
  --bt-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --bt-shadow: 0 4px 24px rgba(0,0,0,0.3);
  --bt-shadow-card: 0 2px 12px rgba(0,0,0,0.2);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--bt-font);
  background: var(--bt-secondary-mid);
  color: var(--bt-white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--bt-font); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--bt-font); outline: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--bt-white);
}
h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.25rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.6; color: var(--bt-text-muted); }

/* ============================================
   LAYOUT
   ============================================ */
.bt-container {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  background: var(--bt-secondary-mid);
  overflow: visible;
}

.bt-container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.bt-splash {
  position: fixed;
  inset: 0;
  background: var(--bt-secondary-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.bt-splash.hidden { opacity: 0; visibility: hidden; }
.bt-splash-logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.bt-splash-logo span { color: var(--bt-primary); }
.bt-splash-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.bt-splash-progress {
  height: 100%;
  background: var(--bt-primary);
  border-radius: 10px;
  width: 0%;
  animation: splashLoad 1.5s ease forwards;
}
@keyframes splashLoad {
  0% { width: 0%; }
  60% { width: 80%; }
  100% { width: 100%; }
}

/* ============================================
   HEADER / APP BAR
   ============================================ */
.bt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bt-secondary);
  border-bottom: 0.5px solid var(--bt-border);
}

.bt-header-inner {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  gap: 12px;
  height: var(--bt-header-height);
}

.bt-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--bt-white);
  flex: 1;
}
.bt-logo span { color: var(--bt-primary); }

.bt-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bt-icon-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--bt-transition);
  position: relative;
}
.bt-icon-btn:hover { background: rgba(255,255,255,0.18); }
.bt-icon-btn svg { width: 16px; height: 16px; fill: var(--bt-white); }

.bt-notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: var(--bt-primary);
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bt-secondary);
}

/* ============================================
   FILTER / CATEGORY BAR
   ============================================ */
.bt-filter-bar {
  background: var(--bt-secondary);
  padding: 8px 12px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 0.5px solid var(--bt-border);
}
.bt-filter-bar::-webkit-scrollbar { display: none; }

.bt-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--bt-white);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: var(--bt-radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--bt-transition);
  font-weight: 500;
}
.bt-chip:hover { background: rgba(255,255,255,0.15); }
.bt-chip.active {
  background: var(--bt-primary);
  border-color: var(--bt-primary);
}
.bt-chip.city {
  background: rgba(55, 138, 221, 0.2);
  border-color: var(--bt-blue);
  color: #85B7EB;
}

/* ============================================
   FEED / VIDEO CARDS
   ============================================ */
.bt-feed {
  padding-bottom: calc(var(--bt-nav-height) + 16px);
}

.bt-video-card {
  position: relative;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0d0d1a;
  /* Snap scrolling on mobile */
  scroll-snap-align: start;
}

/* Reset semua button di dalam card agar tidak kena style WP/theme */
.bt-video-card button {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

/* Snap container */
.bt-feed {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100svh;
  height: 100dvh;
  padding-bottom: 0;
}

/* Desktop: constrained card height, side-by-side feel */
@media (min-width: 768px) {
  .bt-feed {
    scroll-snap-type: none;
    overflow-y: visible;
    height: auto;
    padding-bottom: 40px;
  }
  .bt-video-card {
    height: auto;
    min-height: unset;
    max-height: unset;
    aspect-ratio: 9/16;
    max-width: 420px;
    margin: 0 auto 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
}

.bt-video-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  background: #0d0d1a;
  overflow: hidden;
}
.bt-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.bt-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  display: block;
}

/* Gradient overlays */
.bt-video-grad-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  z-index: 1;
}
.bt-video-grad-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  z-index: 1;
}

/* Video play/pause overlay */
.bt-video-tap {
  position: absolute;
  top: 0;
  left: 0;
  right: 70px; /* biarkan area kanan untuk side-actions */
  bottom: calc(var(--bt-nav-height) + 120px); /* biarkan area bawah untuk action buttons */
  z-index: 2;
  cursor: pointer;
}

.bt-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.2s ease;
  pointer-events: none;
}
.bt-play-indicator.show { transform: translate(-50%, -50%) scale(1); }
.bt-play-indicator svg { width: 28px; height: 28px; fill: white; }

/* Progress bar */
.bt-video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 5;
}
.bt-video-progress-fill {
  height: 100%;
  background: var(--bt-primary);
  width: 0%;
  transition: width 0.1s linear;
}

/* Mute / Unmute button — mengikuti gaya bt-side-btn di kolom kanan */
.bt-mute-btn .bt-icon-muted { display: block; }
.bt-mute-btn .bt-icon-unmuted { display: none; }
.bt-mute-btn:not(.bt-is-muted) .bt-icon-muted { display: none; }
.bt-mute-btn:not(.bt-is-muted) .bt-icon-unmuted { display: block; }

/* Overlay content */
.bt-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 7;
  /* padding-bottom = navbar + safe-area agar Simpan/WA tidak tertutup */
  padding: 16px 56px calc(var(--bt-nav-height) + 24px + env(safe-area-inset-bottom)) 16px;
  pointer-events: none; /* biarkan tap tembus ke video-tap, kecuali elemen interaktif */
}
.bt-video-overlay a,
.bt-video-overlay button,
.bt-video-overlay .bt-action-row {
  pointer-events: auto;
}

.bt-biz-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bt-primary);
  color: var(--bt-white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--bt-radius-pill);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bt-biz-verified svg { width: 10px; height: 10px; fill: white; }

.bt-biz-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--bt-white);
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.bt-biz-desc {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.bt-biz-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bt-blue);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.bt-biz-location svg { width: 13px; height: 13px; fill: var(--bt-blue); }

.bt-biz-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.bt-biz-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.bt-biz-meta-item svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.5); }

.bt-action-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.bt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bt-primary);
  color: var(--bt-white);
  border-radius: var(--bt-radius-pill);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--bt-transition);
  border: none;
}
.bt-btn-primary:hover { background: var(--bt-primary-dark); transform: scale(1.02); }
.bt-btn-primary svg { width: 13px; height: 13px; fill: white; }

.bt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  color: var(--bt-white);
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: var(--bt-radius-pill);
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--bt-transition);
}
.bt-btn-ghost:hover { background: rgba(255,255,255,0.2); }

.bt-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25D366;
  color: white;
  border-radius: var(--bt-radius-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--bt-transition);
}
.bt-btn-whatsapp:hover { background: #1ebe5d; }
.bt-btn-whatsapp svg { width: 13px; height: 13px; fill: white; }

/* Side action buttons */
.bt-side-actions {
  position: absolute;
  right: 10px;
  bottom: calc(var(--bt-nav-height) + 120px);
  z-index: 8; /* di atas overlay */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  pointer-events: auto;
}

.bt-side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0;
  min-width: 48px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
  outline: none;
}

.bt-side-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  background: rgba(0,0,0,0.45) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all var(--bt-transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  border: none !important;
  outline: none;
}
.bt-side-btn:active .bt-side-icon,
.bt-side-btn:hover .bt-side-icon { background: rgba(255,255,255,0.22) !important; transform: scale(1.08); }
.bt-side-icon svg { width: 22px; height: 22px; fill: #fff; display: block; flex-shrink: 0; }
.bt-side-icon.liked { background: rgba(255,45,85,0.25) !important; }
.bt-side-icon.liked svg { fill: var(--bt-primary); }

.bt-side-label {
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  line-height: 1;
  text-align: center;
}

.bt-avatar-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--bt-primary);
  background: rgba(55, 138, 221, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #85B7EB;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}
.bt-avatar-ring img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.bt-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--bt-secondary);
  border-top: 0.5px solid var(--bt-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 200;
  height: var(--bt-nav-height);
}

.bt-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: var(--bt-radius-sm);
  transition: all var(--bt-transition);
  text-decoration: none;
  flex: 1;
  max-width: 72px;
}
.bt-nav-item svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.4); transition: fill var(--bt-transition); }
.bt-nav-label { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 500; }
.bt-nav-item.active svg { fill: var(--bt-white); }
.bt-nav-item.active .bt-nav-label { color: var(--bt-white); }

/* Post/Upload button */
.bt-post-btn-wrap { position: relative; }
.bt-post-btn {
  width: 44px;
  height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-post-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bt-blue);
  border-radius: 10px;
  transform: translateX(-4px);
}
.bt-post-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bt-primary);
  border-radius: 10px;
  transform: translateX(4px);
}
.bt-post-btn-inner {
  position: relative;
  z-index: 1;
  background: var(--bt-white);
  color: var(--bt-secondary-mid);
  width: 34px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.bt-page {
  padding-top: 0;
  padding-bottom: calc(var(--bt-nav-height) + 16px);
  min-height: 100vh;
}

.bt-search-header {
  padding: 12px 16px;
  background: var(--bt-secondary);
  border-bottom: 0.5px solid var(--bt-border);
}

.bt-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bt-search-input-wrap svg {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.4);
}
.bt-search-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--bt-radius-pill);
  padding: 10px 16px 10px 38px;
  color: var(--bt-white);
  font-size: 14px;
  transition: all var(--bt-transition);
}
.bt-search-input::placeholder { color: rgba(255,255,255,0.35); }
.bt-search-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* Category grid */
.bt-section {
  padding: 16px;
}
.bt-section-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.bt-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bt-cat-item {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--bt-radius-md);
  padding: 14px 8px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--bt-transition);
  text-decoration: none;
  display: block;
}
.bt-cat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.bt-cat-icon { font-size: 24px; margin-bottom: 6px; }
.bt-cat-label { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; }
.bt-cat-count { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ============================================
   BUSINESS PROFILE PAGE
   ============================================ */
.bt-profile-hero {
  background: #0d0d1a;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bt-profile-hero-emoji { font-size: 72px; }
.bt-profile-hero img { width: 100%; height: 100%; object-fit: cover; }

.bt-profile-verified-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bt-primary);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--bt-radius-pill);
}

.bt-profile-body {
  padding: 0 16px 20px;
  background: var(--bt-secondary-mid);
  /* FIX #3: pastikan ada ruang atas untuk avatar overlap */
  position: relative;
}

.bt-biz-avatar-lg {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: var(--bt-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 3px solid var(--bt-secondary-mid);
  margin-top: -34px;
  margin-bottom: 10px;
  overflow: hidden;
}

.bt-biz-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bt-biz-title-lg {
  font-size: 17px;
  font-weight: 700;
  color: var(--bt-white);
  margin-bottom: 3px;
}

.bt-biz-category {
  font-size: 12px;
  color: var(--bt-text-muted);
}

.bt-stats-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.bt-stat-box {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--bt-radius-md);
  padding: 10px 6px;
  text-align: center;
}
.bt-stat-num { font-size: 16px; font-weight: 700; color: var(--bt-white); }
.bt-stat-lbl { font-size: 10px; color: var(--bt-text-muted); margin-top: 2px; }

.bt-divider { height: 0.5px; background: rgba(255,255,255,0.08); margin: 14px 0; }

.bt-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.bt-info-row svg { width: 15px; height: 15px; fill: var(--bt-blue); flex-shrink: 0; }
.bt-info-text { font-size: 13px; color: var(--bt-white); }
.bt-info-text span { color: var(--bt-text-muted); }

.bt-open-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bt-green-light);
  color: var(--bt-green);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--bt-radius-pill);
}

.bt-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.bt-tag {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--bt-radius-pill);
  padding: 4px 12px;
  font-size: 11px;
  color: var(--bt-text-muted);
}

.bt-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 4px;
}
.bt-vthumb {
  aspect-ratio: 9/14;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bt-vthumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.bt-vthumb-play {
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 18px;
  height: 18px;
  background: rgba(0,0,0,0.6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-vthumb-play svg { width: 10px; height: 10px; fill: white; }

/* ============================================
   PHOTO GALLERY
   ============================================ */
.bt-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 4px;
}
.bt-photo-thumb {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #1a1a2e;
}
.bt-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.bt-photo-thumb:hover img { transform: scale(1.05); }

/* Photo slot pips (owner panel) */
.bt-photo-slot-pip {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.bt-photo-slot-pip.used {
  background: rgba(55,138,221,0.15);
  border-color: var(--bt-blue);
  color: var(--bt-blue);
}

/* ============================================
   REGISTRATION FORM
   ============================================ */
.bt-form-wrap {
  padding: 0 0 calc(var(--bt-nav-height) + 24px);
}

.bt-step-bar {
  background: var(--bt-secondary);
  padding: 12px 16px 14px;
  border-bottom: 0.5px solid var(--bt-border);
}
.bt-steps-row {
  display: flex;
  align-items: center;
}
.bt-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.bt-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.bt-step-done { background: var(--bt-primary); color: white; }
.bt-step-active { background: white; color: var(--bt-secondary); }
.bt-step-pending { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
.bt-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.bt-step-line.done { background: var(--bt-primary); }
.bt-steps-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.bt-step-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  flex: 1;
}
.bt-step-lbl.active { color: white; font-weight: 600; }
.bt-step-lbl.done { color: var(--bt-primary); }

.bt-form-body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bt-form-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bt-white);
  margin-bottom: 4px;
}
.bt-form-subtitle { font-size: 13px; color: var(--bt-text-muted); }

.bt-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bt-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bt-white);
}
.bt-field-req { color: var(--bt-primary); }
.bt-field-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--bt-radius-md);
  border: 0.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--bt-white);
  font-size: 13px;
  transition: all var(--bt-transition);
}
.bt-field-input::placeholder { color: rgba(255,255,255,0.25); }
.bt-field-input:focus {
  border-color: var(--bt-blue);
  background: rgba(55, 138, 221, 0.08);
}
.bt-field-input.filled {
  border-color: var(--bt-blue);
  background: rgba(55, 138, 221, 0.08);
}
.bt-field-input.error { border-color: var(--bt-primary); }
.bt-field-error { font-size: 11px; color: var(--bt-primary); }
.bt-field-hint { font-size: 11px; color: rgba(255,255,255,0.35); }
.bt-field-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--bt-radius-md);
  border: 0.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--bt-white);
  font-size: 13px;
  appearance: none;
  cursor: pointer;
}
.bt-field-select option { background: var(--bt-secondary); }
.bt-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Upload box */
.bt-upload-box {
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--bt-radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  transition: all var(--bt-transition);
}
.bt-upload-box:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
.bt-upload-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.bt-upload-icon svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); }
.bt-upload-text { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.bt-upload-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* Packages */
.bt-pkg-card {
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--bt-radius-md);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--bt-transition);
  background: rgba(255,255,255,0.03);
}
.bt-pkg-card:hover { background: rgba(255,255,255,0.06); }
.bt-pkg-card.selected { border-color: var(--bt-primary); background: rgba(255,45,85,0.08); }
.bt-pkg-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--bt-transition);
}
.bt-pkg-card.selected .bt-pkg-radio {
  border-color: var(--bt-primary);
  background: var(--bt-primary);
}
.bt-pkg-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--bt-transition);
}
.bt-pkg-card.selected .bt-pkg-radio::after { opacity: 1; }
.bt-pkg-name { font-size: 14px; font-weight: 600; color: var(--bt-white); }
.bt-pkg-price { font-size: 12px; color: var(--bt-text-muted); margin-top: 2px; }
.bt-pkg-badge {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: var(--bt-radius-pill);
  font-size: 10px;
  font-weight: 600;
}
.bt-pkg-badge.free { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.bt-pkg-badge.pro { background: var(--bt-green-light); color: var(--bt-green); }
.bt-pkg-badge.premium { background: var(--bt-amber-light); color: #854F0B; }

/* TOS */
.bt-tos-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bt-tos-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--bt-transition);
}
.bt-tos-check.checked { background: var(--bt-blue); border-color: var(--bt-blue); }
.bt-tos-check.checked::after { content: '✓'; font-size: 11px; color: white; font-weight: 700; }
.bt-tos-text { font-size: 12px; color: var(--bt-text-muted); line-height: 1.6; }
.bt-tos-link { color: var(--bt-blue); cursor: pointer; }

/* Form buttons */
.bt-btn-submit {
  width: 100%;
  background: var(--bt-primary);
  color: white;
  border: none;
  border-radius: var(--bt-radius-pill);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--bt-transition);
  letter-spacing: 0.3px;
}
.bt-btn-submit:hover { background: var(--bt-primary-dark); transform: translateY(-1px); }
.bt-btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.bt-btn-secondary-form {
  width: 100%;
  background: transparent;
  color: var(--bt-text-muted);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: var(--bt-radius-pill);
  padding: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--bt-transition);
}
.bt-btn-secondary-form:hover { background: rgba(255,255,255,0.05); }

/* Success screen */
.bt-success-screen {
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 70vh;
  justify-content: center;
}
.bt-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bt-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-success-icon svg { width: 36px; height: 36px; fill: var(--bt-green); }
.bt-success-title { font-size: 20px; font-weight: 700; color: var(--bt-white); }
.bt-success-sub { font-size: 14px; color: var(--bt-text-muted); line-height: 1.7; max-width: 280px; }
.bt-success-steps {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--bt-radius-md);
  padding: 16px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bt-success-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--bt-text-muted);
}
.bt-success-step svg { width: 15px; height: 15px; fill: var(--bt-green); flex-shrink: 0; }

/* ============================================
   MESSAGE PAGE
   ============================================ */
.bt-msg-list { padding: 8px 0; }
.bt-msg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--bt-transition);
  border-bottom: 0.5px solid rgba(255,255,255,0.04);
}
.bt-msg-item:hover { background: rgba(255,255,255,0.04); }
.bt-msg-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(55, 138, 221, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}
.bt-msg-content { flex: 1; min-width: 0; }
.bt-msg-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 3px; }
.bt-msg-preview { font-size: 12px; color: var(--bt-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-msg-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.bt-msg-time { font-size: 11px; color: rgba(255,255,255,0.3); }
.bt-msg-unread {
  width: 18px;
  height: 18px;
  background: var(--bt-primary);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.bt-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background var(--bt-transition);
}
.bt-notif-item:hover { background: rgba(255,255,255,0.03); }
.bt-notif-item.unread { background: rgba(255,45,85,0.04); }
.bt-notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.bt-notif-text { font-size: 13px; color: var(--bt-text-muted); line-height: 1.5; }
.bt-notif-text strong { color: white; }
.bt-notif-time { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 4px; }

/* ============================================
   MODAL / BOTTOM SHEET
   ============================================ */
.bt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--bt-transition);
  backdrop-filter: blur(3px);
}
.bt-overlay.show { opacity: 1; visibility: visible; }

.bt-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  background: #1e1e35;
  border-radius: 20px 20px 0 0;
  z-index: 600;
  padding: 16px 0;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.bt-bottom-sheet.show { transform: translateX(-50%) translateY(0); }
.bt-sheet-handle {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 0 auto 16px;
}
.bt-sheet-title {
  padding: 0 16px 14px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.bt-sheet-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background var(--bt-transition);
}
.bt-sheet-option:hover { background: rgba(255,255,255,0.05); }
.bt-sheet-opt-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-sheet-opt-icon svg { width: 18px; height: 18px; }
.bt-sheet-opt-text { font-size: 14px; color: var(--bt-white); font-weight: 500; }
.bt-sheet-opt-sub { font-size: 12px; color: var(--bt-text-muted); margin-top: 2px; }

/* City selector */
.bt-city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 16px 16px;
}
.bt-city-item {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--bt-radius-md);
  cursor: pointer;
  transition: all var(--bt-transition);
  font-size: 13px;
  color: var(--bt-text-muted);
  font-weight: 500;
}
.bt-city-item:hover { background: rgba(255,255,255,0.08); }
.bt-city-item.active { border-color: var(--bt-blue); color: var(--bt-blue); background: rgba(55, 138, 221, 0.1); }

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.bt-toast-container {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 100%;
  max-width: 440px;
  padding: 0 16px;
}
.bt-toast {
  background: #2a2a42;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: var(--bt-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: white;
  box-shadow: var(--bt-shadow);
  animation: toastIn 0.3s ease forwards;
  pointer-events: all;
}
.bt-toast.success { border-left: 3px solid var(--bt-green); }
.bt-toast.error { border-left: 3px solid var(--bt-primary); }
.bt-toast.info { border-left: 3px solid var(--bt-blue); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   EMPTY STATES
   ============================================ */
.bt-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  gap: 12px;
}
.bt-empty-icon { font-size: 48px; opacity: 0.5; }
.bt-empty-title { font-size: 16px; font-weight: 600; color: var(--bt-white); }
.bt-empty-sub { font-size: 13px; color: var(--bt-text-muted); max-width: 240px; }

/* ============================================
   SKELETON LOADERS
   ============================================ */
.bt-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.bt-skeleton-card {
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  margin-bottom: 8px;
}

/* ============================================
   LANDING PAGE (Desktop view)
   ============================================ */
.bt-landing {
  background: var(--bt-secondary-mid);
  min-height: 100vh;
}
.bt-landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.bt-landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bt-landing-logo { font-size: 1.4rem; font-weight: 700; color: white; }
.bt-landing-logo span { color: var(--bt-primary); }
.bt-landing-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.bt-landing-nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color var(--bt-transition); }
.bt-landing-nav-links a:hover { color: white; }
.bt-landing-hero {
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .bt-landing-hero { grid-template-columns: 1fr; padding: 100px 16px 60px; gap: 40px; }
  .bt-landing-hero-visual { display: none; }
}
.bt-landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,85,0.12);
  color: var(--bt-primary);
  border: 0.5px solid rgba(255,45,85,0.25);
  border-radius: var(--bt-radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bt-landing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.bt-landing-headline span { color: var(--bt-primary); }
.bt-landing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.bt-landing-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bt-btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--bt-radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--bt-transition);
  border: none;
}
.bt-btn-lg.primary { background: var(--bt-primary); color: white; }
.bt-btn-lg.primary:hover { background: var(--bt-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,45,85,0.3); }
.bt-btn-lg.outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.bt-btn-lg.outline:hover { background: rgba(255,255,255,0.06); }
.bt-landing-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.bt-landing-stat-num { font-size: 1.75rem; font-weight: 800; color: white; }
.bt-landing-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ============================================
   UTILITIES
   ============================================ */
.bt-hidden { display: none !important; }
.bt-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.bt-text-primary { color: var(--bt-primary); }
.bt-text-blue { color: var(--bt-blue); }
.bt-text-muted { color: var(--bt-text-muted); }
.bt-mt-4 { margin-top: 4px; }
.bt-mt-8 { margin-top: 8px; }
.bt-mt-16 { margin-top: 16px; }
.bt-fw-600 { font-weight: 600; }
.bt-fw-700 { font-weight: 700; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.bt-animate-fadeInUp { animation: fadeInUp 0.4s ease forwards; }
.bt-animate-fadeIn { animation: fadeIn 0.3s ease forwards; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 481px) {
  .bt-container {
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
  }
}

@media (max-width: 480px) {
  .bt-bottom-sheet {
    max-width: 100%;
    transform: translateX(-50%) translateY(100%);
  }
  .bt-bottom-sheet.show { transform: translateX(-50%) translateY(0); }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.aligncenter { margin: 0 auto; display: block; }
.alignleft { float: left; margin-right: 16px; }
.alignright { float: right; margin-left: 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--bt-text-muted); }

/* ============================================
   AUTH PAGE (Login & Register User)
   ============================================ */
.bt-auth-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bt-secondary-mid);
  padding-bottom: 40px;
}
.bt-auth-hero {
  background: linear-gradient(160deg, #1a1a2e 0%, #0d0d1a 100%);
  padding: 48px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bt-auth-hero::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,45,85,0.12) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
}
.bt-auth-logo { font-size: 2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.bt-auth-logo span { color: var(--bt-primary); }
.bt-auth-tagline { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.bt-auth-tabs {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  padding: 4px;
  max-width: 260px;
  margin: 0 auto;
}
.bt-auth-tab {
  flex: 1;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.bt-auth-tab.active { background: var(--bt-primary); color: #fff; }
.bt-auth-body { padding: 24px 20px; max-width: 480px; margin: 0 auto; width: 100%; }
.bt-auth-error {
  background: rgba(255,45,85,0.1);
  border: 0.5px solid rgba(255,45,85,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--bt-primary);
  display: flex; gap: 8px; align-items: flex-start;
}
.bt-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.bt-role-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.03);
  position: relative;
  display: block;
}
.bt-role-card:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.bt-role-card.selected { border-color: var(--bt-primary); background: rgba(255,45,85,0.08); }
.bt-role-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.bt-role-icon { font-size: 28px; margin-bottom: 8px; }
.bt-role-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.bt-role-sub { font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.bt-divider-or {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: rgba(255,255,255,0.2); font-size: 12px;
}
.bt-divider-or::before, .bt-divider-or::after {
  content: ''; flex: 1; height: 0.5px; background: rgba(255,255,255,0.1);
}
.bt-show-pwd-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 16px; cursor: pointer; padding: 4px; line-height: 1;
}
.bt-input-wrap { position: relative; }
.bt-input-wrap .bt-field-input { padding-right: 40px; }
.bt-auth-footer { text-align: center; padding: 12px 20px; font-size: 12px; color: rgba(255,255,255,0.3); }
.bt-auth-footer a { color: var(--bt-blue); }

/* ============================================
   ADMIN SETTINGS PAGE
   ============================================ */
.bizztok-admin-badge {
  display: inline-block;
  background: #FF2D55;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================
   REVIEW & RATING COMPONENTS
   ============================================ */
.bt-reviews-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.bt-review-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
}
.bt-review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bt-review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bt-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.bt-review-author { font-size: 13px; font-weight: 600; color: #fff; }
.bt-review-date   { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.bt-review-body   { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Review gate — shown when user cannot review */
.bt-review-gate {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  margin-bottom: 14px;
}
.bt-review-gate-icon  { font-size: 28px; margin-bottom: 8px; }
.bt-review-gate-text  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Review form */
.bt-review-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}
.bt-star-picker { display: flex; gap: 8px; justify-content: center; margin-bottom: 4px; }
.bt-star-btn {
  background: none; border: none; font-size: 28px;
  color: rgba(255,255,255,0.3); cursor: pointer; padding: 4px;
  transition: transform 0.15s, color 0.15s;
  line-height: 1;
}
.bt-star-btn:hover { transform: scale(1.2); }

/* ============================================
   VIDEO LIMIT INFO — form registrasi bisnis
   ============================================ */
.bt-video-limit-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,45,85,0.06);
  border: 1px solid rgba(255,45,85,0.18);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 18px;
}
.bt-video-limit-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.bt-video-limit-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.bt-video-limit-desc  { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.bt-video-limit-slots { display: flex; gap: 6px; margin-top: 10px; }
.bt-slot {
  font-size: 11px; padding: 4px 10px; border-radius: 20px;
  background: rgba(255,45,85,0.15); color: var(--bt-primary);
  border: 0.5px solid rgba(255,45,85,0.3); font-weight: 600;
}

/* ============================================
   VIDEO MANAGEMENT — halaman profil bisnis (owner)
   ============================================ */
.bt-video-manage-info {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  text-align: center;
}
.bt-video-slot-bar    { display: flex; gap: 8px; justify-content: center; margin-bottom: 10px; }
.bt-video-slot-pip {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  transition: all 0.2s;
}
.bt-video-slot-pip.used  { background: rgba(255,45,85,0.18); color: var(--bt-primary); border: 1px solid rgba(255,45,85,0.3); }
.bt-video-slot-pip.empty { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.25); border: 1px dashed rgba(255,255,255,0.15); }
.bt-video-manage-caption { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.bt-video-manage-full {
  margin-top: 8px; font-size: 12px; color: #FFD700;
  background: rgba(255,215,0,0.07); border-radius: 8px; padding: 6px 10px;
}

.bt-video-manage-list  { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.bt-video-manage-item  {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 10px;
}
.bt-video-manage-thumb {
  width: 52px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.06); overflow: hidden;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.bt-video-manage-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bt-video-manage-thumb-fallback { font-size: 18px; color: rgba(255,255,255,0.3); }
.bt-video-manage-meta  { flex: 1; min-width: 0; }
.bt-video-manage-title { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-video-manage-url   { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-video-delete-btn {
  background: rgba(255,45,85,0.1); border: 0.5px solid rgba(255,45,85,0.25);
  border-radius: 8px; padding: 8px; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.bt-video-delete-btn:hover { background: rgba(255,45,85,0.25); }
.bt-video-delete-btn svg   { width: 16px; height: 16px; fill: var(--bt-primary); }

.bt-video-upload-form  {
  background: rgba(255,255,255,0.03);
  border: 0.5px dashed rgba(255,255,255,0.15);
  border-radius: 14px; padding: 14px; margin-bottom: 12px;
}
.bt-video-upload-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 2px; }

/* ============================================
   VERIFIKASI CENTANG BIRU — NOTIFIKASI CARD
   ============================================ */
.bt-verify-card {
  margin: 12px 16px 4px;
  background: linear-gradient(145deg, #0e1628, #131d35);
  border: 1px solid rgba(55, 138, 221, 0.25);
  border-radius: 16px;
  overflow: hidden;
  padding: 18px 16px 16px;
  position: relative;
}
.bt-verify-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55,138,221,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Header */
.bt-verify-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.bt-verify-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6fd4, #378ADD);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(55,138,221,0.35);
}
.bt-verify-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.bt-verify-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
.bt-verify-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.bt-verify-status-pill {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.bt-verify-status-pill.pending {
  background: rgba(255, 187, 40, 0.12);
  border: 0.5px solid rgba(255, 187, 40, 0.35);
  color: #FFBB28;
}

/* Deskripsi */
.bt-verify-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 14px;
}
.bt-verify-desc strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Progress bar */
.bt-verify-progress-wrap {
  margin-bottom: 14px;
}
.bt-verify-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.bt-verify-pct {
  font-weight: 700;
  color: var(--bt-blue);
}
.bt-verify-progress-bar {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.bt-verify-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a6fd4, #378ADD);
  border-radius: 99px;
  transition: width 0.6s ease;
}
.bt-verify-progress-fill.ready {
  background: linear-gradient(90deg, #2e8b3a, #7CC24D);
}

/* Checklist */
.bt-verify-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 14px;
}
.bt-verify-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.bt-verify-check-item.done { color: rgba(255,255,255,0.85); }
.bt-verify-check-item.todo { color: rgba(255,255,255,0.4); }
.bt-verify-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bt-verify-check-item.done .bt-verify-check-icon {
  background: rgba(124,194,77,0.15);
}
.bt-verify-check-item.done .bt-verify-check-icon svg {
  width: 12px;
  height: 12px;
  fill: #7CC24D;
}
.bt-verify-check-item.todo .bt-verify-check-icon {
  background: rgba(255,255,255,0.06);
}
.bt-verify-check-item.todo .bt-verify-check-icon svg {
  width: 12px;
  height: 12px;
  fill: rgba(255,255,255,0.3);
}

/* Manfaat */
.bt-verify-benefits {
  margin-bottom: 14px;
}
.bt-verify-benefit-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.bt-verify-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bt-verify-benefit-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 7px 10px;
}
.bt-verify-benefit-icon { font-size: 14px; flex-shrink: 0; }

/* CTA button */
.bt-verify-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.bt-verify-btn.ready {
  background: linear-gradient(135deg, #1a6fd4, #378ADD);
  color: #fff;
  box-shadow: 0 4px 16px rgba(55,138,221,0.35);
}
.bt-verify-btn.ready:hover {
  box-shadow: 0 6px 22px rgba(55,138,221,0.5);
  transform: translateY(-1px);
}
.bt-verify-btn.ready:active { transform: translateY(0); }
.bt-verify-btn.locked {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.35);
  cursor: not-allowed;
  border: 0.5px solid rgba(255,255,255,0.08);
}

/* Edit link */
.bt-verify-edit-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--bt-blue);
  text-decoration: none;
  opacity: 0.8;
}
.bt-verify-edit-link:hover { opacity: 1; }

/* Pending info box */
.bt-verify-pending-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,187,40,0.07);
  border: 0.5px solid rgba(255,187,40,0.2);
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.bt-verify-pending-info svg {
  width: 22px;
  height: 22px;
  fill: #FFBB28;
  flex-shrink: 0;
}

/* Message feedback */
.bt-verify-msg {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

/* ============================================================
   FIX 1: Bersihkan kotak putih pada tombol side (like/comment/share)
   Paksa remove semua background/border default browser & WordPress
   ============================================================ */
.bt-side-btn,
.bt-side-btn:focus,
.bt-side-btn:active,
.bt-side-btn:hover,
.bt-side-btn:focus-visible {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
}
/* FIX: side-btn children pointer-events dimatikan agar event naik ke button parent,
   KECUALI avatar-btn yang menggunakan <a> tag sebagai wrapper aktif */
.bt-side-btn > * { pointer-events: none; }
.bt-side-btn.bt-avatar-btn { pointer-events: auto !important; }
.bt-side-btn.bt-avatar-btn > * { pointer-events: none; }
.bt-side-btn.bt-avatar-btn .bt-avatar-ring { pointer-events: auto !important; }

/* FIX 4: Sembunyikan WordPress Admin Bar di tampilan mobile */
#wpadminbar {
  display: none !important;
}
html.wp-toolbar {
  padding-top: 0 !important;
}
@media (max-width: 768px) {
  #wpadminbar { display: none !important; }
  html.wp-toolbar { padding-top: 0 !important; }
  body.admin-bar .bt-app-wrapper,
  body.admin-bar #bt-app,
  body.admin-bar .bt-container {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* FIX 5: Tombol hapus foto selalu tampil (mobile & desktop) */
.bt-photo-delete-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,45,85,0.15) !important;
  border: 1px solid rgba(255,45,85,0.35) !important;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  padding: 0 !important;
  transition: background 0.2s;
}
.bt-photo-delete-btn:hover,
.bt-photo-delete-btn:active {
  background: rgba(255,45,85,0.35) !important;
}
.bt-photo-delete-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--bt-primary, #ff2d55);
  display: block;
}

/* Comment Sheet */
.bt-comment-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  background: #1e1e35;
  border-radius: 20px 20px 0 0;
  z-index: 601;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 75vh;
  display: flex;
  flex-direction: column;
}
.bt-comment-sheet.show { transform: translateX(-50%) translateY(0); }
.bt-comment-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.bt-comment-sheet-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.bt-comment-sheet-close {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.08) !important;
  border: none !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  padding: 0 !important;
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
}
.bt-comment-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  min-height: 120px;
}
.bt-comment-item {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.bt-comment-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}
.bt-comment-avatar img { width:100%;height:100%;object-fit:cover; }
.bt-comment-body { flex:1; }
.bt-comment-author {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3px;
}
.bt-comment-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.bt-comment-date {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.bt-comment-empty {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  padding: 30px 0;
}
.bt-comment-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 16px 16px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.bt-comment-input {
  flex: 1;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 20px;
  padding: 9px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: none;
}
.bt-comment-input::placeholder { color: rgba(255,255,255,0.35); }
.bt-comment-send-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--bt-primary, #ff2d55) !important;
  border: none !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 !important;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.2s;
}
.bt-comment-send-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.bt-comment-send-btn svg { width:18px;height:18px;fill:#fff;display:block; }

/* ============================================================
   FIX 3 + 5 + 6: TIKTOK-STYLE OVERLAY HEADER
   Header transparan di atas video, tidak mendorong feed ke bawah
   ============================================================ */
.bt-header-overlay {
  position: fixed !important;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%) !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 200;
  pointer-events: none; /* klik tembus ke video */
}
.bt-header-overlay * { pointer-events: auto; }

.bt-header-overlay-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  height: auto;
  min-height: 52px;
}

/* Kota button */
.bt-header-city-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 20px;
  padding: 6px 10px 6px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.bt-header-city-btn:hover { background: rgba(0,0,0,0.55) !important; }
.bt-header-city-btn svg { width:14px;height:14px;fill:#ff2d55;flex-shrink:0; }
.bt-header-city-btn .bt-chevron { fill:rgba(255,255,255,0.6);width:12px;height:12px; }

/* Kategori wrap + button */
.bt-header-cat-wrap {
  position: relative;
  flex: 1;
}
.bt-header-cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 20px;
  padding: 6px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
  white-space: nowrap;
}
.bt-header-cat-btn:hover { background: rgba(0,0,0,0.55) !important; }
.bt-header-cat-btn .bt-chevron { fill:rgba(255,255,255,0.6);width:12px;height:12px; }

/* Dropdown kategori */
.bt-header-cat-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1e1e35;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  z-index: 9000;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.bt-header-cat-dropdown.open { display: block; }
.bt-cat-option {
  padding: 11px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
}
.bt-cat-option:last-child { border-bottom: none; }
.bt-cat-option:hover { background: rgba(255,255,255,0.07); }
.bt-cat-option.active { color: #ff2d55; font-weight: 600; background: rgba(255,45,85,0.08); }

/* Search button overlay */
.bt-header-search-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.bt-header-search-btn:hover { background: rgba(0,0,0,0.55) !important; }
.bt-header-search-btn svg { width:16px;height:16px;fill:#fff; }

/* ============================================================
   FIX 3: FEED FULLSCREEN — 1 card = 1 layar penuh, tanpa offset header
   ============================================================ */
.bt-feed-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100svh !important;
  height: 100dvh !important;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0 !important;
  z-index: 1;
}
.bt-feed-fullscreen .bt-video-card {
  height: 100svh !important;
  height: 100dvh !important;
  min-height: unset !important;
  max-height: unset !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Pastikan bt-container tidak overflow-hidden yang memotong feed */
.bt-container { overflow: visible !important; }

/* Fix: filter-bar lama di index tidak dipakai lagi, sembunyikan jika masih ada */
.bt-filter-bar { display: none !important; }

/* ============================================================
   MESSAGES: support item hover
   ============================================================ */
.bt-support-item:hover { background: rgba(55,138,221,0.12) !important; }

/* ============================================
   PERBAIKAN v4.1
   ============================================ */

/* --- FIX 2: Support email button style --- */
.bt-support-item .bt-msg-avatar {
  border-radius: 12px;
}

/* --- FIX 3: Komentar bisnis --- */
.bt-comment-biz-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}
.bt-comment-biz-avatar img {
  border-radius: 8px !important;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bt-comment-biz-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--bt-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.bt-comment-biz-name:hover {
  color: var(--bt-blue);
}

/* --- FIX 4: Verifikasi centang biru banner --- */
.bt-verify-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(55,138,221,0.12), rgba(55,138,221,0.05));
  border: 1px solid rgba(55,138,221,0.3);
  border-radius: var(--bt-radius-md);
  padding: 14px;
  margin-bottom: 16px;
}
.bt-verify-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.bt-verify-banner-icon {
  width: 36px;
  height: 36px;
  background: rgba(55,138,221,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bt-verify-banner-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bt-white);
  margin-bottom: 2px;
}
.bt-verify-banner-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.bt-btn-verify-request {
  flex-shrink: 0;
  background: var(--bt-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--bt-radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--bt-transition);
}
.bt-btn-verify-request:hover {
  background: var(--bt-blue-dark);
  color: #fff;
}
.bt-verified-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(55,138,221,0.08);
  border: 1px solid rgba(55,138,221,0.2);
  border-radius: var(--bt-radius-md);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bt-blue);
}
