/* CS2 buy menu — hand-authored CS2-style layout (the full Panorama buymenu.vcss is
 * the interactive menu; this is a faithful functional restyle with real icons +
 * extracted prices). Mounted inside #cs2-hud; re-enables pointer-events so it's
 * clickable within the pass-through HUD frame. */
#cs2-hud #BuyMenu { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(6, 10, 14, 0.55); pointer-events: auto; z-index: 50; }
#cs2-hud #BuyMenu .buymenu-inner { width: 1100px; max-width: 92%; background: rgba(16, 20, 24, 0.96); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 3px; padding: 18px 20px; }
#cs2-hud #BuyMenu .buymenu-head { font-size: 20px; letter-spacing: 1px; color: #e8e8e8; margin-bottom: 14px; display: flex; align-items: baseline; gap: 12px; }
#cs2-hud #BuyMenu .buymenu-head span { font-size: 12px; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.5px; }
#cs2-hud #BuyMenu .buymenu-cats { display: flex; gap: 14px; align-items: flex-start; }
#cs2-hud #BuyMenu .buymenu-col { flex: 1; min-width: 0; }
#cs2-hud #BuyMenu .buymenu-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #96c8ff; margin: 0 0 8px; padding-bottom: 5px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
#cs2-hud #BuyMenu .buymenu-items { display: flex; flex-direction: column; gap: 4px; }
#cs2-hud #BuyMenu .buymenu-item { display: flex; align-items: center; gap: 8px; padding: 6px 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid transparent; border-radius: 2px; color: #d8dde2; cursor: pointer; text-align: left; font: inherit; }
#cs2-hud #BuyMenu .buymenu-item:hover { background: rgba(80, 140, 220, 0.18); border-color: rgba(120, 170, 235, 0.5); }
#cs2-hud #BuyMenu .buymenu-item.active { background: rgba(120, 170, 235, 0.28); border-color: #78aaeb; }
#cs2-hud #BuyMenu .bm-icon { width: 40px; height: 20px; flex: 0 0 40px; color: #fff; }
#cs2-hud #BuyMenu .bm-icon svg { width: 100%; height: 100%; display: block; }
#cs2-hud #BuyMenu .bm-name { flex: 1; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#cs2-hud #BuyMenu .bm-price { font-size: 12px; color: #8bd450; font-variant-numeric: tabular-nums; }
