/* ===== AITRIP — PREMIUM TRAVEL MARKETPLACE ===== */
/* Default: Light cream theme */
:root {
  --bg: #F5F4EF;
  --bg2: #FAFAF7;
  --bg-card: #FFFFFF;
  --bg-card2: #F0EFE9;
  --border: #E8E6DF;
  --border2: #D5D2C8;
  --text: #1A1A18;
  --text2: #3D3D38;
  --text-muted: #8C8B84;
  --text-light: #B5B4AE;
  --primary: #1A1A18;
  --green: #2D7A3A;
  --green-light: #E8F5EB;
  --green-mid: #4CAF50;
  --blue: #1565C0;
  --blue-light: #E3F0FC;
  --red: #C62828;
  --red-light: #FDECEA;
  --orange: #E65100;
  --gold: #F59E0B;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  --navbar-h: 64px;
}

[data-theme="dark"] {
  --bg: #0F0F0D;
  --bg2: #161614;
  --bg-card: #1C1C1A;
  --bg-card2: #242420;
  --border: #2A2A26;
  --border2: #333330;
  --text: #F0EFE9;
  --text2: #C8C7C0;
  --text-muted: #7A7970;
  --text-light: #555550;
  --primary: #F0EFE9;
}

/* ===== EMOJI IMAGE CLASS ===== */
.ei { display:inline-block; width:1.1em; height:1.1em; vertical-align:-0.2em; object-fit:contain; }
.ei-sm { display:inline-block; width:0.9em; height:0.9em; vertical-align:-0.15em; object-fit:contain; }
.ei-lg { display:inline-block; width:1.4em; height:1.4em; vertical-align:-0.3em; object-fit:contain; }

/* ===== RESET & BASE ===== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif; background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
button { cursor:pointer; border:none; outline:none; font-family:inherit; background:transparent; }
input,textarea,select { font-family:inherit; outline:none; }
::-webkit-scrollbar { width:5px; height:5px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:var(--border2); border-radius:3px; }

/* ===== LAYOUT ===== */
.container { max-width:1280px; margin:0 auto; padding:0 24px; }
.container-wide { max-width:1440px; margin:0 auto; padding:0 32px; }
.section { padding:72px 0; }
.section-sm { padding:48px 0; }
.hidden { display:none !important; }

/* ===== GRID ===== */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-5 { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.flex { display:flex; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.flex-between { display:flex; align-items:center; justify-content:space-between; }
.flex-gap { display:flex; align-items:center; gap:10px; }
.text-center { text-align:center; }

/* ===== TYPOGRAPHY ===== */
.label-tag { display:inline-block; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px; }
.section-title { font-size:clamp(22px,3.5vw,34px); font-weight:800; letter-spacing:-0.5px; line-height:1.2; color:var(--text); }
.section-sub { font-size:15px; color:var(--text-muted); margin-top:6px; line-height:1.6; }
.text-green { color:var(--green); }
.text-green-italic { color:var(--green); font-style:italic; }
.text-muted { color:var(--text-muted); }

/* ===== BUTTONS ===== */
.btn { display:inline-flex; align-items:center; gap:7px; padding:10px 20px; border-radius:var(--radius-sm); font-weight:600; font-size:14px; transition:var(--transition); white-space:nowrap; }
.btn-black { background:#1A1A18; color:#fff; }
.btn-black:hover { background:#333330; }
.btn-green { background:var(--green); color:#fff; }
.btn-green:hover { background:#246030; }
.btn-outline { background:transparent; color:var(--text); border:1.5px solid var(--border2); }
.btn-outline:hover { border-color:var(--text); }
.btn-ghost { background:transparent; color:var(--text-muted); padding:8px 14px; }
.btn-ghost:hover { color:var(--text); }
.btn-sm { padding:7px 14px; font-size:13px; }
.btn-lg { padding:13px 28px; font-size:15px; }
.btn-icon { padding:8px; border-radius:50%; width:38px; height:38px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.btn-circle { border-radius:50%; }

/* ===== BADGES ===== */
.badge { display:inline-flex; align-items:center; gap:4px; padding:3px 10px; border-radius:30px; font-size:11px; font-weight:700; letter-spacing:0.3px; }
.badge-dark { background:rgba(0,0,0,0.72); color:#fff; backdrop-filter:blur(6px); }
.badge-green { background:var(--green-light); color:var(--green); border:1px solid #C3E6CB; }
.badge-blue { background:var(--blue-light); color:var(--blue); border:1px solid #BBDEFB; }
.badge-red { background:var(--red-light); color:var(--red); }
.badge-orange { background:#FFF3E0; color:var(--orange); }
.badge-gold { background:#FFFBEB; color:#92400E; border:1px solid #FDE68A; }
.badge-outline { background:transparent; border:1.5px solid var(--border2); color:var(--text-muted); }
.badge-live { background:#FEE2E2; color:#991B1B; }
.live-dot { width:6px; height:6px; border-radius:50%; background:currentColor; animation:livePulse 1.2s infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== CARDS BASE ===== */
.card { background:var(--bg-card); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); transition:var(--transition); }
.card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.card-flat { background:var(--bg-card); border-radius:var(--radius); border:1px solid var(--border); }

/* ===== SKELETON ===== */
.skeleton { background:linear-gradient(90deg,var(--border) 25%,var(--bg-card2) 50%,var(--border) 75%); background-size:200% 100%; animation:skelAnim 1.4s infinite; border-radius:var(--radius); }
@keyframes skelAnim { 0%{background-position:200%} 100%{background-position:-200%} }

/* ===== TOAST ===== */
#toast-container { position:fixed; top:80px; right:20px; z-index:9999; display:flex; flex-direction:column; gap:8px; pointer-events:none; }
.toast { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:12px 18px; display:flex; align-items:center; gap:10px; font-size:14px; min-width:260px; box-shadow:var(--shadow-lg); animation:toastIn 0.3s ease; pointer-events:all; }
@keyframes toastIn { from{opacity:0;transform:translateX(60px)} to{opacity:1;transform:none} }
.toast.success { border-left:3px solid var(--green); }
.toast.error { border-left:3px solid var(--red); }
.toast.info { border-left:3px solid var(--blue); }

/* ===== NAVBAR ===== */
#navbar { position:fixed; top:0; left:0; right:0; z-index:1000; height:var(--navbar-h); background:rgba(245,244,239,0.92); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border-bottom:1px solid var(--border); transition:var(--transition); }
[data-theme="dark"] #navbar { background:rgba(15,15,13,0.92); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:var(--navbar-h); gap:16px; }
.nav-logo { font-size:20px; font-weight:900; color:var(--text); letter-spacing:-0.5px; flex-shrink:0; }
.nav-logo span { color:var(--green); }
.nav-links { display:flex; align-items:center; gap:2px; flex:1; padding:0 16px; }
.nav-link { padding:7px 13px; border-radius:var(--radius-sm); font-size:14px; font-weight:500; color:var(--text2); transition:var(--transition); display:flex; align-items:center; gap:5px; }
.nav-link:hover,.nav-link.active { color:var(--text); background:var(--bg-card2); }
.nav-link-live { color:var(--orange) !important; font-weight:600; }
.nav-right { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.nav-search { display:flex; align-items:center; gap:8px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-sm); padding:7px 13px; font-size:13px; color:var(--text-muted); cursor:pointer; transition:var(--transition); min-width:220px; }
.nav-search:hover { border-color:var(--border2); }
.nav-search input { background:transparent; border:none; outline:none; color:var(--text); font-size:13px; width:100%; }
.nav-search input::placeholder { color:var(--text-muted); }
.nav-currency { padding:7px 11px; border-radius:var(--radius-sm); background:var(--bg-card2); border:1px solid var(--border); font-size:12px; font-weight:700; color:var(--text2); cursor:pointer; }
.nav-icon-btn { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--bg-card2); border:1px solid var(--border); color:var(--text2); transition:var(--transition); position:relative; cursor:pointer; }
.nav-icon-btn:hover { border-color:var(--border2); color:var(--text); }
.nav-badge { position:absolute; top:-2px; right:-2px; width:16px; height:16px; background:#E53935; border-radius:50%; font-size:9px; font-weight:700; color:#fff; display:flex; align-items:center; justify-content:center; border:2px solid var(--bg); }
.nav-avatar { width:36px; height:36px; border-radius:50%; background:#1A1A18; color:#fff; font-size:13px; font-weight:700; display:flex; align-items:center; justify-content:center; cursor:pointer; border:2px solid var(--border); transition:var(--transition); }
.nav-avatar:hover { border-color:var(--border2); }
.theme-toggle { width:36px; height:36px; border-radius:50%; background:var(--bg-card2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:15px; transition:var(--transition); }
.theme-toggle:hover { border-color:var(--border2); }

/* ===== HERO SECTION ===== */
#hero { padding-top:calc(var(--navbar-h) + 56px); padding-bottom:64px; background:var(--bg); }
.hero-tag { display:inline-flex; align-items:center; gap:8px; background:var(--bg-card); border:1px solid var(--border); border-radius:30px; padding:6px 14px; margin-bottom:22px; font-size:12px; font-weight:600; color:var(--text-muted); }
.hero-tag .dot-green { width:6px; height:6px; background:var(--green-mid); border-radius:50%; animation:livePulse 1.5s infinite; }
.hero-h1 { font-size:clamp(32px,5.5vw,60px); font-weight:900; letter-spacing:-2px; line-height:1.08; margin-bottom:20px; color:var(--text); }
.hero-h1 em { font-style:italic; color:var(--green); font-weight:900; }
.hero-subtitle { font-size:16px; color:var(--text-muted); max-width:600px; line-height:1.7; margin-bottom:36px; }

/* ===== HERO SEARCH ===== */
.hero-search { display:flex; align-items:center; gap:10px; background:var(--bg-card); border:1.5px solid var(--border2); border-radius:var(--radius-lg); padding:10px 10px 10px 16px; max-width:680px; transition:var(--transition); box-shadow:var(--shadow); }
.hero-search:focus-within { border-color:#2D7A3A; box-shadow:0 0 0 3px rgba(45,122,58,0.12); }
.hero-search-input { flex:1; background:transparent; border:none; outline:none; font-size:15px; color:var(--text); }
.hero-search-input::placeholder { color:var(--text-muted); }
.hero-search-badge { background:var(--bg-card2); border:1px solid var(--border); border-radius:var(--radius-sm); padding:5px 10px; font-size:11px; font-weight:700; color:var(--text-muted); white-space:nowrap; }
.hero-search .ask-ai-btn { background:#1A1A18; color:#fff; border-radius:var(--radius-sm); padding:10px 20px; font-weight:700; font-size:14px; display:flex; align-items:center; gap:7px; white-space:nowrap; transition:var(--transition); }
.hero-search .ask-ai-btn:hover { background:#333330; }
[data-theme="dark"] .hero-search .ask-ai-btn { background:#F0EFE9; color:#1A1A18; }

/* ===== FILTER PILLS ===== */
.filter-pills { display:flex; gap:8px; flex-wrap:wrap; margin-top:20px; }
.pill { display:inline-flex; align-items:center; gap:5px; padding:7px 14px; border-radius:30px; border:1.5px solid var(--border2); background:var(--bg-card); font-size:13px; font-weight:500; color:var(--text2); cursor:pointer; transition:var(--transition); }
.pill:hover { border-color:var(--text); color:var(--text); }
.pill.active { background:var(--text); color:var(--bg); border-color:var(--text); }

/* ===== STATS BAR ===== */
.stats-bar { background:var(--bg-card); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:20px 0; }
.stats-bar-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.stat-bar-item { padding:0 32px; border-right:1px solid var(--border); }
.stat-bar-item:first-child { padding-left:0; }
.stat-bar-item:last-child { border-right:none; }
.stat-bar-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:4px; }
.stat-bar-val { font-size:22px; font-weight:900; color:var(--text); letter-spacing:-0.5px; }
.stat-bar-sub { font-size:11px; color:var(--green); font-weight:600; }

/* ===== SECTION HEADER ===== */
.section-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; gap:16px; }
.section-header-left { flex:1; }
.view-all-link { font-size:14px; font-weight:600; color:var(--text2); display:flex; align-items:center; gap:4px; transition:var(--transition); white-space:nowrap; }
.view-all-link:hover { color:var(--text); }

/* ===== TOUR CARD (Gradient Illustration Style) ===== */
.tour-card { background:var(--bg-card); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); transition:var(--transition); width:260px; flex-shrink:0; }
.tour-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.tour-card-art { position:relative; height:190px; overflow:hidden; }
/* Gradient illustrations per destination */
.art-turkey { background:linear-gradient(160deg,#1a6b8a 0%,#2d9cdb 45%,#e8c97a 100%); }
.art-dubai { background:linear-gradient(160deg,#c17f3a 0%,#e8a55a 45%,#4a2810 100%); }
.art-maldives { background:linear-gradient(160deg,#0d5f8a 0%,#1a9dd9 50%,#a8e6f0 100%); }
.art-georgia { background:linear-gradient(160deg,#2d5016 0%,#4a8a1a 50%,#8bc34a 100%); }
.art-bali { background:linear-gradient(160deg,#1b5e20 0%,#388e3c 40%,#f57f17 100%); }
.art-paris { background:linear-gradient(160deg,#283593 0%,#5c6bc0 50%,#e8d5b7 100%); }
.art-egypt { background:linear-gradient(160deg,#bf8a30 0%,#e6b84a 50%,#7b4a10 100%); }
.art-thailand { background:linear-gradient(160deg,#004d40 0%,#00897b 40%,#f4a261 100%); }
.art-japan { background:linear-gradient(160deg,#b71c1c 0%,#ef5350 40%,#fce4ec 100%); }
.art-default { background:linear-gradient(160deg,#37474f 0%,#607d8b 50%,#b0bec5 100%); }
.art-samarkand { background:linear-gradient(160deg,#4a1259 0%,#7b1fa2 50%,#e1bee7 100%); }
.art-tbilisi { background:linear-gradient(160deg,#2e4e1e 0%,#558b2f 50%,#aed581 100%); }
.art-almaty { background:linear-gradient(160deg,#0d47a1 0%,#1976d2 50%,#90caf9 100%); }
/* SVG Silhouette overlay via CSS */
.tour-card-art::after { content:''; position:absolute; bottom:0; left:0; right:0; height:70%; pointer-events:none; }
.art-city::after { background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 140' preserveAspectRatio='none'%3E%3Cpath d='M0,140 L0,90 L20,90 L20,70 L40,70 L40,50 L55,50 L55,60 L70,60 L70,30 L85,30 L85,60 L100,60 L100,80 L115,80 L115,50 L130,50 L130,40 L145,40 L145,60 L160,60 L160,70 L175,70 L175,55 L190,55 L190,35 L205,35 L205,55 L220,55 L220,65 L240,65 L240,45 L255,45 L255,55 L270,55 L270,70 L290,70 L290,50 L305,50 L305,40 L315,40 L315,55 L330,55 L330,45 L345,45 L345,60 L360,60 L360,75 L380,75 L380,90 L400,90 L400,140 Z' fill='rgba(0,0,0,0.35)'/%3E%3C/svg%3E") no-repeat bottom/cover; }
.art-mountain::after { background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 140' preserveAspectRatio='none'%3E%3Cpath d='M0,140 L0,120 L60,50 L120,90 L200,20 L280,80 L340,45 L400,100 L400,140 Z' fill='rgba(0,0,0,0.3)'/%3E%3Cpath d='M0,140 L0,130 L80,80 L160,110 L240,60 L320,100 L400,75 L400,140 Z' fill='rgba(0,0,0,0.2)'/%3E%3C/svg%3E") no-repeat bottom/cover; }
.art-beach::after { background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 140' preserveAspectRatio='none'%3E%3Cellipse cx='80' cy='90' rx='15' ry='60' fill='rgba(0,0,0,0.3)'/%3E%3Cellipse cx='300' cy='95' rx='12' ry='50' fill='rgba(0,0,0,0.25)'/%3E%3Cpath d='M0,140 Q100,120 200,130 Q300,120 400,135 L400,140 Z' fill='rgba(0,0,0,0.2)'/%3E%3C/svg%3E") no-repeat bottom/cover; }
.tour-card-art-badges { position:absolute; top:10px; left:10px; display:flex; gap:6px; flex-wrap:wrap; }
.tour-card-fav { position:absolute; top:10px; right:10px; width:32px; height:32px; background:rgba(255,255,255,0.88); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:var(--transition); box-shadow:var(--shadow-sm); }
.tour-card-fav:hover { background:#fff; transform:scale(1.1); }
.tour-card-body { padding:14px 16px 16px; }
.tour-card-dest { display:flex; align-items:center; gap:6px; margin-bottom:4px; }
.tour-card-name { font-size:16px; font-weight:700; color:var(--text); line-height:1.3; }
.tour-card-flag { font-size:16px; line-height:1; }
.tour-card-rating { display:flex; align-items:center; gap:4px; margin-top:3px; }
.tour-card-rating .stars { color:var(--gold); font-size:12px; }
.tour-card-rating span { font-size:12px; color:var(--text-muted); }
.tour-card-price { margin-top:10px; font-size:13px; color:var(--text-muted); }
.tour-card-price strong { font-size:17px; font-weight:800; color:var(--text); }

/* ===== HORIZONTAL SCROLL ===== */
.h-scroll { display:flex; gap:16px; overflow-x:auto; padding-bottom:8px; scrollbar-width:none; -ms-overflow-style:none; }
.h-scroll::-webkit-scrollbar { display:none; }

/* ===== TELEGRAM DEAL CARD ===== */
.deal-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition); width:280px; flex-shrink:0; }
.deal-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.deal-card-art { height:160px; position:relative; }
.deal-card-info { padding:14px 16px; }
.deal-discount { background:var(--red-light); color:var(--red); font-size:12px; font-weight:800; padding:3px 9px; border-radius:6px; display:inline-block; margin-bottom:6px; }
.deal-meta { font-size:11px; color:var(--text-muted); font-weight:600; letter-spacing:0.3px; margin-bottom:6px; }
.deal-title { font-size:14px; font-weight:700; color:var(--text); line-height:1.4; margin-bottom:8px; }
.deal-price-row { display:flex; align-items:baseline; gap:8px; }
.deal-price-old { font-size:13px; color:var(--text-muted); text-decoration:line-through; }
.deal-price-new { font-size:18px; font-weight:800; color:var(--text); }
.deal-channels { display:flex; align-items:center; gap:5px; margin-top:8px; }
.deal-channel-dot { width:7px; height:7px; border-radius:50%; }

/* ===== WORLD MAP SECTION ===== */
.map-section { background:var(--bg-card); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.map-wrapper { position:relative; border-radius:var(--radius-lg); overflow:hidden; background:var(--bg2); border:1px solid var(--border); min-height:400px; }
.world-map-svg { width:100%; height:auto; display:block; }
.map-bubble { position:absolute; transform:translate(-50%,-50%); background:var(--bg-card); border:1.5px solid var(--border2); border-radius:30px; padding:5px 10px; font-size:11px; font-weight:700; color:var(--text); box-shadow:var(--shadow); cursor:pointer; transition:var(--transition); white-space:nowrap; z-index:2; }
.map-bubble:hover { background:var(--text); color:var(--bg); border-color:var(--text); transform:translate(-50%,-50%) scale(1.06); }
.map-bubble.active { background:var(--green); color:#fff; border-color:var(--green); }

/* ===== CHEAP ESCAPES CARD ===== */
.escape-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:18px; display:flex; align-items:center; gap:14px; transition:var(--transition); cursor:pointer; }
.escape-card:hover { border-color:var(--border2); box-shadow:var(--shadow); }
.escape-art { width:80px; height:80px; border-radius:var(--radius); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:36px; overflow:hidden; }
.escape-info { flex:1; min-width:0; }
.escape-name { font-size:16px; font-weight:700; color:var(--text); margin-bottom:3px; display:flex; align-items:center; gap:6px; }
.escape-tags { display:flex; gap:5px; flex-wrap:wrap; margin-top:6px; }
.escape-tag { font-size:11px; font-weight:600; color:var(--text-muted); background:var(--bg-card2); border:1px solid var(--border); border-radius:5px; padding:2px 7px; }
.escape-price { font-size:15px; font-weight:800; color:var(--text); }
.escape-price-label { font-size:11px; color:var(--text-muted); }

/* ===== LUXURY SECTION (dark) ===== */
.luxury-section { background:#0F0F0D; color:#F0EFE9; padding:72px 0; }
.luxury-section .label-tag { color:#555550; }
.luxury-section .section-title { color:#F0EFE9; }
.luxury-section .section-sub { color:#7A7970; }
.luxury-card { background:#1C1C1A; border-radius:var(--radius-lg); overflow:hidden; border:1px solid #2A2A26; transition:var(--transition); width:280px; flex-shrink:0; }
.luxury-card:hover { border-color:#444440; transform:translateY(-4px); }
.luxury-card-art { height:200px; position:relative; }
.luxury-card-body { padding:14px 16px 16px; }
.luxury-card-name { font-size:16px; font-weight:700; color:#F0EFE9; }
.luxury-badge { background:rgba(240,239,233,0.08); border:1px solid rgba(240,239,233,0.15); color:#F0EFE9; font-size:11px; font-weight:600; padding:3px 9px; border-radius:5px; }

/* ===== AGENCY CARD ===== */
.agency-row-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px 22px; display:grid; grid-template-columns:52px 1fr auto; gap:14px; align-items:center; transition:var(--transition); }
.agency-row-card:hover { border-color:var(--border2); box-shadow:var(--shadow); }
.agency-initials { width:52px; height:52px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:800; color:#fff; flex-shrink:0; }
.agency-card-name { font-size:15px; font-weight:700; color:var(--text); display:flex; align-items:center; gap:6px; margin-bottom:2px; }
.agency-card-meta { font-size:12px; color:var(--text-muted); line-height:1.5; }
.agency-stats-row { display:flex; gap:20px; margin-top:8px; }
.agency-stat-item { text-align:center; }
.agency-stat-item strong { display:block; font-size:15px; font-weight:800; color:var(--text); }
.agency-stat-item span { font-size:10px; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.premium-badge { background:#FFF8E1; color:#92400E; border:1px solid #FDE68A; font-size:11px; font-weight:700; padding:2px 8px; border-radius:5px; }

/* ===== AI CTA BANNER ===== */
.ai-cta-banner { background:linear-gradient(130deg,#1a5c2a 0%,#1565C0 100%); border-radius:var(--radius-xl); padding:44px 48px; position:relative; overflow:hidden; }
.ai-cta-banner::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; background:rgba(255,255,255,0.04); border-radius:50%; }
.ai-cta-banner::after { content:''; position:absolute; bottom:-40px; left:30%; width:200px; height:200px; background:rgba(255,255,255,0.03); border-radius:50%; }
.ai-cta-banner .inner { position:relative; z-index:1; }
.ai-cta-label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,0.6); margin-bottom:8px; }
.ai-cta-title { font-size:clamp(22px,3.5vw,34px); font-weight:900; color:#fff; margin-bottom:12px; line-height:1.2; }
.ai-cta-sub { font-size:15px; color:rgba(255,255,255,0.7); max-width:500px; line-height:1.6; margin-bottom:28px; }
.ai-cta-btn { background:#fff; color:#1A1A18; font-weight:700; font-size:14px; padding:12px 24px; border-radius:var(--radius-sm); display:inline-flex; align-items:center; gap:8px; transition:var(--transition); }
.ai-cta-btn:hover { background:var(--bg-card2); transform:translateY(-1px); }

/* ===== FOOTER ===== */
footer { background:#0F0F0D; color:#7A7970; padding:60px 0 28px; border-top:1px solid #1A1A18; }
.footer-logo { font-size:20px; font-weight:900; color:#F0EFE9; letter-spacing:-0.5px; margin-bottom:10px; }
.footer-desc { font-size:14px; color:#555550; line-height:1.7; max-width:220px; margin-bottom:20px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-col-title { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.8px; color:#C8C7C0; margin-bottom:14px; }
.footer-links { display:flex; flex-direction:column; gap:8px; }
.footer-link { font-size:14px; color:#555550; transition:var(--transition); }
.footer-link:hover { color:#C8C7C0; }
.footer-bottom { border-top:1px solid #1A1A18; padding-top:24px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.footer-copy { font-size:13px; color:#3A3A36; }
.footer-legal { display:flex; gap:16px; }
.footer-legal a { font-size:13px; color:#3A3A36; transition:var(--transition); }
.footer-legal a:hover { color:#7A7970; }

/* ===== NOTIFICATION PANEL ===== */
.notif-panel { position:fixed; top:calc(var(--navbar-h) + 8px); right:16px; width:360px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); z-index:999; overflow:hidden; }
.notif-header { padding:14px 18px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.notif-item { display:flex; gap:12px; padding:14px 18px; border-bottom:1px solid var(--border); transition:var(--transition); }
.notif-item:last-child { border-bottom:none; }
.notif-item.unread { background:var(--bg2); }
.notif-icon { width:38px; height:38px; border-radius:var(--radius-sm); background:var(--bg-card2); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:18px; }
.notif-content { flex:1; min-width:0; }
.notif-title { font-size:14px; font-weight:600; color:var(--text); margin-bottom:2px; }
.notif-msg { font-size:12px; color:var(--text-muted); line-height:1.5; }
.notif-time { font-size:11px; color:var(--text-light); margin-top:3px; }

/* ===== AI PANEL (Floating) ===== */
#ai-fab { position:fixed; bottom:28px; right:24px; width:56px; height:56px; background:#1A1A18; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 28px rgba(0,0,0,0.22); cursor:pointer; z-index:900; transition:var(--transition); }
[data-theme="dark"] #ai-fab { background:#F0EFE9; }
#ai-fab:hover { transform:scale(1.08); box-shadow:0 12px 36px rgba(0,0,0,0.3); }
#ai-panel { position:fixed; bottom:98px; right:24px; width:370px; height:520px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-xl); display:flex; flex-direction:column; z-index:899; box-shadow:var(--shadow-lg); overflow:hidden; transition:var(--transition); transform-origin:bottom right; }
#ai-panel.hidden { transform:scale(0.85); opacity:0; pointer-events:none; }
.ai-header { padding:14px 18px; background:var(--bg-card2); border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.ai-header-title { font-size:14px; font-weight:700; color:var(--text); display:flex; align-items:center; gap:8px; }
.ai-messages { flex:1; overflow-y:auto; padding:14px; display:flex; flex-direction:column; gap:10px; }
.ai-msg { max-width:88%; padding:11px 14px; border-radius:14px; font-size:14px; line-height:1.55; animation:msgPop 0.25s ease; }
@keyframes msgPop { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.ai-msg.user { align-self:flex-end; background:#1A1A18; color:#fff; border-bottom-right-radius:4px; }
[data-theme="dark"] .ai-msg.user { background:#F0EFE9; color:#1A1A18; }
.ai-msg.bot { align-self:flex-start; background:var(--bg-card2); border:1px solid var(--border); border-bottom-left-radius:4px; color:var(--text); }
.ai-typing { display:flex; gap:3px; padding:11px 14px; align-self:flex-start; background:var(--bg-card2); border:1px solid var(--border); border-radius:14px; border-bottom-left-radius:4px; }
.ai-typing span { width:5px; height:5px; background:var(--text-muted); border-radius:50%; animation:dotBounce 1.2s infinite; }
.ai-typing span:nth-child(2) { animation-delay:0.2s; }
.ai-typing span:nth-child(3) { animation-delay:0.4s; }
@keyframes dotBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.ai-quick-row { display:flex; gap:6px; flex-wrap:wrap; padding:8px 14px; border-top:1px solid var(--border); }
.ai-quick-btn { padding:5px 11px; border-radius:20px; font-size:12px; font-weight:500; background:var(--bg-card2); border:1px solid var(--border); color:var(--text2); cursor:pointer; transition:var(--transition); }
.ai-quick-btn:hover { background:var(--text); color:var(--bg); border-color:var(--text); }
.ai-input-row { padding:10px 14px; border-top:1px solid var(--border); display:flex; gap:8px; align-items:center; }
.ai-input { flex:1; background:var(--bg-card2); border:1px solid var(--border); border-radius:var(--radius-sm); padding:9px 13px; color:var(--text); font-size:14px; transition:var(--transition); }
.ai-input:focus { border-color:var(--text); }
.ai-send { width:36px; height:36px; border-radius:50%; background:#1A1A18; color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--transition); font-size:14px; }
[data-theme="dark"] .ai-send { background:#F0EFE9; color:#1A1A18; }
.ai-send:hover { transform:scale(1.08); }

/* ===== MODAL ===== */
.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); backdrop-filter:blur(3px); z-index:2000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; pointer-events:none; transition:opacity 0.25s ease; }
.modal-overlay.active { opacity:1; pointer-events:all; }
.modal { background:var(--bg-card); border-radius:var(--radius-xl); border:1px solid var(--border); width:100%; max-width:480px; max-height:90vh; overflow-y:auto; transform:scale(0.92) translateY(16px); transition:var(--transition); }
.modal-overlay.active .modal { transform:scale(1) translateY(0); }
.modal-header { padding:24px 26px 0; display:flex; align-items:center; justify-content:space-between; }
.modal-title { font-size:19px; font-weight:800; }
.modal-close { width:34px; height:34px; border-radius:50%; background:var(--bg-card2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text-muted); font-size:16px; transition:var(--transition); }
.modal-close:hover { color:var(--text); border-color:var(--border2); }
.modal-body { padding:22px 26px 26px; }
.form-group { margin-bottom:18px; }
.form-label { display:block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; color:var(--text-muted); margin-bottom:7px; }
.form-input { width:100%; background:var(--bg-card2); border:1.5px solid var(--border); border-radius:var(--radius-sm); padding:11px 14px; color:var(--text); font-size:14px; transition:var(--transition); }
.form-input:focus { border-color:var(--text); box-shadow:0 0 0 3px rgba(26,26,24,0.06); }
[data-theme="dark"] .form-input:focus { box-shadow:0 0 0 3px rgba(240,239,233,0.06); }
.tab-row { display:flex; background:var(--bg-card2); border-radius:var(--radius-sm); padding:3px; margin-bottom:22px; border:1px solid var(--border); }
.tab-btn { flex:1; padding:8px; border-radius:7px; font-size:14px; font-weight:600; color:var(--text-muted); transition:var(--transition); text-align:center; cursor:pointer; }
.tab-btn.active { background:var(--text); color:var(--bg); }

/* ===== PACKAGES PAGE ===== */
.packages-layout { display:grid; grid-template-columns:280px 1fr; gap:28px; align-items:start; }
.sidebar { position:sticky; top:calc(var(--navbar-h) + 20px); background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px; }
.sidebar-section { margin-bottom:22px; border-bottom:1px solid var(--border); padding-bottom:22px; }
.sidebar-section:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.sidebar-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:12px; }
.sidebar-tags { display:flex; flex-wrap:wrap; gap:6px; }
.sidebar-tag { padding:5px 11px; border-radius:20px; font-size:12px; font-weight:500; background:var(--bg-card2); border:1px solid var(--border); color:var(--text2); cursor:pointer; transition:var(--transition); }
.sidebar-tag:hover,.sidebar-tag.active { background:var(--text); color:var(--bg); border-color:var(--text); }
.range-slider { width:100%; accent-color:var(--text); cursor:pointer; }
.star-btns { display:flex; gap:6px; }
.star-btn { flex:1; padding:8px; border-radius:var(--radius-sm); border:1.5px solid var(--border); background:var(--bg-card2); font-size:13px; font-weight:600; color:var(--text-muted); cursor:pointer; text-align:center; transition:var(--transition); }
.star-btn:hover,.star-btn.active { border-color:var(--text); color:var(--text); background:var(--bg-card2); }
.departure-btns { display:flex; flex-wrap:wrap; gap:6px; }
.departure-btn { padding:6px 12px; border-radius:var(--radius-sm); border:1.5px solid var(--border); background:var(--bg-card2); font-size:12px; font-weight:500; color:var(--text-muted); cursor:pointer; transition:var(--transition); }
.departure-btn:hover,.departure-btn.active { border-color:var(--text); color:var(--text); }

/* ===== PACKAGE LIST ITEM ===== */
.pkg-item { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; display:grid; grid-template-columns:240px 1fr auto; gap:0; transition:var(--transition); }
.pkg-item:hover { border-color:var(--border2); box-shadow:var(--shadow); }
.pkg-item-art { height:100%; min-height:160px; }
.pkg-item-body { padding:16px 18px; }
.pkg-item-title { font-size:16px; font-weight:700; color:var(--text); margin-bottom:5px; }
.pkg-item-tags { display:flex; gap:5px; flex-wrap:wrap; margin:8px 0; }
.pkg-item-tag { font-size:11px; font-weight:600; background:var(--bg-card2); border:1px solid var(--border); color:var(--text-muted); padding:2px 8px; border-radius:5px; }
.pkg-item-right { padding:16px 18px; display:flex; flex-direction:column; align-items:flex-end; justify-content:space-between; min-width:160px; border-left:1px solid var(--border); }
.pkg-price-old { font-size:13px; color:var(--text-muted); text-decoration:line-through; }
.pkg-price-new { font-size:22px; font-weight:900; color:var(--text); line-height:1.1; }
.pkg-price-label { font-size:11px; color:var(--text-muted); }

/* ===== AI RECOMMENDATION BANNER ===== */
.ai-rec-banner { background:var(--bg-card); border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:16px 18px; display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.ai-rec-avatar { width:42px; height:42px; border-radius:50%; background:#1A1A18; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
[data-theme="dark"] .ai-rec-avatar { background:#F0EFE9; }
.ai-rec-text { flex:1; font-size:14px; color:var(--text2); line-height:1.5; }
.ai-rec-text strong { color:var(--text); }
.ai-rec-action { font-size:13px; font-weight:600; color:var(--text2); display:flex; align-items:center; gap:4px; white-space:nowrap; padding:8px 14px; border-radius:var(--radius-sm); border:1.5px solid var(--border); transition:var(--transition); }
.ai-rec-action:hover { border-color:var(--text); color:var(--text); }

/* ===== VIEW TOGGLE ===== */
.view-toggle { display:flex; background:var(--bg-card2); border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; }
.view-btn { padding:7px 14px; font-size:13px; font-weight:600; color:var(--text-muted); cursor:pointer; transition:var(--transition); }
.view-btn.active { background:var(--text); color:var(--bg); }

/* ===== MAP PAGE ===== */
.map-page-layout { display:grid; grid-template-columns:1fr 320px; gap:0; min-height:calc(100vh - var(--navbar-h)); }
.map-canvas { position:relative; background:var(--bg2); flex:1; }
.map-panel { background:var(--bg-card); border-left:1px solid var(--border); padding:22px; overflow-y:auto; }
.map-dest-card { background:var(--bg-card2); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:16px; }
.map-dest-art { height:140px; }
.map-dest-info { padding:14px; }
.map-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.map-stat-box { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-sm); padding:10px 12px; }
.map-stat-val { font-size:14px; font-weight:800; color:var(--text); }
.map-stat-label { font-size:11px; color:var(--text-muted); }

/* ===== DEALS PAGE ===== */
.deals-layout { display:grid; grid-template-columns:240px 1fr 280px; gap:24px; }
.channels-panel { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:16px; }
.channel-item { display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:var(--radius-sm); cursor:pointer; transition:var(--transition); }
.channel-item:hover,.channel-item.active { background:var(--bg-card2); }
.channel-avatar { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; color:#fff; flex-shrink:0; }
.channel-name { font-size:14px; font-weight:600; color:var(--text); line-height:1.2; }
.channel-subs { font-size:11px; color:var(--text-muted); }
.phone-mockup { width:280px; flex-shrink:0; background:#1A1A18; border-radius:40px; padding:16px; box-shadow:0 24px 64px rgba(0,0,0,0.3); border:6px solid #2A2A28; position:relative; }
.phone-screen { background:#F5F4EF; border-radius:28px; overflow:hidden; }
.phone-deal-card { background:#fff; }
.live-feed-panel { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.live-feed-item { display:flex; gap:10px; padding:12px 14px; border-bottom:1px solid var(--border); transition:var(--transition); cursor:pointer; }
.live-feed-item:last-child { border-bottom:none; }
.live-feed-item:hover { background:var(--bg-card2); }

/* ===== AGENCIES PAGE ===== */
.agencies-layout { display:grid; grid-template-columns:240px 1fr; gap:24px; }
.agency-full-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:18px 22px; display:grid; grid-template-columns:56px 1fr auto; gap:14px; align-items:start; transition:var(--transition); }
.agency-full-card:hover { border-color:var(--border2); box-shadow:var(--shadow); }
.agency-initials-lg { width:56px; height:56px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:800; color:#fff; flex-shrink:0; }
.agency-specialty-tags { display:flex; gap:5px; flex-wrap:wrap; margin-top:7px; }
.agency-spec-tag { font-size:11px; font-weight:600; background:var(--bg-card2); border:1px solid var(--border); color:var(--text-muted); padding:2px 8px; border-radius:5px; }
.verified-check { color:var(--blue); font-size:14px; }

/* ===== NOTIFICATIONS PAGE ===== */
.notif-page-group-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin:24px 0 10px; }
.notif-page-item { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:16px 18px; display:flex; gap:14px; align-items:flex-start; transition:var(--transition); margin-bottom:8px; }
.notif-page-item:hover { border-color:var(--border2); }
.notif-page-item.unread { border-left:3px solid var(--green); }
.notif-icon-box { width:42px; height:42px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:20px; }

/* ===== AI CHAT PAGE ===== */
.chat-page-layout { display:grid; grid-template-columns:280px 1fr; gap:0; height:calc(100vh - var(--navbar-h)); }
.chat-sidebar { background:var(--bg-card); border-right:1px solid var(--border); padding:20px; overflow-y:auto; }
.chat-main { display:flex; flex-direction:column; }
.chat-messages-area { flex:1; overflow-y:auto; padding:24px; display:flex; flex-direction:column; gap:14px; }
.chat-msg { max-width:70%; padding:14px 18px; border-radius:18px; font-size:15px; line-height:1.6; animation:msgPop 0.25s ease; }
.chat-msg.user { align-self:flex-end; background:#1A1A18; color:#fff; border-bottom-right-radius:4px; }
[data-theme="dark"] .chat-msg.user { background:#F0EFE9; color:#1A1A18; }
.chat-msg.bot { align-self:flex-start; background:var(--bg-card); border:1px solid var(--border); color:var(--text); border-bottom-left-radius:4px; box-shadow:var(--shadow-sm); }
.chat-input-bar { padding:16px 20px; border-top:1px solid var(--border); background:var(--bg); display:flex; gap:10px; align-items:center; }
.chat-input { flex:1; background:var(--bg-card); border:1.5px solid var(--border); border-radius:var(--radius); padding:13px 18px; color:var(--text); font-size:15px; transition:var(--transition); }
.chat-input:focus { border-color:var(--text); }
.chat-send-btn { width:46px; height:46px; border-radius:50%; background:#1A1A18; color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px; transition:var(--transition); flex-shrink:0; }
[data-theme="dark"] .chat-send-btn { background:#F0EFE9; color:#1A1A18; }
.chat-send-btn:hover { transform:scale(1.06); }
.chat-suggestion-item { padding:10px 12px; border-radius:var(--radius-sm); cursor:pointer; font-size:14px; color:var(--text2); transition:var(--transition); border:1px solid transparent; margin-bottom:4px; }
.chat-suggestion-item:hover { background:var(--bg-card2); border-color:var(--border); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text-muted); margin-bottom:20px; }
.breadcrumb a { color:var(--text-muted); transition:var(--transition); }
.breadcrumb a:hover { color:var(--text); }
.breadcrumb-sep { color:var(--text-light); }

/* ===== ANIMATIONS ===== */
.fade-in { animation:fadeIn 0.5s ease both; }
@keyframes fadeIn { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }

/* ===== RESPONSIVE ===== */
@media (max-width:1100px) {
  .packages-layout,.agencies-layout { grid-template-columns:1fr; }
  .sidebar { position:static; }
  .deals-layout { grid-template-columns:1fr; }
  .chat-page-layout { grid-template-columns:1fr; }
  .chat-sidebar { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:900px) {
  .map-page-layout { grid-template-columns:1fr; }
  .pkg-item { grid-template-columns:1fr; }
  .pkg-item-art { min-height:180px; }
  .pkg-item-right { border-left:none; border-top:1px solid var(--border); }
  .agency-full-card { grid-template-columns:1fr; }
  .stats-bar-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-search { display:none; }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .section { padding:48px 0; }
  .hero-h1 { letter-spacing:-1px; }
  .ai-cta-banner { padding:28px 22px; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
}
@media (max-width:480px) {
  .grid-3,.grid-4 { grid-template-columns:1fr; }
  .container { padding:0 14px; }
  .stats-bar-grid { grid-template-columns:1fr 1fr; }
}

/* ===== MARKDOWN IN AI ===== */
.ai-msg h1,.ai-msg h2,.ai-msg h3 { font-weight:700; margin:6px 0 3px; }
.ai-msg h1 { font-size:16px; }
.ai-msg h2 { font-size:15px; }
.ai-msg h3 { font-size:14px; }
.ai-msg ul,.ai-msg ol { padding-left:18px; margin:4px 0; }
.ai-msg li { margin:2px 0; }
.ai-msg code { background:rgba(0,0,0,0.08); padding:1px 5px; border-radius:4px; font-size:0.9em; font-family:monospace; }
.ai-msg strong { font-weight:700; }
.ai-msg a { text-decoration:underline; opacity:0.8; }
.chat-msg h1,.chat-msg h2,.chat-msg h3 { font-weight:700; margin:6px 0 3px; }
.chat-msg ul { padding-left:18px; margin:4px 0; }
.chat-msg li { margin:2px 0; }
.chat-msg code { background:rgba(0,0,0,0.08); padding:1px 5px; border-radius:4px; font-size:0.9em; font-family:monospace; }
