/**
 * Prestige Prizes — site header (from prestige-prizes-header.html)
 */



/* ═══════════════════════════════════════════════
   CSS VARIABLES — THEME TOKENS
═══════════════════════════════════════════════ */
:root {
  --site-navbar-height: 64px;
  /* Purples */
  --pp-primary:       #7337C1;
  --pp-primary-lt:    #6B31B0;
  --pp-secondary:     #9555D0;
  --pp-lavender:      #B87DE8;
  --pp-mid:           #8554C8;
  --pp-hover-dk:      #5E2BA0;
  --pp-hover-lt:      #522896;

  /* Fixed */
  --pp-white:         #FFFFFF;
  --pp-danger:        #DC3545;
  --pp-success:       #198754;

  /* Gradient shorthands */
  --grad-purple: linear-gradient(135deg, #7337C1, #9555D0);
  --grad-accent:  linear-gradient(90deg, #9555D0, #7337C1, #9555D0);
  --grad-stripe:  linear-gradient(90deg, #B87DE8, #9555D0, #7337C1);
}

/* DARK THEME (default) */
.dark-theme {
  --bg-page:          #0D0D0D;
  --bg-deep:          #050505;
  --bg-header:        rgba(10,10,12,0.82);
  --bg-card:          #121212;
  --bg-card-alt:      #191919;
  --bg-ticker:        #7337C1;
  --bg-dropdown:      #111114;
  --bg-drawer:        #121212;
  --bg-overlay:       rgba(0,0,0,0.55);

  --text-primary:     #FFFFFF;
  --text-muted:       #a8a8b8;
  --text-nav:         #FFFFFF;
  --text-nav-hover:   #FFFFFF;
  --text-nav-active:  #B87DE8;
  --text-nav-active-w: 700;

  --btn-ghost-border: rgba(115,55,193,0.35);
  --btn-ghost-text:   #FFFFFF;
  --icon-color:       #FFFFFF;
  --icon-bg:          rgba(115,55,193,0.08);
  --icon-border:      rgba(115,55,193,0.28);

  --border-subtle:    rgba(149,85,208,0.18);
  --divider:          rgba(149,85,208,0.15);
  --shadow-dropdown:  0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(115,55,193,0.2);
  --shadow-drawer:    -8px 0 40px rgba(0,0,0,0.6);

  --toggle-track:     rgba(115,55,193,0.2);
  --toggle-border:    rgba(115,55,193,0.4);

  --welcome-bg:       rgba(115,55,193,0.1);
  --balance-bg:       rgba(115,55,193,0.08);
  --balance-border:   rgba(115,55,193,0.2);
}

/* LIGHT THEME */
.light-theme {
  --bg-page:          #F5F5F7;
  --bg-deep:          #E5E5E7;
  --bg-header:        rgba(255,255,255,0.88);
  --bg-card:          #FFFFFF;
  --bg-card-alt:      #F0F0F2;
  --bg-ticker:        #6B31B0;
  --bg-dropdown:      #FFFFFF;
  --bg-drawer:        #FFFFFF;
  --bg-overlay:       rgba(0,0,0,0.45);

  --text-primary:     #333344;
  --text-muted:       #666677;
  --text-nav:         #555566;
  --text-nav-hover:   #333344;
  --text-nav-active:  #6B31B0;
  --text-nav-active-w: 700;

  --btn-ghost-border: rgba(107,49,176,0.35);
  --btn-ghost-text:   #333344;
  --icon-color:       #333344;
  --icon-bg:          rgba(107,49,176,0.06);
  --icon-border:      rgba(107,49,176,0.22);

  --border-subtle:    rgba(107,49,176,0.15);
  --divider:          rgba(107,49,176,0.12);
  --shadow-dropdown:  0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(107,49,176,0.15);
  --shadow-drawer:    -8px 0 40px rgba(0,0,0,0.15);

  --toggle-track:     rgba(107,49,176,0.12);
  --toggle-border:    rgba(107,49,176,0.3);

  --welcome-bg:       rgba(107,49,176,0.06);
  --balance-bg:       rgba(107,49,176,0.05);
  --balance-border:   rgba(107,49,176,0.15);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */






a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════
   SITE HEADER WRAPPER
═══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════════════
   1. NEWS TICKER STRIP
═══════════════════════════════════════════════ */
.ticker-strip {
  height: 29px;
  background: var(--bg-ticker);
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.3s;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker-item {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  color: var(--pp-white);
  padding: 0 32px;
  letter-spacing: 0.02em;
}

.ticker-sep {
  color: rgba(255,255,255,0.35);
  padding: 0 4px;
  font-size: 11px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   2. MAIN HEADER BAR
═══════════════════════════════════════════════ */
.header-bar {
  height: 64px;
  background: var(--bg-header);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
}

/* Accent gradient line at bottom */
.header-bar::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0.8;
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* ═══════════════════════════════════════════════
   LOGO
═══════════════════════════════════════════════ */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.header-logo-img--light {
  display: none;
}

html.light-theme .header-logo-img--dark,
.light-theme .header-logo-img--dark {
  display: none;
}

html.light-theme .header-logo-img--light,
.light-theme .header-logo-img--light {
  display: block;
}

/* ═══════════════════════════════════════════════
   CENTER NAV
═══════════════════════════════════════════════ */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.header-nav .pp-nav-links,
.header-nav .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav .nav-item {
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--text-nav);
  padding: 6px 14px;
  border-radius: 6px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-nav-hover);
}

.nav-link.active {
  color: var(--text-nav-active);
  font-weight: var(--text-nav-active-w);
}

/* ═══════════════════════════════════════════════
   RIGHT ACTIONS
═══════════════════════════════════════════════ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

#site-header .desktop-actions > .dropdown,
#site-header .desktop-actions > .theme-toggle,
#site-header .desktop-actions > #auth-buttons {
  margin: 0;
}

#site-header .mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  #site-header .header-nav {
    display: none !important;
  }

  #site-header .desktop-actions {
    display: none !important;
  }

  #site-header .mobile-actions {
    display: flex !important;
  }

  #site-header .hamburger-btn {
    display: flex;
  }
}

@media (min-width: 992px) {
  #site-header .desktop-actions {
    display: flex !important;
  }

  #site-header .mobile-actions {
    display: none !important;
  }
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--toggle-track);
  border: 1px solid var(--toggle-border);
  border-radius: 20px;
  padding: 5px 10px;
  transition: background 0.3s, border-color 0.3s;
}

.theme-toggle .t-icon {
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.dark-theme .theme-toggle .t-icon.sun { color: var(--text-muted); }
.dark-theme .theme-toggle .t-icon.moon { color: var(--pp-lavender); }
.light-theme .theme-toggle .t-icon.sun { color: #F9A825; }
.light-theme .theme-toggle .t-icon.moon { color: var(--text-muted); }

.toggle-pill {
  width: 30px;
  height: 16px;
  background: var(--grad-purple);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s;
}

.toggle-pill::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  transition: left 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dark-theme .toggle-pill::after { left: 3px; }
.light-theme .toggle-pill::after { left: 17px; }

/* Icon Buttons */
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.icon-btn:hover {
  background: rgba(115,55,193,0.16);
  border-color: rgba(115,55,193,0.5);
  transform: translateY(-1px);
}

.icon-btn:active {
  transform: translateY(0);
}

/* Header icon count badges only — do not style global .badge */
#site-header .icon-btn .badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
  border: 2px solid var(--bg-page);
}

#site-header .badge-cart { background: var(--pp-primary); color: #fff; }
#site-header .badge-notif { background: var(--pp-primary); color: #fff; }

/* Auth Buttons */
.btn-login {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-ghost-text);
  border: 1px solid var(--btn-ghost-border);
  border-radius: 20px;
  padding: 7px 18px;
  height: 36px;
  display: flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-login:hover {
  border-color: rgba(115,55,193,0.7);
  background: rgba(115,55,193,0.08);
}

.btn-register {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-purple);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 7px 20px;
  height: 36px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(115,55,193,0.35);
  transition: box-shadow 0.2s, transform 0.15s, filter 0.2s;
  white-space: nowrap;
}

.btn-register:hover {
  box-shadow: 0 6px 24px rgba(115,55,193,0.55);
  transform: translateY(-1px);
  filter: brightness(1.1);
}

/* User Chip */
.user-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  border-radius: 22px;
  padding: 4px 12px 4px 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.user-chip:hover {
  background: rgba(115,55,193,0.14);
  border-color: rgba(115,55,193,0.45);
}

.user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(115,55,193,0.4);
}

.user-name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.user-chip i {
  font-size: 10px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   DROPDOWN SYSTEM
═══════════════════════════════════════════════ */
.dropdown-wrap {
  position: relative;
}

/* Purple stripe at top of every dropdown */
.dropdown-stripe {
  height: 3px;
  background: var(--grad-stripe);
  flex-shrink: 0;
}

.dropdown-body {
  padding: 16px;
}

/* Cart dropdown */
.dropdown-cart { width: 300px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  text-align: center;
}

.cart-empty-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(115,55,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--pp-secondary);
}

.cart-empty p {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-weight: 500;
}

.btn-dd-solid {
  width: 100%;
  background: var(--grad-purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

.btn-dd-solid:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Wallet dropdown */
.dropdown-wallet { width: 250px; }

.dd-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--balance-bg);
  border: 1px solid var(--balance-border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
}

.balance-label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
}

.balance-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.btn-dd-outline {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(115,55,193,0.4);
  color: var(--pp-secondary);
  border-radius: 10px;
  padding: 9px;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-dd-outline:hover { background: rgba(115,55,193,0.1); border-color: rgba(115,55,193,0.6); }

/* Notifications dropdown */
.dropdown-notif { width: 350px; }

.notif-list {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(115,55,193,0.3) transparent;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
}

.notif-item:last-child { border-bottom: none; }

.notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pp-primary);
  margin-top: 5px;
  flex-shrink: 0;
}

.notif-text {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
}

.notif-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.dd-footer {
  display: flex;
  gap: 8px;
}

.btn-dd-see-all {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(115,55,193,0.4);
  color: var(--pp-secondary);
  border-radius: 8px;
  padding: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-dd-see-all:hover { background: rgba(115,55,193,0.1); }

.btn-dd-clear {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(220,53,69,0.35);
  color: var(--pp-danger);
  border-radius: 8px;
  padding: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-dd-clear:hover { background: rgba(220,53,69,0.08); }

/* User menu dropdown */
.dropdown-user { width: 200px; }

.dd-user-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 8px;
}

.dd-user-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.dd-user-info-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.dd-user-info-label {
  font-size: 12px;
  color: var(--text-muted);
}

.dd-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  text-align: left;
}

.dd-menu-item i {
  width: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.dd-menu-item:hover {
  background: rgba(115,55,193,0.1);
}

.dd-menu-item:hover i { color: var(--pp-secondary); }

.dd-divider {
  height: 1px;
  background: var(--divider);
  margin: 8px 0;
}

.dd-menu-item.danger { color: var(--pp-danger); }
.dd-menu-item.danger i { color: var(--pp-danger); }
.dd-menu-item.danger:hover { background: rgba(220,53,69,0.08); }

/* Guest mini dropdown */
.dropdown-guest { width: 180px; }

.dd-auth-btns { display: flex; flex-direction: column; gap: 8px; }

.btn-dd-login {
  display: block;
  width: 100%;
  border: 1px solid rgba(115,55,193,0.4);
  background: transparent;
  color: var(--text-primary);
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-dd-login:hover { background: rgba(115,55,193,0.1); }

.btn-dd-register {
  display: block;
  width: 100%;
  background: var(--grad-purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(115,55,193,0.35);
  transition: filter 0.2s, transform 0.15s;
}

.btn-dd-register:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   MOBILE — HAMBURGER VISIBLE, NAV HIDDEN
═══════════════════════════════════════════════ */
.hamburger-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hamburger-btn:hover { background: rgba(115,55,193,0.16); }

/* ═══════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(3px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(85vw, 360px);
  background: var(--bg-drawer);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-drawer);
  border-left: 1px solid var(--border-subtle);
  overflow-y: auto;
  scrollbar-width: none;
}

.drawer-panel.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--divider);
  flex-shrink: 0;
}

.drawer-logo {
  display: flex;
  align-items: center;
}

.drawer-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.drawer-logo-img--light {
  display: none;
}

html.light-theme .drawer-logo-img--dark,
.light-theme .drawer-logo-img--dark {
  display: none;
}

html.light-theme .drawer-logo-img--light,
.light-theme .drawer-logo-img--light {
  display: block;
}

.drawer-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Drawer theme toggle — matches desktop header pill */
.drawer-theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.drawer-theme-toggle .fa-sun,
.drawer-theme-toggle .fa-moon {
  font-size: 11px !important;
  line-height: 1;
  display: inline-block !important;
  opacity: 1 !important;
  transition: color 0.2s;
}

.dark-theme .drawer-theme-toggle .fa-sun { color: var(--text-muted) !important; }
.dark-theme .drawer-theme-toggle .fa-moon { color: var(--pp-lavender) !important; }
.light-theme .drawer-theme-toggle .fa-sun { color: #F9A825 !important; }
.light-theme .drawer-theme-toggle .fa-moon { color: var(--text-muted) !important; }

.drawer-toggle-pill {
  width: 28px;
  height: 15px;
  background: var(--grad-purple);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
  pointer-events: none;
}

.drawer-toggle-pill::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dark-theme .drawer-toggle-pill::after { left: 3px; }
.light-theme .drawer-toggle-pill::after { left: 16px; }

.drawer-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.drawer-close:hover { background: rgba(220,53,69,0.1); color: var(--pp-danger); }

/* Welcome card */
.drawer-welcome {
  margin: 16px 20px;
  background: var(--welcome-bg);
  border: 1px solid var(--balance-border);
  border-radius: 12px;
  padding: 16px;
}

.drawer-welcome-greeting {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.drawer-welcome-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2px 0 14px;
}

.drawer-balance-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-balance-card {
  background: var(--balance-bg);
  border: 1px solid var(--balance-border);
  border-radius: 8px;
  padding: 10px;
}

.drawer-balance-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.drawer-balance-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-top: 2px;
}

/* Drawer nav */
.drawer-nav {
  padding: 8px 12px;
  flex: 1;
}

.drawer-section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 8px 6px;
  margin-bottom: 4px;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 10px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.drawer-nav-item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.drawer-nav-item:hover {
  background: rgba(115,55,193,0.1);
  color: var(--pp-secondary);
}

.drawer-nav-item:hover i { color: var(--pp-secondary); }

.drawer-nav-item.active {
  background: rgba(115,55,193,0.14);
  color: var(--pp-secondary);
}

.drawer-nav-item.active i { color: var(--pp-secondary); }

.drawer-nav-item.danger { color: var(--pp-danger); }
.drawer-nav-item.danger i { color: var(--pp-danger); }
.drawer-nav-item.danger:hover { background: rgba(220,53,69,0.07); }

.drawer-divider {
  height: 1px;
  background: var(--divider);
  margin: 8px 0;
}

/* Drawer footer (guest auth) */
.drawer-footer,
#guest-auth-section.drawer-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  flex-shrink: 0;
}

.drawer-footer.guest-auth-section .auth-btn {
  flex: 1;
  min-width: 0;
  width: auto;
}

.drawer-btn-login {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(115,55,193,0.4);
  background: transparent;
  color: var(--text-primary);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.drawer-btn-login:hover { background: rgba(115,55,193,0.1); }

.drawer-btn-register {
  flex: 1;
  min-width: 0;
  background: var(--grad-purple);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(115,55,193,0.35);
  transition: filter 0.2s, transform 0.15s;
}

.drawer-btn-register:hover { filter: brightness(1.1); }



/* ─── Legacy overlay / drawer JS hooks ─── */
#mobile-menu-overlay.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
#mobile-menu-overlay.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#mobile-menu-overlay .mobile-menu-container.drawer-panel {
  transform: translateX(100%);
}
#mobile-menu-overlay.active .mobile-menu-container.drawer-panel {
  transform: translateX(0);
}

/* Auth visibility via Bootstrap d-none */
#auth-buttons.d-none { display: none !important; }
#auth-buttons:not(.d-none) { display: flex !important; align-items: center; gap: 8px; }
#wallet-dropdown-container.d-none,
#notification-dropdown-container.d-none,
#user-dropdown-container.d-none { display: none !important; }
#wallet-dropdown-container:not(.d-none),
#notification-dropdown-container:not(.d-none),
#user-dropdown-container:not(.d-none) { display: flex !important; }

/* ─── Header dropdown panels (Prestige design) ─── */
#site-header .dropdown-menu.pp-dropdown,
#site-header .dropdown-menu.glass-card.pp-dropdown {
  border-radius: 14px !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: var(--shadow-dropdown) !important;
  padding: 0 !important;
  margin-top: 10px !important;
  overflow: hidden;
  background: var(--bg-dropdown) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  z-index: 1060 !important;
  min-width: 0;
}

#site-header .dropdown-menu.pp-dropdown.show {
  display: block !important;
}

#site-header .pp-dropdown .dropdown-stripe {
  height: 3px;
  background: var(--grad-stripe);
  flex-shrink: 0;
}

#site-header .pp-dropdown .dropdown-body {
  padding: 16px;
}

#site-header .pp-dropdown.dropdown-cart { width: 300px; max-width: 92vw; }
#site-header .pp-dropdown.dropdown-wallet { width: 260px; max-width: 92vw; }
#site-header .pp-dropdown.dropdown-notif { width: 350px; max-width: 92vw; }
#site-header .pp-dropdown.dropdown-user { width: 220px; max-width: 92vw; }

#site-header .pp-dropdown .dd-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Cart */
#site-header .pp-dropdown .cart-empty,
#site-header .pp-dropdown .empty-cart-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 8px;
  text-align: center;
}

#site-header .pp-dropdown .cart-empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(115, 55, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--pp-secondary);
}

#site-header .pp-dropdown .empty-cart-message > .fa-shopping-cart,
#site-header .pp-dropdown .empty-cart-message > .fa-bag-shopping {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(115, 55, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px !important;
  color: var(--pp-secondary) !important;
  margin-bottom: 0 !important;
  padding: 14px;
  box-sizing: border-box;
}

#site-header .pp-dropdown .cart-empty p,
#site-header .pp-dropdown .empty-cart-message p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

#site-header .pp-dropdown .btn-dd-solid {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--grad-purple);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

#site-header .pp-dropdown .btn-dd-solid:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff !important;
}

#site-header .pp-dropdown .cart-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 0 !important;
}

#site-header .pp-dropdown .cart-item:last-of-type {
  border-bottom: none;
}

#site-header .pp-dropdown .cart-item-title,
#site-header .pp-dropdown .cart-item-price,
#site-header .pp-dropdown .cart-subtotal,
#site-header .pp-dropdown .cart-item .text-white {
  color: var(--text-primary) !important;
}

#site-header .pp-dropdown .cart-subtotal {
  border-top: 1px solid var(--divider) !important;
  padding-top: 12px !important;
  margin-top: 8px !important;
  font-family: var(--font-primary);
}

#site-header .pp-dropdown .cart-expiry-warning {
  background: rgba(115, 55, 193, 0.1) !important;
  border: 1px solid var(--balance-border) !important;
  color: var(--text-primary) !important;
  border-radius: 8px;
}

#site-header .pp-dropdown .btn-primary,
#site-header .pp-dropdown .btn-success {
  border-radius: 10px !important;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#site-header .pp-dropdown .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.65;
}

.light-theme #site-header .pp-dropdown .btn-close {
  filter: none;
  opacity: 0.5;
}

/* Cart dropdown remove button */
#site-header .pp-dropdown .cart-remove-btn {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

#site-header .pp-dropdown .cart-remove-btn:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.4);
  color: #f87171;
}

.light-theme #site-header .pp-dropdown .cart-remove-btn {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
  color: #666677;
}

.light-theme #site-header .pp-dropdown .cart-remove-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.35);
  color: #dc3545;
}

/* Wallet */
#site-header .pp-dropdown .balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--balance-bg);
  border: 1px solid var(--balance-border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
}

#site-header .pp-dropdown .balance-label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
}

#site-header .pp-dropdown .balance-amount,
#site-header .pp-dropdown .wallet-cash,
#site-header .pp-dropdown .wallet-credit {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary) !important;
}

#site-header .pp-dropdown .btn-dd-outline {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(115, 55, 193, 0.4);
  color: var(--pp-secondary) !important;
  border-radius: 10px;
  padding: 9px 12px;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

#site-header .pp-dropdown .btn-dd-outline:hover {
  background: rgba(115, 55, 193, 0.1);
  border-color: rgba(115, 55, 193, 0.6);
  color: var(--pp-secondary) !important;
}

/* Notifications */
#site-header .pp-dropdown .notif-list,
#site-header .pp-dropdown #notification-dropdown-content,
#site-header .pp-dropdown #notification-dropdown-content-mobile {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(115, 55, 193, 0.3) transparent;
}

#site-header .pp-dropdown .notif-item,
#site-header .pp-dropdown .notification-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  border-left: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  cursor: pointer;
  transition: background 0.15s;
}

#site-header .pp-dropdown .notif-item:last-child,
#site-header .pp-dropdown .notification-item:last-child {
  border-bottom: none;
}

#site-header .pp-dropdown .notification-item:hover {
  background: rgba(115, 55, 193, 0.06) !important;
}

#site-header .pp-dropdown .notif-dot,
#site-header .pp-dropdown .notification-item .unread-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-primary);
  margin-top: 5px;
  flex-shrink: 0;
}

#site-header .pp-dropdown .notification-icon {
  display: none;
}

#site-header .pp-dropdown .notification-content {
  flex: 1;
  min-width: 0;
}

#site-header .pp-dropdown .notif-text,
#site-header .pp-dropdown .notification-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary) !important;
  line-height: 1.4;
}

#site-header .pp-dropdown .notification-message {
  font-size: 12px;
  color: var(--text-muted) !important;
  line-height: 1.4;
  margin-top: 2px;
}

#site-header .pp-dropdown .notif-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

#site-header .pp-dropdown .dd-footer {
  display: flex;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--divider);
  margin-top: 4px;
}

#site-header .pp-dropdown .btn-dd-see-all,
#site-header .pp-dropdown .btn-dd-clear {
  flex: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  background: transparent;
}

#site-header .pp-dropdown .btn-dd-see-all {
  border: 1px solid rgba(115, 55, 193, 0.4);
  color: var(--pp-secondary) !important;
}

#site-header .pp-dropdown .btn-dd-see-all:hover {
  background: rgba(115, 55, 193, 0.1);
}

#site-header .pp-dropdown .btn-dd-clear {
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: var(--pp-danger) !important;
}

#site-header .pp-dropdown .btn-dd-clear:hover {
  background: rgba(220, 53, 69, 0.08);
}

#site-header .pp-dropdown .load-more-btn {
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Profile / user menu */
#site-header .pp-dropdown .dd-user-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 8px;
}

#site-header .pp-dropdown .dd-user-header--compact {
  padding-bottom: 12px;
  margin-bottom: 10px;
}

#site-header .pp-dropdown .dd-user-info-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

#site-header .pp-dropdown .dd-user-info-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

#site-header .pp-dropdown .dd-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary) !important;
  text-decoration: none;
  transition: background 0.15s;
  width: 100%;
  box-sizing: border-box;
}

#site-header .pp-dropdown .dd-menu-item i {
  width: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

#site-header .pp-dropdown .dd-menu-item:hover {
  background: rgba(115, 55, 193, 0.1);
  color: var(--text-primary) !important;
}

#site-header .pp-dropdown .dd-menu-item:hover i {
  color: var(--pp-secondary);
}

#site-header .pp-dropdown .dd-menu-item.danger {
  color: var(--pp-danger) !important;
}

#site-header .pp-dropdown .dd-menu-item.danger i {
  color: var(--pp-danger);
}

#site-header .pp-dropdown .dd-menu-item.danger:hover {
  background: rgba(220, 53, 69, 0.08);
}

#site-header .pp-dropdown .dd-divider {
  height: 1px;
  background: var(--divider);
  margin: 8px 0;
}

#site-header .pp-dropdown p,
#site-header .pp-dropdown .text-center p {
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-size: 14px;
}
#site-header .user-chip.pp-user-chip {
  padding: 7px 16px;
  gap: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary) !important;
  text-decoration: none;
}

#site-header .user-chip .user-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Ticker API content */
.ticker-strip.trustpilot-section { position: relative; }
#news-ticker-content .news-ticker-item,
#news-ticker-content .ticker-item {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  padding: 0 32px;
  letter-spacing: 0.02em;
  display: inline-block;
  white-space: nowrap;
}
#news-ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}

/* Fixed header — ticker + bar stack */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1040;
  display: flex;
  flex-direction: column;
}

#site-header .header-bar.navbar,
#site-header #main-navbar {
  padding: 0 !important;
}

#site-header .trustpilot-section.ticker-strip {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
}

#mobile-menu-overlay.mobile-menu-overlay {
  background: var(--bg-overlay);
  backdrop-filter: blur(3px);
}

@media (max-width: 991px) {
  #mobile-menu-overlay.mobile-menu-overlay {
    display: block;
  }
}

/* Mobile notification parent visibility */
.mobile-notif-wrap.d-none { display: none !important; }
.mobile-notif-wrap:not(.d-none) { display: flex !important; }

/* Theme toggle — match prestige-prizes-header.html exactly */
#site-header #theme-toggle.theme-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--toggle-track);
  border: 1px solid var(--toggle-border);
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
  margin: 0;
  width: auto;
  height: auto;
  box-shadow: none;
  color: inherit;
  transition: background 0.3s, border-color 0.3s;
}

#site-header #theme-toggle.theme-toggle:hover {
  background: var(--toggle-track);
  border-color: var(--toggle-border);
}

#site-header #theme-toggle.theme-toggle .t-icon {
  font-size: 11px !important;
  line-height: 1;
  display: inline-block !important;
  color: var(--text-muted);
  transition: color 0.2s;
}

#site-header #theme-toggle.theme-toggle .toggle-pill {
  width: 30px;
  height: 16px;
  background: var(--grad-purple);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}

#site-header #theme-toggle.theme-toggle .toggle-pill::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dark-theme #site-header #theme-toggle.theme-toggle .t-icon.sun { color: var(--text-muted); }
.dark-theme #site-header #theme-toggle.theme-toggle .t-icon.moon { color: var(--pp-lavender); }
.dark-theme #site-header #theme-toggle.theme-toggle .toggle-pill::after { left: 3px; }

.light-theme #site-header #theme-toggle.theme-toggle .t-icon.sun { color: #F9A825; }
.light-theme #site-header #theme-toggle.theme-toggle .t-icon.moon { color: var(--text-muted); }
.light-theme #site-header #theme-toggle.theme-toggle .toggle-pill::after { left: 17px; }

#site-header .header-nav .nav-link {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.03em;
  color: var(--text-nav) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  position: relative;
  text-transform: uppercase;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

#site-header .header-nav .nav-link::after {
  display: none !important;
  content: none !important;
}

#site-header .header-nav .nav-link:hover {
  color: var(--text-nav-hover) !important;
  text-decoration: none !important;
}

#site-header .header-nav .nav-link.active,
#site-header .header-nav .nav-link.pp-nav-active {
  color: var(--text-nav-active) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.dark-theme #site-header .header-nav .nav-item .nav-link {
  color: #FFFFFF !important;
}

.dark-theme #site-header .header-nav .nav-item .nav-link:hover {
  color: #FFFFFF !important;
}

.dark-theme #site-header .header-nav .nav-item .nav-link.active,
.dark-theme #site-header .header-nav .nav-item .nav-link.pp-nav-active {
  color: var(--pp-lavender) !important;
}

#site-header .drawer-footer a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.drawer-panel.mobile-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
}
