/* ================================================================
   QwikGlam — Couture Luxe Edition v7
   Palette: Deep Plum × Hermès Gold × Rich Rose × Ivory Cream
   Typography: Playfair Display + DM Sans + Cormorant Garamond
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── Design Tokens v7 — upgraded to couture authority palette ── */
:root {
  /* ── Darks: Deep Plum replaces navy — couture, not corporate ── */
  --qg-noir:          #0A0416;
  --qg-plum:          #1C0A2E;   /* Primary dark — upgraded from #1C0A1C */
  --qg-velvet:        #2E1650;   /* Section bg on dark */
  --qg-rose-dark:     #3D1A3A;

  /* ── Pinks: Rich Rose replaces baby pink on primary use ── */
  --qg-petal:         #F5DDE5;   /* Light accent bg only */
  --qg-blush:         #F2AABF;   /* Soft accent fills */
  --qg-rose:          #D4608A;   /* Rich Rose — primary emotional accent */
  --qg-berry:         #A83060;   /* Deep berry for hover states */

  /* ── Gold: Hermès Gold replaces generic champagne ── */
  --qg-gold:          #D4AF6A;   /* Hermès Gold — all CTAs + accents */
  --qg-gold-light:    #E8C97A;   /* Hover state */
  --qg-champagne:     #F0D898;   /* Highlight gold */
  --qg-pearl:         #FBF7F0;   /* Ivory Cream — bg default */

  /* ── Lavender: kept as supporting accent ── */
  --qg-lavender:      #D8C0E8;
  --qg-violet:        #A880C8;

  /* ── Backgrounds: Ivory Cream replaces pure white ── */
  --qg-bg:            #FBF7F0;   /* Ivory Cream — main bg */
  --qg-bg-warm:       #FFF9F4;   /* Warm near-white */
  --qg-bg-alt:        #F5EDE2;   /* Gold-tinted alternate sections */
  --qg-card-bg:       #FFFFFF;

  /* ── Text: warm wine tones, never cold black ── */
  --qg-ink:           #1A0A28;
  --qg-text:          #3A1C30;   /* Body text — deep wine */
  --qg-text-soft:     #6A4060;
  --qg-text-muted:    #A07090;

  /* ── Gradients: solid plum+gold preferred; gradient = accent only ── */
  --qg-grad-gold:     linear-gradient(135deg, #D4AF6A 0%, #F0D898 50%, #D4AF6A 100%);
  --qg-grad-rose:     linear-gradient(135deg, #D4608A 0%, #F2AABF 60%, #D4AF6A 100%);
  --qg-grad-luxe:     linear-gradient(135deg, #A83060 0%, #D4608A 40%, #D4AF6A 100%);
  --qg-grad-petal:    linear-gradient(135deg, #F2AABF 0%, #F0D898 100%);
  --qg-grad-dark:     linear-gradient(135deg, #1C0A2E 0%, #2E1650 50%, #1C0A2E 100%);

  /* ── Shadows ── */
  --qg-shadow-sm:     0 4px 16px rgba(28,10,46,.08);
  --qg-shadow:        0 12px 40px rgba(28,10,46,.12);
  --qg-shadow-gold:   0 8px 32px rgba(212,175,106,.30);
  --qg-shadow-rose:   0 8px 32px rgba(212,96,138,.22);
  --qg-shadow-deep:   0 20px 60px rgba(10,4,22,.45);

  /* ── Shape ── */
  --qg-radius:        20px;
  --qg-radius-lg:     32px;
  --qg-radius-card:   24px;

  /* ── Layout ── */
  --qg-max:           1240px;
  --qg-font:          "DM Sans", sans-serif;
  --qg-font-serif:    "Playfair Display", serif;
  --qg-font-elegant:  "Cormorant Garamond", serif;
}

/* ── Global Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* FIX: prevents any anchor / smooth-scroll landing under the fixed header.
     --qg-header-h is set by qg-global.js (36px bar + 72px inner = 108px).
     Fallback 108px matches the actual measured total. */
  scroll-padding-top: var(--qg-header-h, 108px);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--qg-font);
  background: var(--qg-bg);
  color: var(--qg-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; font-family: var(--qg-font); }

/* ── Custom Cursor DISABLED — restored to native OS cursor ── */
#qg-cursor, #qg-cursor-ring { display: none !important; }

/* ── Luxury Loader ── */
#qgLuxuryLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--qg-plum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: opacity .5s ease, visibility .5s ease;
}

#qgLuxuryLoader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.qg-loader-logo {
  font-family: var(--qg-font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.qg-loader-logo em {
  font-style: italic;
  color: var(--qg-gold);
}

.qg-loader-tagline {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212,175,106,.6);
}

.qg-loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 12px;
}

.qg-loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--qg-gold);
  border-radius: 99px;
  animation: qgLoaderBar 1.8s ease-in-out infinite;
}

@keyframes qgLoaderBar {
  0%   { margin-left: -40%; }
  100% { margin-left: 140%; }
}

/* ── Announcement Bar ── */
.qg-announcement-bar {
  position: relative;
  background: var(--qg-plum);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  letter-spacing: .05em;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  transition: max-height .35s ease, opacity .35s ease;
  max-height: 36px;
}

.qg-announcement-bar.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.qg-announcement-bar__inner {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.qg-announcement-bar__track {
  display: inline-flex;
  gap: 2.5rem;
  animation: qgTickerScroll 32s linear infinite;
}

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

.qg-announcement-bar__sep { opacity: .3; }

.qg-announcement-bar__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  padding: 0 14px;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.qg-announcement-bar__close:hover { color: #fff; }

/* ── Global Header ── */
.qg-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 9990;
  transition: top .36s ease, background .3s ease, box-shadow .3s ease;
}

body.qg-bar-hidden .qg-header { top: 0; }

.qg-header.scrolled {
  background: rgba(28,10,46,.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 2px 24px rgba(10,4,22,.3);
}

.qg-header.hide  { transform: translateY(-110%); }
.qg-header.show  { transform: translateY(0); }

.qg-header__inner {
  max-width: var(--qg-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── Logo ── */
.qg-logo a {
  font-family: var(--qg-font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.qg-logo a span { font-style: italic; color: var(--qg-gold); }
.qg-logo-jewel  { color: var(--qg-gold); font-size: 1rem; }

/* ── City Selector ── */
.qg-city-selector { position: relative; }

.qg-city-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212,175,106,.2);
  border-radius: 99px;
  padding: 5px 12px;
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}

.qg-city-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(212,175,106,.4);
}

.qg-city-caret {
  transition: transform .25s;
}

.qg-city-btn[aria-expanded="true"] .qg-city-caret {
  transform: rotate(180deg);
}

.qg-city-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--qg-plum);
  border: 1px solid rgba(212,175,106,.2);
  border-radius: 16px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 16px 48px rgba(10,4,22,.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  z-index: 100;
}

.qg-city-option {
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: .8rem;
  text-align: left;
  transition: background .15s, color .15s;
}

.qg-city-option:hover {
  background: rgba(212,175,106,.15);
  color: var(--qg-gold);
}

/* ── Navigation ── */
.qg-nav { margin-left: auto; }

.qg-nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.qg-nav__menu li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.80);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}

.qg-nav__menu li a:hover,
.qg-nav__menu .current-menu-item a {
  color: var(--qg-gold);
}

.qg-nav__indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: var(--qg-gold);
  border-radius: 99px;
  transition: all .25s ease;
  opacity: 0;
}

/* ── Header Actions ── */
.qg-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qg-header__search-btn,
.qg-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}

.qg-header__search-btn:hover,
.qg-header__icon-btn:hover {
  background: rgba(212,175,106,.15);
  border-color: rgba(212,175,106,.3);
  color: var(--qg-gold);
}

/* ── KEY CHANGE: CTA buttons — solid plum+gold, no gradient ── */
.qg-btn--glow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgba(212,175,106,.4);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s, border-color .2s, color .2s;
}

.qg-btn--glow:hover {
  background: rgba(212,175,106,.12);
  border-color: var(--qg-gold);
  color: var(--qg-gold);
}

.qg-btn--book-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 12px;
  background: var(--qg-gold);        /* Solid gold bg */
  border: 1.5px solid var(--qg-gold);
  color: var(--qg-plum);             /* Deep plum text on gold */
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s, box-shadow .2s, transform .2s;
}

.qg-btn--book-now:hover {
  background: var(--qg-champagne);
  box-shadow: 0 6px 24px rgba(212,175,106,.4);
  transform: translateY(-1px);
}

/* ── Search Drawer ── */
.qg-search-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(28,10,46,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,106,.15);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.qg-search-drawer.open {
  max-height: 160px;
  padding: 20px clamp(1.25rem, 3vw, 2rem);
}

.qg-search-drawer__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 16px;
}

#qgSearchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--qg-font-serif);
  font-size: 1.1rem;
  padding: 4px 0;
}

#qgSearchInput::placeholder { color: rgba(255,255,255,.3); }

.qg-search-drawer__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  display: flex;
  transition: color .2s;
}

.qg-search-drawer__close:hover { color: var(--qg-gold); }

.qg-search-drawer__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}

.qg-search-suggestion {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.qg-search-suggestion:hover {
  background: rgba(212,175,106,.15);
  border-color: rgba(212,175,106,.3);
  color: var(--qg-gold);
}

/* ── Mobile Menu Toggle ── */
.qg-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}

.qg-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .3s ease;
}

.qg-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.qg-menu-toggle.active span:nth-child(2) { opacity: 0; }
.qg-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Nav Overlay (mobile) ── */
#qgNavOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,22,.6);
  backdrop-filter: blur(4px);
  z-index: 9988;
  opacity: 0;
  transition: opacity .3s;
}

#qgNavOverlay.active { display: block; opacity: 1; }

/* ── Global CTA Buttons ── */
.qg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: var(--qg-font);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  transition: all .25s ease;
  cursor: pointer;
}

/* Primary: solid plum + gold text — the luxury signal */
.qg-btn--primary {
  background: var(--qg-plum);
  color: var(--qg-gold);
  border: 1.5px solid var(--qg-gold);
}

.qg-btn--primary:hover {
  background: #2E1650;
  box-shadow: var(--qg-shadow-gold);
  transform: translateY(-2px);
  color: var(--qg-champagne);
}

/* Gold: gold bg + plum text — the call to action */
.qg-btn--gold {
  background: var(--qg-gold);
  color: var(--qg-plum);
  border: 1.5px solid var(--qg-gold);
}

.qg-btn--gold:hover {
  background: var(--qg-champagne);
  box-shadow: var(--qg-shadow-gold);
  transform: translateY(-2px);
  color: var(--qg-plum);
}

.qg-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
}

.qg-btn--ghost:hover {
  border-color: var(--qg-gold);
  color: var(--qg-gold);
  background: rgba(212,175,106,.08);
}

.qg-btn--outline-gold {
  background: transparent;
  border: 1.5px solid var(--qg-gold);
  color: var(--qg-gold);
}

.qg-btn--outline-gold:hover {
  background: var(--qg-gold);
  color: var(--qg-plum);
}

/* ── Section Eyebrow ── */
.qg-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--qg-gold);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.2rem;
}

.qg-eyebrow::before,
.qg-eyebrow::after {
  content: "—";
  position: absolute;
  color: rgba(212,175,106,.45);
  top: 50%; transform: translateY(-50%);
  font-size: .7em;
}

.qg-eyebrow::before { left: 0; }
.qg-eyebrow::after  { right: 0; }

/* ── Container ── */
.qg-container {
  max-width: var(--qg-max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

.qg-center { text-align: center; }

/* ── Bottom Nav (Mobile) ── */
.qg-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9980;
  background: rgba(28,10,46,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,106,.12);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.qg-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0; padding: 0;
}

.qg-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 12px;
  transition: color .2s;
}

.qg-bottom-nav a svg { width: 20px; height: 20px; }
.qg-bottom-nav a.active { color: var(--qg-gold); }

/* ── Social Icons ── */
.qg-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,106,.2);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}

.qg-social:hover {
  color: var(--qg-gold);
  border-color: var(--qg-gold);
  background: rgba(212,175,106,.1);
}

/* ── Concierge Modal ── */
.qg2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99990;
}

.qg2-modal.open { display: block; }
.qg2-backdrop   { position: absolute; inset: 0; background: rgba(10,4,22,.65); backdrop-filter: blur(6px); }

.qg2-panel {
  position: absolute;
  bottom: 0; right: 0;
  width: min(440px, 100vw);
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 2rem;
  box-shadow: var(--qg-shadow-deep);
}

.qg2-header { margin-bottom: 1.5rem; }
.qg2-header h3 { font-family: var(--qg-font-serif); color: var(--qg-plum); margin: 0 0 .4rem; }
.qg2-header p  { color: var(--qg-text-soft); font-size: .9rem; margin: 0; }

.qg2-textarea {
  width: 100%;
  min-height: 120px;
  border: 1.5px solid rgba(212,175,106,.3);
  border-radius: 14px;
  padding: 14px;
  font-family: var(--qg-font);
  font-size: .9rem;
  color: var(--qg-text);
  resize: none;
  outline: none;
  transition: border-color .2s;
}

.qg2-textarea:focus { border-color: var(--qg-gold); }

.qg2-actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

/* ── WhatsApp Floating Button ── */
.qg-wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9970;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 99px;
  padding: 11px 20px 11px 14px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: qgWaPulse 3s ease-in-out infinite;
}

.qg-wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}

@keyframes qgWaPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.25); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,0); }
}

.qg-wa-float svg { flex-shrink: 0; }

/* ── Back to Top ── */
#qgBackToTop {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9970;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--qg-plum);
  border: 1.5px solid rgba(212,175,106,.3);
  color: var(--qg-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(12px);
}

#qgBackToTop.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#qgBackToTop:hover { background: #2E1650; }

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .qg-header__inner { gap: 1rem; }
  .qg-nav { display: none; }
  .qg-menu-toggle { display: flex; }

  .qg-nav.active {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--qg-plum);
    border-right: 1px solid rgba(212,175,106,.15);
    z-index: 9989;
    overflow-y: auto;
    padding: 80px 0 40px;
    box-shadow: 24px 0 60px rgba(10,4,22,.4);
  }

  .qg-nav.active .qg-nav__menu {
    flex-direction: column;
    gap: 0;
  }

  .qg-nav.active .qg-nav__menu li a {
    padding: 14px 28px;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }

  .qg-bottom-nav { display: block; }

  .qg-wa-float { bottom: 80px; }
  #qgBackToTop  { bottom: 130px; }
}

@media (max-width: 480px) {
  .qg-btn--glow  { display: none; }
  .qg-wa-float span { display: none; }
  .qg-wa-float { padding: 12px; border-radius: 50%; bottom: 80px; }
}
/* QwikGlam — Mobile Header Fix v6 */
@media (max-width: 900px) {
  .qg-announcement-bar { height: 32px !important; max-height: 32px !important; font-size: .65rem !important; }
  .qg-header { top: 32px !important; }
  body.qg-bar-hidden .qg-header { top: 0 !important; }
  .qg-header__inner { height: 56px !important; padding: 0 1rem !important; gap: .5rem !important; }
  .qg-logo a { font-size: 1.3rem !important; }
  .qg-city-btn { padding: 4px 10px !important; font-size: .7rem !important; gap: 4px !important; }
  .qg-header__actions { display: flex !important; align-items: center !important; gap: 6px !important; margin-left: auto !important; flex-shrink: 0 !important; }
  .qg-header__search-btn,
  .qg-header__icon-btn { display: flex !important; width: 34px !important; height: 34px !important; flex-shrink: 0 !important; min-width: 34px !important; }
  .qg-btn--glow { display: none !important; }
  .qg-btn--book-now { display: none !important; }
  .qg-menu-toggle { display: flex !important; order: 99 !important; margin-left: 0 !important; padding: 4px !important; flex-shrink: 0 !important; }
  .qg-bottom-nav { display: block !important; z-index: 9980 !important; }
}
@media (max-width: 430px) {
  .qg-announcement-bar { height: 28px !important; max-height: 28px !important; font-size: .62rem !important; }
  .qg-header { top: 28px !important; }
  body.qg-bar-hidden .qg-header { top: 0 !important; }
  .qg-header__inner { height: 52px !important; padding: 0 .85rem !important; }
  .qg-logo a { font-size: 1.22rem !important; }
}