/*
Theme Name: BangOnMag
Theme URI: https://bangonmag.com
Author: BangOnMag
Author URI: https://bangonmag.com
Description: The world's education & career portal — custom WordPress theme for BangOnMag.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bangonmag
*/

/* ════════════════════════════════════════════════════════════════
   Marker: BOM_STYLE_V2_START — DO NOT REMOVE
   Session 1 unified style.css
   Rules H1–H15 + A6 update (ONLY .bom-site-header is sticky)
   PNG logo enabled. Mobile bottom nav removed (Rule H6).
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   🎨 DESIGN SYSTEM
   ════════════════════════════════════════════════════════════ */
:root {
  /* Brand palette */
  --bom-purple: #580681;
  --bom-purple-dark: #420660;
  --bom-purple-deeper: #2b0342;
  --bom-purple-soft: #f4edfa;
  --bom-yellow: #FFD700;
  --bom-yellow-dark: #e5c000;
  --bom-cyan: #00D9FF;
  --bom-bg: #E8E4F0;
  --bom-white: #ffffff;
  --bom-ink: #1a0f2e;
  --bom-ink-soft: #4a3b5e;
  --bom-ink-muted: #8a7da0;
  --bom-line: #e8e2f0;
  --bom-line-soft: #f2eef8;
  --bom-green: #10b981;
  --bom-red: #ef4444;
  --bom-amber: #f59e0b;
  --bom-whatsapp: #25D366;

  /* Aliases (so any older code referencing these still works) */
  --bom-gold: var(--bom-yellow);
  --bom-deep-purple: var(--bom-purple-dark);

  /* Typography */
  --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(88,6,129,.06);
  --shadow-md: 0 4px 16px rgba(88,6,129,.08);
  --shadow-lg: 0 12px 32px rgba(88,6,129,.12);
  --shadow-xl: 0 24px 64px rgba(88,6,129,.18);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;

  /* Layout */
  --header-h: 64px;
  --util-bar-h: 30px;
  --container-max: 1500px;
  --gutter: 16px;
}

/* ════════════════════════════════════════════════════════════
   🔧 RESET
   ════════════════════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  font-family: var(--font-body);
  background: var(--bom-bg);
  color: var(--bom-ink);
  font-size: 14px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* overflow-x: clip (not hidden) — preserves position: fixed for drawer/overlay */
html { overflow-x: clip; }
body { min-height: 100vh; padding-bottom: 20px; overflow-x: clip; }

button, input, select, textarea { font-family: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bom-fullwidth { font-family: var(--font-body); background: var(--bom-bg); color: var(--bom-ink); min-height: 100vh; }

/* ════════════════════════════════════════════════════════════
   ✓ VERIFIED BADGE COMPONENT
   ════════════════════════════════════════════════════════════ */
.bom-verified {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bom-purple); color: var(--bom-white);
  border-radius: 50%; width: 16px; height: 16px;
  font-size: 10px; font-weight: 900;
  font-family: var(--font-display);
  flex-shrink: 0; line-height: 1;
}
.bom-verified::before { content: '\2713'; }
.bom-verified-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bom-purple); color: var(--bom-white);
  padding: 3px 10px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 10px; text-transform: uppercase;
  letter-spacing: .5px; white-space: nowrap;
}
.bom-verified-pill::before {
  content: '\2713';
  display: inline-grid; place-items: center;
  width: 13px; height: 13px;
  background: var(--bom-white); color: var(--bom-purple);
  border-radius: 50%; font-size: 9px;
}

/* ════════════════════════════════════════════════════════════════════
   🚀 HEADER SYSTEM (Session 1 LOCKED — H1–H15 + A6 update)
   - Util bar (NOT sticky, scrolls away)
   - Site header (ONLY sticky element, top:0, z-index:200)
   - Nav tabs row (NOT sticky, scrolls away)
   - Mobile drawer (slides from RIGHT, hidden by default)
   ════════════════════════════════════════════════════════════════════ */

/* ─── UTILITY BAR (NOT sticky) ─── */
.bom-util-bar {
  background: var(--bom-purple-deeper);
  height: var(--util-bar-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bom-util-inner {
  width: 100%;
  display: flex;
  align-items: center;
  height: var(--util-bar-h);
}
.bom-util-ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: var(--util-bar-h);
  display: flex;
  align-items: center;
}
.bom-util-ticker {
  display: flex;
  white-space: nowrap;
  animation: bom-tick 36s linear infinite;
}
.bom-util-ticker:hover { animation-play-state: paused; }
@keyframes bom-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.bom-util-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,.88);
}
.bom-util-stat .bom-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bom-yellow);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--bom-yellow);
}
.bom-util-stat strong { color: var(--bom-yellow); }
.bom-util-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,.12);
}
.bom-lang-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s;
}
.bom-lang-btn.active {
  background: var(--bom-yellow);
  color: var(--bom-purple-dark);
  border-color: var(--bom-yellow);
}

/* ─── SITE HEADER (ONLY sticky element — A6 LOCKED) ─── */
.bom-site-header {
  background: var(--bom-purple);
  height: var(--header-h);
  display: flex;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 3px 12px rgba(88,6,129,.4);
}
.bom-site-header .bom-header-inner,
.bom-header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ─── LOGO (PNG image) ─── */
.bom-site-header .bom-logo,
.bom-site-header a.bom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
}
.bom-logo-img {
  height: 42px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.bom-logo-img-drawer {
  height: 36px;
  max-width: 180px;
}

/* ─── SEARCH BAR (desktop only) ─── */
.bom-site-header .bom-search {
  flex: 1;
  min-width: 0;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--bom-yellow);
  transition: border-color .2s;
  height: auto;
  padding: 0;
  margin: 0;
  position: static;
}
.bom-site-header .bom-search:focus-within { border-color: var(--bom-cyan); }
.bom-search-cat {
  background: #F5F5F5;
  border: none;
  border-right: 1px solid #E0E0E0;
  padding: 0 10px;
  height: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--bom-ink);
  cursor: pointer;
  outline: none;
  font-weight: 600;
  min-width: 84px;
  max-width: 110px;
}
.bom-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 12px;
  height: 40px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--bom-ink);
  background: transparent;
}
.bom-search-input::placeholder { color: #999; }
.bom-search-kbd {
  font-size: 9px;
  color: #999;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  position: static;
  transform: none;
}
.bom-search-btn {
  background: var(--bom-yellow);
  border: none;
  padding: 0 14px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--bom-purple-dark);
  transition: background .15s;
}
.bom-search-btn:hover { background: var(--bom-yellow-dark); }

/* ─── HEADER RIGHT NAV ─── */
.bom-header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.bom-hnav-btn {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: all .15s;
}
.bom-hnav-btn:hover { background: rgba(255,255,255,.2); color: #fff; }
.bom-hnav-btn.primary { background: var(--bom-yellow); color: var(--bom-purple-dark); font-weight: 800; }
.bom-hnav-btn.primary:hover { background: var(--bom-yellow-dark); color: var(--bom-purple-dark); }
.bom-hnav-btn.outline { border: 1.5px solid rgba(255,255,255,.4); background: transparent; }

/* Create+ button */
.bom-create-btn {
  background: var(--bom-yellow);
  color: var(--bom-purple-dark);
  font-weight: 800;
  padding: 8px 13px;
}
.bom-create-btn:hover { background: var(--bom-yellow-dark); color: var(--bom-purple-dark); }
.bom-plus { font-size: 17px; font-weight: 900; line-height: 1; }

/* Notification bell */
.bom-dropdown-wrap { position: relative; }
.bom-notif-wrap {
  cursor: pointer;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  transition: background .15s;
  position: relative;
}
.bom-notif-wrap:hover { background: rgba(255,255,255,.1); }
.bom-notif-badge {
  position: absolute;
  top: 1px; right: 1px;
  background: var(--bom-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  min-width: 17px;
  height: 17px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bom-purple);
  line-height: 1;
}

/* Bookmarks */
.bom-bm-btn {
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.85);
  width: 36px; height: 36px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.bom-bm-btn:hover { background: rgba(255,255,255,.2); color: var(--bom-yellow); }

/* Hamburger (mobile only) */
.bom-hamburger {
  display: none;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 7px;
  padding: 7px 10px;
  cursor: pointer;
  color: #fff;
  font-size: 19px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  position: relative;
  z-index: 201;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255,215,0,.3);
  pointer-events: auto;
}

/* User chip */
.bom-user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 4px 12px 4px 5px;
  transition: background .15s;
}
.bom-user-chip:hover { background: rgba(255,255,255,.22); }
.bom-user-chip-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bom-yellow);
  object-fit: cover;
  flex-shrink: 0;
}
.bom-user-chip-initial {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bom-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--bom-purple-dark);
  flex-shrink: 0;
}
.bom-user-chip-info { line-height: 1.1; }
.bom-user-chip-name {
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
}
.bom-user-chip-role {
  font-family: var(--font-display);
  font-size: 8.5px;
  color: var(--bom-yellow);
  letter-spacing: .8px;
  margin-top: 1px;
  font-weight: 800;
}

/* ─── NAV TABS ROW (8 divisions, NOT sticky) ─── */
.bom-nav-tabs {
  background: #fff;
  border-bottom: 2px solid var(--bom-line);
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.bom-tabs-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 12px;
}
.bom-tabs-wrapper::-webkit-scrollbar { display: none; }
.bom-nav-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  flex-shrink: 0;
}
.bom-nav-tab:hover {
  color: var(--bom-purple);
  border-bottom-color: rgba(88,6,129,.3);
}
.bom-nav-tab.active {
  color: var(--bom-purple);
  border-bottom-color: var(--bom-purple);
}
.bom-tab-count {
  background: #F5F5F5;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 99px;
}
.bom-nav-tab.active .bom-tab-count {
  background: var(--bom-yellow);
  color: var(--bom-purple-dark);
}
.bom-tab-badge-live {
  background: var(--bom-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
  animation: bom-live-pulse 2s ease-in-out infinite;
}
@keyframes bom-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* ─── NOTIFICATION DROPDOWN ─── */
.bom-notif-dropdown,
.bom-create-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 380px;
  max-width: 90vw;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(0,0,0,.2), 0 8px 24px rgba(0,0,0,.1);
  border: 1px solid var(--bom-line);
  z-index: 300;
  overflow: hidden;
  color: var(--bom-ink);
}
.bom-create-dropdown { width: 320px; padding: 6px; }
.bom-notif-dropdown.open,
.bom-create-dropdown.open {
  display: block;
  animation: bom-fadeDown .2s ease;
}
@keyframes bom-fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bom-notif-head {
  background: var(--bom-purple-dark);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--bom-yellow);
}
.bom-notif-head-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
}
.bom-notif-head-title small {
  display: block;
  font-size: 9px;
  color: var(--bom-yellow);
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 800;
}
.bom-notif-clear {
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.3);
  color: var(--bom-yellow);
  font-family: var(--font-display);
  font-size: 10px;
  padding: 5px 9px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .3px;
}
.bom-notif-list { max-height: 380px; overflow-y: auto; }
.bom-notif-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  padding: 12px 16px;
  border-bottom: 1px solid #F0F0F0;
  text-decoration: none;
  color: var(--bom-ink);
  align-items: flex-start;
  position: relative;
  transition: background .15s;
}
.bom-notif-item:hover { background: var(--bom-purple-soft); }
.bom-notif-item.unread { background: rgba(88,6,129,.04); }
.bom-notif-item.unread::after {
  content: '';
  position: absolute;
  top: 18px; right: 12px;
  width: 6px; height: 6px;
  background: var(--bom-red);
  border-radius: 50%;
}
.bom-notif-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.bom-notif-icon.college     { background: linear-gradient(135deg, var(--bom-purple), var(--bom-yellow)); color: #fff; }
.bom-notif-icon.institution { background: linear-gradient(135deg, var(--bom-purple), var(--bom-cyan)); color: #fff; }
.bom-notif-icon.scholarship { background: linear-gradient(135deg, var(--bom-yellow), #FF8C00); }
.bom-notif-icon.event       { background: linear-gradient(135deg, var(--bom-cyan), var(--bom-purple)); color: #fff; }
.bom-notif-icon.contest     { background: linear-gradient(135deg, #ff006e, var(--bom-yellow)); }
.bom-notif-icon.media       { background: linear-gradient(135deg, #FF006E, var(--bom-purple)); color: #fff; }
.bom-notif-icon.system      { background: var(--bom-purple-dark); color: var(--bom-yellow); }
.bom-notif-text { font-size: 12.5px; color: var(--bom-ink); line-height: 1.4; font-weight: 500; }
.bom-notif-text strong { font-family: var(--font-display); font-weight: 800; color: var(--bom-purple-dark); }
.bom-notif-text em { color: var(--bom-purple); font-style: normal; font-weight: 800; }
.bom-notif-meta {
  font-family: var(--font-display);
  font-size: 9px;
  color: #999;
  letter-spacing: .5px;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 800;
}
.bom-notif-time {
  font-family: var(--font-display);
  font-size: 9px;
  color: #999;
  white-space: nowrap;
  margin-top: 2px;
  font-weight: 700;
}
.bom-notif-empty { padding: 40px 20px; text-align: center; color: #999; }
.bom-notif-empty-icon { font-size: 36px; margin-bottom: 8px; opacity: .4; }
.bom-notif-empty p { font-size: 12px; line-height: 1.5; margin: 0; }
.bom-notif-footer {
  padding: 12px 16px;
  background: var(--bom-purple-soft);
  border-top: 1px solid #F0F0F0;
  text-align: center;
}
.bom-notif-footer a {
  color: var(--bom-purple);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  text-decoration: none;
}

/* ─── CREATE+ DROPDOWN ─── */
.bom-create-head {
  padding: 10px 12px 6px;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--bom-purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 900;
}
.bom-create-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--bom-ink);
  align-items: center;
  transition: background .15s;
}
.bom-create-item:hover { background: var(--bom-purple-soft); }
.bom-create-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(88,6,129,.08);
  color: var(--bom-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.bom-create-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--bom-ink);
  line-height: 1.2;
}
.bom-create-desc { font-size: 11px; color: #777; margin-top: 2px; }
.bom-create-arrow { color: #ccc; font-size: 14px; }

/* ─── MOBILE DRAWER (slides from RIGHT — Rule H6) ─── */
.bom-drawer-overlay {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 9998 !important;
  cursor: pointer;
  pointer-events: auto !important;
}
.bom-drawer-overlay.open { display: block !important; }
.bom-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: var(--drawer-w);
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 9999 !important;
  transition: right .3s cubic-bezier(.4,0,.2,1) !important;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 32px rgba(0,0,0,.3);
}
.bom-mobile-drawer.open { right: 0 !important; }
.bom-mobile-drawer .bom-drawer-head {
  background: linear-gradient(135deg, var(--bom-purple), var(--bom-purple-dark));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 2px solid var(--bom-yellow);
  color: #fff;
}
.bom-mobile-drawer .bom-drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bom-mobile-drawer .bom-drawer-close {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,215,0,.2);
  color: var(--bom-yellow);
  width: 32px; height: 32px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  border-radius: 7px;
  display: grid;
  place-items: center;
}
.bom-mobile-drawer .bom-drawer-close:hover { background: rgba(255,255,255,.2); }
.bom-drawer-user {
  padding: 14px 18px;
  background: var(--bom-purple-soft);
  border-bottom: 1px solid var(--bom-line);
  display: flex;
  align-items: center;
  gap: 11px;
}
.bom-drawer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--bom-yellow), #FF006E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--bom-purple-dark);
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  object-fit: cover;
}
.bom-drawer-user-info { min-width: 0; flex: 1; }
.bom-drawer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--bom-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bom-drawer-email {
  font-size: 11px;
  color: #777;
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bom-drawer-role-pill {
  display: inline-block;
  margin-top: 5px;
  background: var(--bom-purple);
  color: var(--bom-yellow);
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .8px;
}
.bom-drawer-cta-row {
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bom-drawer-cta-row a {
  text-decoration: none;
  text-align: center;
  padding: 10px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
}
.bom-drawer-login {
  background: #fff;
  border: 1.5px solid var(--bom-purple);
  color: var(--bom-purple);
}
.bom-drawer-register {
  background: var(--bom-yellow);
  color: var(--bom-purple-dark);
}
.bom-drawer-search {
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid var(--bom-line);
}
.bom-drawer-search form {
  display: flex;
  background: #F5F5F5;
  border-radius: 8px;
  border: 1.5px solid var(--bom-yellow);
  overflow: hidden;
}
.bom-drawer-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 12px;
  font-size: 12.5px;
  outline: none;
  font-family: var(--font-body);
}
.bom-drawer-search button {
  background: var(--bom-yellow);
  border: none;
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
}
.bom-drawer-section-head {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--bom-purple);
  padding: 12px 18px 5px;
}
.bom-drawer-menu { list-style: none; padding: 0; margin: 0; }
.bom-drawer-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--bom-ink);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  transition: all .15s;
  border-left: 3px solid transparent;
}
.bom-drawer-menu li a:hover {
  background: var(--bom-purple-soft);
  color: var(--bom-purple);
  border-left-color: var(--bom-purple);
}
.bom-dm-icon { font-size: 17px; width: 22px; text-align: center; flex-shrink: 0; }
.bom-dm-badge {
  margin-left: auto;
  background: var(--bom-yellow);
  color: var(--bom-purple-dark);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
}
.bom-dm-badge.live  { background: var(--bom-red); color: #fff; }
.bom-dm-badge.count { background: rgba(88,6,129,.1); color: var(--bom-purple); }
.bom-drawer-div { height: 1px; background: var(--bom-line); margin: 4px 0; }
.bom-drawer-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #cc3322;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: rgba(204,51,34,.04);
  margin-top: 8px;
  border-top: 1px solid #f0d8d8;
}

/* ════════════════════════════════════════════════════════════════
   📦 PRESERVED COMPONENTS — from original style.css
   (Footer, modals, toasts, forms, WhatsApp, file upload, mobile search overlay)
   ════════════════════════════════════════════════════════════════ */

/* ═══════ FOOTER ═══════ */
.bom-footer {
  background: var(--bom-purple-deeper);
  color: rgba(255,255,255,.8);
  padding: 50px 0 20px;
  margin-top: 40px;
}
.bom-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.bom-footer-brand-col { padding-right: 20px; }
.bom-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.bom-footer-logo-img { height: 44px; width: auto; max-width: 200px; display: block; }
.bom-footer-logo-mark {
  width: 42px; height: 42px;
  background: var(--bom-yellow);
  color: var(--bom-purple-deeper);
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}
.bom-footer-logo-text { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--bom-white); }
.bom-footer-logo-text span { color: var(--bom-yellow); }
.bom-footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 18px; }
.bom-footer-socials { display: flex; gap: 8px; }
.bom-footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  transition: all .2s ease;
}
.bom-footer-social:hover { background: var(--bom-yellow); color: var(--bom-purple-deeper); transform: translateY(-2px); }
.bom-footer-col h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--bom-yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.bom-footer-col ul { list-style: none; }
.bom-footer-col ul li { margin-bottom: 8px; }
.bom-footer-col ul a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .2s ease; }
.bom-footer-col ul a:hover { color: var(--bom-yellow); }
.bom-footer-newsletter {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.bom-footer-newsletter-title { font-family: var(--font-display); font-weight: 900; font-size: 12px; color: var(--bom-yellow); margin-bottom: 6px; }
.bom-footer-newsletter-desc { font-size: 11px; color: rgba(255,255,255,.65); margin-bottom: 10px; line-height: 1.5; }
.bom-footer-newsletter-form { display: flex; gap: 6px; }
.bom-footer-newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: var(--bom-white);
  font-size: 12px;
  outline: none;
  min-width: 0;
}
.bom-footer-newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.bom-footer-newsletter-form button {
  padding: 8px 14px;
  background: var(--bom-yellow);
  color: var(--bom-purple-deeper);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
}
.bom-footer-bottom {
  max-width: var(--container-max);
  margin: 30px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.bom-footer-copyright { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.bom-footer-legal { display: flex; gap: 18px; font-size: 12px; flex-wrap: wrap; }
.bom-footer-legal a { color: rgba(255,255,255,.55); transition: color .2s ease; }
.bom-footer-legal a:hover { color: var(--bom-yellow); }

/* ═══════ TOAST ═══════ */
.bom-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bom-ink);
  color: var(--bom-white);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  z-index: 300;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  max-width: 90vw;
  text-align: center;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.bom-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.bom-toast-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.bom-toast-icon.success { background: var(--bom-green); color: var(--bom-white); }
.bom-toast-icon.error   { background: var(--bom-red);   color: var(--bom-white); }
.bom-toast-icon.info    { background: var(--bom-purple); color: var(--bom-yellow); }

/* ═══════ GLOBAL MODAL ═══════ */
.bom-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,15,46,.6);
  backdrop-filter: blur(8px);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn .25s ease;
}
.bom-modal-overlay.on { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.bom-modal {
  background: var(--bom-white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn .35s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bom-modal-head {
  background: linear-gradient(135deg, var(--bom-purple-deeper) 0%, var(--bom-purple) 100%);
  color: var(--bom-white);
  padding: 20px 22px;
  position: relative;
}
.bom-modal-head::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--bom-yellow), transparent 60%);
  opacity: .15;
}
.bom-modal-title { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--bom-yellow); position: relative; letter-spacing: -.3px; }
.bom-modal-sub { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 4px; position: relative; }
.bom-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  color: var(--bom-white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  transition: all .2s ease;
  z-index: 2;
}
.bom-modal-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.bom-modal-body { padding: 22px; }
.bom-modal-submit {
  width: 100%;
  padding: 13px;
  background: var(--bom-purple);
  color: var(--bom-yellow);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all .2s ease;
  margin-top: 8px;
  box-shadow: var(--shadow-md);
}
.bom-modal-submit:hover { background: var(--bom-purple-dark); transform: translateY(-2px); }
.bom-modal-submit:disabled { opacity: .6; cursor: not-allowed; }
.bom-modal-trust {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--bom-purple-soft);
  border-radius: 10px;
  font-size: 10.5px;
  color: var(--bom-purple);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════ FORMS ═══════ */
.bom-form-field { margin-bottom: 12px; }
.bom-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--bom-ink-soft);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bom-form-input,
.bom-form-select,
.bom-form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bom-bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: all .2s ease;
  font-family: var(--font-body);
}
.bom-form-input:focus,
.bom-form-select:focus,
.bom-form-textarea:focus {
  background: var(--bom-white);
  border-color: var(--bom-purple);
  box-shadow: 0 0 0 4px rgba(88,6,129,.08);
}
.bom-form-textarea { resize: vertical; min-height: 90px; }

/* ═══════ WHATSAPP BUTTON ═══════ */
.bom-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bom-whatsapp);
  color: var(--bom-white);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  transition: all .2s ease;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.bom-wa-btn:hover { background: #1ea952; transform: translateY(-1px); color: var(--bom-white); }

/* ═══════ NATIVE FILE UPLOAD ═══════ */
.bom-upload {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
}
.bom-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 0;
}
.bom-upload-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border: 2px dashed var(--bom-purple);
  background: var(--bom-purple-soft);
  border-radius: 14px;
  color: var(--bom-purple);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  transition: all .25s ease;
  text-align: center;
}
.bom-upload:hover .bom-upload-ui {
  background: var(--bom-purple);
  color: var(--bom-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--bom-purple);
}

/* ════════════════════════════════════════════════════════════════
   📱 RESPONSIVE — mobile-first breakpoints
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  /* Header */
  .bom-site-header { height: 58px; }
  .bom-site-header .bom-header-inner,
  .bom-header-inner { padding: 0 14px; gap: 8px; }
  .bom-site-header .bom-search { display: none; }
  .bom-hamburger { display: inline-flex; }
  .bom-hnav-btn:not(.bom-create-btn) { display: none; }
  .bom-bm-btn { display: none; }
  .bom-user-chip { display: none; }
  .bom-create-label { display: none; }
  .bom-create-btn { padding: 8px 11px; }
  .bom-logo-img { height: 36px; max-width: 160px; }

  /* Nav tabs */
  .bom-nav-tab { padding: 12px 13px; font-size: 12.5px; }

  /* Dropdowns: full-width on mobile */
  .bom-notif-dropdown,
  .bom-create-dropdown {
    position: fixed;
    top: 66px;
    right: 8px;
    left: 8px;
    width: auto;
    max-width: none;
  }

  /* Util bar shrinks on mobile */
  :root { --util-bar-h: 28px; }
  .bom-util-stat { font-size: 10px; padding: 0 18px; }

  /* Footer collapses */
  .bom-footer { padding: 40px 0 20px; }
  .bom-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bom-footer-brand-col { grid-column: 1 / -1; padding-right: 0; }
  .bom-footer-col:nth-child(5) { display: block; grid-column: 1 / -1; }
  .bom-footer-newsletter { margin-top: 12px; }
  .bom-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 20px;
    margin-top: 24px;
  }
  .bom-footer-legal { gap: 14px; justify-content: center; font-size: 11.5px; }
  .bom-footer-copyright { font-size: 11.5px; }
}

@media (max-width: 480px) {
  .bom-logo-img { height: 32px; max-width: 140px; }
  .bom-util-stat { padding: 0 14px; font-size: 10px; }
  .bom-footer-inner { grid-template-columns: 1fr; }
}

/* Marker: BOM_STYLE_V2_END — DO NOT REMOVE */
