/* ================================================================
   QwikGlam — Header + Footer Couture CSS v7
   Deep Plum × Hermès Gold × Rich Rose × Ivory Cream
   Palette principle: solid plum+gold = authority, not gradient soup
   ================================================================ */

/* ================================================================
   HEADER ENHANCEMENTS — city dropdown + search upgrades
   (Base header styles are in qg-global.css)
   ================================================================ */

/* ── City dropdown: upgraded ── */
.qg-city-detect {
  width: 100%;
  background: rgba(212,175,106,.08);
  border: 1px solid rgba(212,175,106,.2);
  border-radius: 10px;
  padding: 9px 14px;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  transition: background .2s, border-color .2s;
}

.qg-city-detect:hover {
  background: rgba(212,175,106,.14);
  border-color: rgba(212,175,106,.35);
  color: var(--qg-gold, #D4AF6A);
}

.qg-city-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 8px 0;
}

.qg-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.qg-city-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  text-align: left;
  transition: background .15s, color .15s;
}

.qg-city-option span {
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  font-weight: 500;
}

.qg-city-option:hover {
  background: rgba(212,175,106,.12);
  color: var(--qg-gold, #D4AF6A);
}

.qg-city-option:hover span { color: rgba(212,175,106,.5); }

.qg-city-footer {
  padding: 8px 12px 4px;
  font-size: .65rem;
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 6px;
}

/* ── Search: upgraded drawer ── */
.qg-search-drawer__body {
  padding: 16px clamp(1.25rem, 3vw, 2rem) 20px;
}

.qg-search-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin: 0 0 12px;
}

.qg-search-kbd {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: .65rem;
  font-family: var(--qg-font-mono, monospace);
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.qg-search-categories {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.qg-search-cat {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.qg-search-cat:hover {
  background: rgba(212,175,106,.1);
  border-color: rgba(212,175,106,.25);
  color: var(--qg-gold, #D4AF6A);
}

.qg-search-cat__icon { font-size: 1rem; }

#qgSearchOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,22,.5);
  z-index: 9989;
  backdrop-filter: blur(2px);
}

#qgSearchOverlay.active { display: block; }

.qg-search-section {
  animation: qgFadeIn .2s ease;
}

@keyframes qgFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }


/* ================================================================
   FOOTER CORE
   ================================================================ */
.qg-footer {
  position: relative;
  background: var(--qg-plum, #1C0A2E);
  color: rgba(255,245,250,.85);
  font-family: var(--qg-font, "DM Sans", sans-serif);
  overflow: hidden;
}

/* Gold top border — the luxury signature line */
.qg-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,106,.2) 10%,
    rgba(212,175,106,.9) 30%,
    rgba(212,96,138,.6) 45%,
    rgba(212,175,106,.95) 55%,
    rgba(212,96,138,.6) 65%,
    rgba(212,175,106,.9) 80%,
    rgba(212,175,106,.2) 92%,
    transparent 100%
  );
  position: relative;
  z-index: 3;
}

/* Ambient mesh */
.qg-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(212,175,106,.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 90% 50%, rgba(212,96,138,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 85%, rgba(46,22,80,.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ambient Orbs */
.qg-footer__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0;
  animation: qgOrbPulse 16s ease-in-out infinite;
  z-index: 1;
}

.qg-footer__orb--1 {
  width: 500px; height: 500px;
  top: -80px; left: -80px;
  background: radial-gradient(circle, rgba(212,175,106,.18) 0%, transparent 70%);
  animation-delay: 0s;
}

.qg-footer__orb--2 {
  width: 400px; height: 400px;
  top: 10%; right: -60px;
  background: radial-gradient(circle, rgba(212,96,138,.14) 0%, transparent 70%);
  animation-delay: 6s;
}

.qg-footer__orb--3 {
  width: 350px; height: 350px;
  bottom: 15%; left: 35%;
  background: radial-gradient(circle, rgba(212,175,106,.1) 0%, transparent 70%);
  animation-delay: 11s;
}

@keyframes qgOrbPulse {
  0%, 100% { opacity: 0; transform: scale(.9); }
  45%       { opacity: 1; transform: scale(1.04); }
  70%       { opacity: .6; transform: scale(1.01); }
}


/* ================================================================
   INNER CIRCLE MEMBERSHIP BANNER
   ================================================================ */
.qg-footer__membership-banner {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFF9F5 40%, #FFFBFE 70%, #FFF5F8 100%);
  border-top: 1px solid rgba(212,84,122,.1);
  border-bottom: 1px solid rgba(201,168,108,.1);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.qg-footer__membership-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.qg-membership-banner__text { flex: 1; min-width: 220px; }

.qg-membership-banner__eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(176,48,96,.65);
  margin-bottom: .6rem;
}

.qg-membership-banner__text h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #2A0E22;
  margin: 0 0 .5rem;
  line-height: 1.2;
}

.qg-membership-banner__text h3 em {
  font-style: italic;
  background: linear-gradient(135deg, #D4547A, #C9A86C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qg-membership-banner__text p {
  font-size: .88rem;
  line-height: 1.65;
  color: #9A6080;
  margin: 0;
}

.qg-membership-banner__plans {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}

.qg-mb-plan {
  background: rgba(255,255,255,.9);
  border: 1.5px solid rgba(212,84,122,.12);
  border-radius: 16px;
  padding: 18px 20px;
  min-width: 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(42,14,34,.06);
}

.qg-mb-plan:hover {
  border-color: rgba(212,84,122,.3);
  background: #fff;
  box-shadow: 0 8px 28px rgba(42,14,34,.1);
}

.qg-mb-plan--featured {
  border-color: #C9A86C;
  background: rgba(201,168,108,.07);
  box-shadow: 0 6px 24px rgba(201,168,108,.18);
}

.qg-mb-plan__label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(90,46,72,.5);
}

.qg-mb-plan--featured .qg-mb-plan__label { color: #8A6B2A; }

.qg-mb-plan__price {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2A0E22;
  line-height: 1;
}

.qg-mb-plan__price span {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(42,14,34,.4);
  font-family: var(--qg-font, "DM Sans", sans-serif);
}

.qg-mb-plan__perk {
  font-size: .72rem;
  color: #9A6080;
  line-height: 1.4;
}

.qg-membership-banner__cta { flex-shrink: 0; }


/* ================================================================
   PROMO STRIP — Gift + App
   ================================================================ */
.qg-footer__promo-strip {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1240px;
  margin: 0 auto;
}

.qg-footer__promo-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qg-promo-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,106,.15);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
  transition: border-color .3s, background .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.qg-promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 50%, rgba(212,175,106,.06) 0%, transparent 70%);
  pointer-events: none;
}

.qg-promo-card:hover {
  border-color: rgba(212,175,106,.3);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}

.qg-promo-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212,175,106,.25));
}

.qg-promo-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qg-promo-card__title {
  font-family: "Playfair Display", serif;
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,245,250,.9);
}

.qg-promo-card__desc {
  font-size: .78rem;
  color: rgba(255,245,250,.4);
  line-height: 1.5;
}

/* Gold CTA — solid, not gradient */
.qg-promo-card__btn {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 99px;
  background: var(--qg-gold, #D4AF6A);
  color: var(--qg-plum, #1C0A2E);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .2s;
}

.qg-promo-card__btn:hover {
  background: #E8C97A;
  box-shadow: 0 6px 20px rgba(212,175,106,.35);
  transform: translateY(-2px);
  color: var(--qg-plum, #1C0A2E);
}

.qg-promo-app-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.qg-promo-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(212,175,106,.2);
  border-radius: 10px;
  background: rgba(212,175,106,.06);
  color: rgba(240,222,184,.7);
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
}

.qg-promo-app-btn:hover {
  border-color: rgba(212,175,106,.45);
  background: rgba(212,175,106,.12);
  color: var(--qg-gold, #D4AF6A);
  transform: translateX(2px);
}


/* ================================================================
   TRUST BADGES
   ================================================================ */
.qg-footer__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(212,175,106,.08);
  border-bottom: 1px solid rgba(212,175,106,.08);
}

.qg-trust__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2.2rem;
  flex: 1;
  min-width: 180px;
  justify-content: center;
  transition: transform .25s;
}

.qg-trust__badge:hover { transform: translateY(-2px); }

.qg-trust__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(212,175,106,.1);
  border: 1px solid rgba(212,175,106,.25);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212,175,106,.1);
}

.qg-trust__badge strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--qg-gold, #D4AF6A);
  margin-bottom: 2px;
}

.qg-trust__badge span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}

.qg-trust__divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.06);
  align-self: center;
  flex-shrink: 0;
}


/* ================================================================
   FOOTER TOP — Brand + Nav
   ================================================================ */
.qg-footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
  position: relative;
  z-index: 2;
}

.qg-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.qg-footer-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .25em;
  line-height: 1;
  letter-spacing: -.01em;
}

.qg-footer-logo em {
  font-style: italic;
  color: var(--qg-gold, #D4AF6A);
}

.qg-footer-logo__jewel {
  font-size: .4em;
  color: var(--qg-gold, #D4AF6A);
  display: inline-block;
  animation: qgJewelSpin 8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(212,175,106,.4));
}

@keyframes qgJewelSpin {
  0%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
  50%       { opacity: .6; transform: rotate(180deg) scale(.8); }
}

.qg-footer-brand__tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* WhatsApp support pill */
.qg-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 99px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.2);
  color: rgba(37,211,102,.8);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  width: fit-content;
}

.qg-footer__whatsapp:hover {
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.4);
  color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.12);
}

/* Social icons */
.qg-footer__social {
  display: flex;
  gap: 8px;
}

.qg-social {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,106,.15);
  color: rgba(255,255,255,.45);
  transition: all .3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.qg-social::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,106,.2), rgba(212,96,138,.15));
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
}

.qg-social:hover::before { opacity: 1; }

.qg-social svg {
  width: 16px; height: 16px;
  position: relative; z-index: 1;
}

.qg-social:hover {
  border-color: rgba(212,175,106,.4);
  color: var(--qg-gold, #D4AF6A);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(212,175,106,.15);
}

/* Footer Nav */
.qg-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.qg-footer-nav__group h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--qg-gold, #D4AF6A);
  margin: 0 0 1.2rem;
  position: relative;
  display: inline-block;
}

.qg-footer-nav__group h4::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 20px; height: 1.5px;
  background: rgba(212,96,138,.6);
  border-radius: 99px;
}

.qg-footer-nav__group ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.qg-footer-nav__group a {
  font-size: .85rem;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .25s, padding-left .25s;
}

.qg-footer-nav__group a::before {
  content: '✦';
  font-size: .45rem;
  color: transparent;
  transition: color .25s, transform .25s;
  transform: scale(0);
}

.qg-footer-nav__group a:hover {
  color: rgba(255,255,255,.82);
  padding-left: .25rem;
}

.qg-footer-nav__group a:hover::before {
  color: rgba(212,175,106,.6);
  transform: scale(1);
}


/* ================================================================
   NEWSLETTER
   ================================================================ */
.qg-footer__newsletter {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 4vw, 4rem);
  max-width: 1240px;
  margin: 0 auto;
}

.qg-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.5rem 3rem;
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,106,.18);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* Inner top highlight */
.qg-newsletter__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,96,138,.5) 30%,
    rgba(212,175,106,.7) 50%,
    rgba(212,96,138,.5) 70%,
    transparent
  );
}

.qg-newsletter__copy { flex: 1; }

.qg-newsletter__eyebrow {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212,175,106,.65);
  margin-bottom: .6rem;
}

.qg-newsletter__copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 0 0 .4rem;
}

.qg-newsletter__copy p {
  font-size: .85rem;
  color: rgba(255,255,255,.38);
  margin: 0;
  line-height: 1.6;
}

.qg-newsletter__form { flex: 1; max-width: 440px; }

.qg-newsletter__field {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,106,.18);
  border-radius: 99px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.qg-newsletter__field:focus-within {
  border-color: rgba(212,175,106,.45);
  box-shadow: 0 0 0 4px rgba(212,175,106,.07);
}

.qg-newsletter__field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: .9rem 1.4rem;
  font-family: var(--qg-font, "DM Sans", sans-serif);
  font-size: .85rem;
  color: rgba(255,255,255,.88);
}

.qg-newsletter__field input::placeholder { color: rgba(255,255,255,.25); }

/* Solid gold button — not gradient */
.qg-newsletter__field button {
  padding: .7rem 1.4rem;
  border-radius: 99px;
  margin: 4px;
  background: var(--qg-gold, #D4AF6A);
  border: none;
  color: var(--qg-plum, #1C0A2E);
  font-family: var(--qg-font, "DM Sans", sans-serif);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
}

.qg-newsletter__field button svg { width: 12px; height: 12px; }

.qg-newsletter__field button:hover {
  background: #E8C97A;
  box-shadow: 0 4px 18px rgba(212,175,106,.3);
  transform: scale(1.02);
}

.qg-newsletter__note {
  font-size: .7rem;
  color: rgba(255,255,255,.2);
  margin: .6rem 0 0;
  padding-left: 1rem;
}


/* ================================================================
   CITIES COVERAGE
   ================================================================ */
.qg-footer__cities {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(212,175,106,.07);
  border-bottom: 1px solid rgba(212,175,106,.07);
  padding: 14px clamp(1.25rem, 4vw, 2.5rem);
}

.qg-footer__cities-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 1240px;
  margin: 0 auto;
}

.qg-footer__cities-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(212,175,106,.5);
  white-space: nowrap;
  margin-right: 4px;
  flex-shrink: 0;
}

.qg-footer__city-pill {
  padding: 3px 12px;
  border: 1px solid rgba(212,175,106,.1);
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.3);
  transition: all .2s;
  cursor: default;
}

.qg-footer__city-pill:hover {
  border-color: rgba(212,175,106,.28);
  color: rgba(255,255,255,.65);
  background: rgba(212,175,106,.05);
}

.qg-footer__city-more {
  color: rgba(212,175,106,.5);
  border-color: rgba(212,175,106,.15);
  cursor: pointer;
}

.qg-footer__city-more:hover { color: var(--qg-gold, #D4AF6A); }


/* ================================================================
   PRESS LOGOS
   ================================================================ */
.qg-footer__press {
  position: relative;
  z-index: 2;
  padding: 18px clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(212,175,106,.06);
}

.qg-footer__press-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.qg-footer__press-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(212,175,106,.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.qg-footer__press-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.qg-footer__press-logo {
  font-family: "Playfair Display", serif;
  font-size: .85rem;
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,.18);
  letter-spacing: .03em;
  transition: color .25s;
  cursor: default;
}

.qg-footer__press-logo:hover { color: rgba(255,255,255,.5); }


/* ================================================================
   BOTTOM BAR
   ================================================================ */
.qg-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.4rem clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.qg-footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  margin: 0;
  letter-spacing: .02em;
}

.qg-footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qg-footer__legal {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}

.qg-footer__legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .2s;
}

.qg-footer__legal a:hover { color: rgba(212,175,106,.7); }
.qg-footer__legal span    { color: rgba(255,255,255,.1); font-size: .65rem; }

.qg-footer__payments {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qg-payment-badge {
  padding: 3px 8px;
  border: 1px solid rgba(212,175,106,.18);
  border-radius: 6px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(212,175,106,.4);
  background: rgba(212,175,106,.04);
}


/* ================================================================
   CONCIERGE FLOATING BUTTON
   ================================================================ */
.qg-concierge {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 8500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .28rem;
  padding: .9rem 1rem .72rem;
  border-radius: 18px;
  background: var(--qg-plum, #1C0A2E);
  border: 1px solid rgba(212,175,106,.4);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 32px rgba(10,4,22,.5), 0 0 20px rgba(212,175,106,.08);
  animation: qgConciergeFloat 5s ease-in-out infinite;
}

.qg-concierge::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,175,106,.1), rgba(212,96,138,.08));
  pointer-events: none;
}

.qg-concierge:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,106,.7);
  background: #2E1650;
  box-shadow: 0 16px 48px rgba(10,4,22,.55), 0 0 40px rgba(212,175,106,.18);
}

.qg-concierge__icon {
  color: var(--qg-gold, #D4AF6A);
  position: relative; z-index: 1;
}

.qg-concierge__icon svg { width: 22px; height: 22px; }

.qg-concierge__label {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--qg-gold, #D4AF6A);
  position: relative; z-index: 1;
}

@keyframes qgConciergeFloat {
  0%, 100% { box-shadow: 0 8px 32px rgba(10,4,22,.5), 0 0 0 0 rgba(212,175,106,.2); }
  50%       { box-shadow: 0 8px 32px rgba(10,4,22,.5), 0 0 0 8px rgba(212,175,106,.04); }
}


/* ================================================================
   CONCIERGE MODAL
   ================================================================ */
.qg2-modal {
  position: fixed; inset: 0;
  z-index: 99000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}

.qg2-modal.open { opacity: 1; visibility: visible; }

.qg2-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,4,22,.78);
  backdrop-filter: blur(12px);
}

.qg2-window--concierge {
  width: min(480px, 94vw);
  background: linear-gradient(155deg, #1C0A2E 0%, #2E1650 50%, #1C0A2E 100%);
  border: 1px solid rgba(212,175,106,.3);
  border-radius: 28px;
  padding: 2.5rem 2.4rem 2.2rem;
  box-shadow: 0 40px 100px rgba(10,4,22,.8), 0 0 60px rgba(212,175,106,.06);
  position: relative; z-index: 1;
  transform: translateY(24px) scale(.96);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.qg2-modal.open .qg2-window--concierge { transform: translateY(0) scale(1); }

/* Top border glow */
.qg2-window--concierge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,175,106,.6) 30%,
    rgba(212,96,138,.7) 50%,
    rgba(212,175,106,.6) 70%,
    transparent
  );
}

.qg2-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(212,175,106,.08);
  border: 1px solid rgba(212,175,106,.2);
  color: rgba(212,175,106,.55);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s;
  z-index: 2;
}

.qg2-close:hover {
  background: rgba(212,175,106,.15);
  border-color: rgba(212,175,106,.5);
  color: var(--qg-gold, #D4AF6A);
}

.qg2-close svg { width: 13px; height: 13px; }

.qg2-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}

.qg2-orb {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--qg-gold, #D4AF6A);
  margin-bottom: .6rem;
  filter: drop-shadow(0 0 10px rgba(212,175,106,.4));
  animation: qgJewelSpin 6s ease-in-out infinite;
}

.qg2-window--concierge h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--qg-gold, #D4AF6A);
  margin: 0 0 .4rem;
}

.qg2-window--concierge p {
  font-size: .84rem;
  color: rgba(255,255,255,.42);
  margin: 0;
}

/* Quick action buttons */
.qg2-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}

.qg2-quick-btn {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,106,.18);
  background: rgba(212,175,106,.06);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-align: left;
}

.qg2-quick-btn:hover {
  border-color: rgba(212,175,106,.4);
  background: rgba(212,175,106,.12);
  color: rgba(255,255,255,.88);
  transform: translateY(-1px);
}

#qgConciergeMsg {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,106,.2);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  color: rgba(255,255,255,.85);
  font-family: var(--qg-font, "DM Sans", sans-serif);
  font-size: .87rem;
  resize: none;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  margin-bottom: 1.2rem;
  display: block;
  position: relative; z-index: 1;
}

#qgConciergeMsg::placeholder { color: rgba(212,175,106,.25); }

#qgConciergeMsg:focus {
  border-color: rgba(212,175,106,.45);
  box-shadow: 0 0 0 4px rgba(212,175,106,.07);
}

.qg2-actions {
  display: flex;
  gap: .8rem;
  justify-content: flex-end;
  position: relative; z-index: 1;
}


/* ================================================================
   MOBILE BOTTOM NAV
   ================================================================ */
.qg-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: rgba(28,10,46,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212,175,106,.1);
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}

.qg-bottom-nav__inner {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}

.qg-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 14px 8px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
  flex: 1;
  text-align: center;
}

.qg-bottom-nav a svg { transition: transform .2s; }
.qg-bottom-nav a:hover { color: rgba(255,255,255,.7); }
.qg-bottom-nav a:hover svg { transform: translateY(-1px); }
.qg-bottom-nav a.active { color: var(--qg-gold, #D4AF6A); }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .qg-footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .qg-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .qg-footer__membership-inner { flex-wrap: wrap; }
}

@media (max-width: 860px) {
  .qg-footer__promo-strip-inner { grid-template-columns: 1fr; }
  .qg-newsletter__inner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
  .qg-newsletter__form { max-width: 100%; width: 100%; }
  .qg-trust__divider { display: none; }
  .qg-trust__badge { padding: .8rem; min-width: 150px; }
  .qg-footer__bottom { flex-direction: column; text-align: center; }
  .qg-footer__bottom-right { justify-content: center; }
  .qg-footer__press-inner { justify-content: center; }
  .qg-footer__cities-inner { justify-content: center; }
  .qg-bottom-nav { display: block; }
  .qg-concierge { bottom: 80px; right: 16px; }
}

@media (max-width: 560px) {
  .qg-footer__nav { grid-template-columns: 1fr 1fr; }
  .qg-footer__trust { flex-wrap: wrap; gap: 1rem; }
  .qg-membership-banner__plans { flex-direction: column; }
  .qg2-quick-actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .qg-promo-card { flex-wrap: wrap; }
  .qg-promo-card__btn { width: 100%; text-align: center; justify-content: center; }
  /* Keep 2-col nav even on small phones — there is enough horizontal space */
  .qg-footer__nav { grid-template-columns: 1fr 1fr !important; }
}
/* ================================================================
   QwikGlam — Footer + Header Mobile-First Premium Layer
   Target : ≤768px phones, ≤430px small phones
   Rule   : ZERO desktop/laptop styles changed — mobile only.
   Design : World-class luxury beauty on-demand, mobile couture.
   ================================================================ */

@media (max-width: 768px) {

  /* ================================================================
     MEMBERSHIP BANNER — above footer
     ================================================================ */
  .qg-footer__membership-banner {
    padding: 2rem 1.25rem;
  }

  .qg-footer__membership-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .qg-membership-banner__text { min-width: unset; }

  .qg-membership-banner__text h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.18;
  }

  .qg-membership-banner__text p {
    font-size: .84rem;
    line-height: 1.62;
  }

  .qg-membership-banner__plans {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
  }

  .qg-membership-banner__plans::-webkit-scrollbar { display: none; }

  .qg-mb-plan {
    flex-shrink: 0;
    min-width: 130px;
    padding: 14px 16px;
  }

  .qg-mb-plan__price { font-size: 1.35rem; }

  .qg-membership-banner__cta {
    width: 100%;
  }

  .qg-membership-banner__cta a,
  .qg-membership-banner__cta button {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    min-height: 52px;
    border-radius: 16px;
    font-size: .9rem;
  }


  /* ================================================================
     PROMO STRIP (Gift card + App download cards)
     ================================================================ */
  .qg-footer__promo-strip {
    padding: 1.25rem 1rem;
  }

  .qg-footer__promo-strip-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .qg-promo-card {
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .qg-promo-card:hover { transform: none; }

  .qg-promo-card__icon { font-size: 22px; }

  .qg-promo-card__title { font-size: .88rem; }

  .qg-promo-card__desc { font-size: .74rem; }

  .qg-promo-card__btn {
    padding: 10px 16px;
    font-size: .76rem;
    border-radius: 12px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .qg-promo-app-btns {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }

  .qg-promo-app-btn {
    flex: 1;
    justify-content: center;
    min-height: 40px;
    font-size: .72rem;
  }

  .qg-promo-app-btn:hover { transform: none; }


  /* ================================================================
     TRUST BADGES — 2-column compact grid
     ================================================================ */
  .qg-footer__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1rem 1.25rem;
    flex-wrap: unset;
    align-items: unset;
    justify-content: unset;
  }

  .qg-trust__divider { display: none; }

  .qg-trust__badge {
    flex: unset;
    padding: 1rem .75rem;
    min-width: unset;
    justify-content: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(212,175,106,.07);
  }

  /* Remove border from last row */
  .qg-trust__badge:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Right column: add left separator */
  .qg-trust__badge:nth-child(even) {
    border-left: 1px solid rgba(212,175,106,.07);
  }

  .qg-trust__badge:hover { transform: none; }

  .qg-trust__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .qg-trust__badge strong { font-size: .8rem; }
  .qg-trust__badge span   { font-size: .68rem; }


  /* ================================================================
     FOOTER TOP — Brand block full-width, nav below
     ================================================================ */
  .qg-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 2rem;
  }

  /* Brand block */
  .qg-footer__brand {
    gap: 1rem;
    align-items: flex-start;
  }

  .qg-footer-logo { font-size: 1.8rem; }

  .qg-footer-brand__tagline {
    font-size: .9rem;
    line-height: 1.7;
    max-width: 280px;
  }

  /* WhatsApp pill — full width on mobile */
  .qg-footer__whatsapp {
    padding: 10px 18px;
    font-size: .78rem;
    min-height: 42px;
    width: auto;
  }

  /* Social icons — slightly larger tap targets */
  .qg-social {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .qg-social:hover {
    transform: none;
    box-shadow: none;
  }


  /* ================================================================
     FOOTER NAV — 2-column grid on mobile (uses the free horizontal space)
     ================================================================ */
  .qg-footer__nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    border-top: 1px solid rgba(212,175,106,.08) !important;
    align-items: start !important;
  }

  .qg-footer-nav__group {
    padding: 1.4rem 1rem 1.2rem !important;
    border-bottom: 1px solid rgba(212,175,106,.07) !important;
    position: relative !important;
  }

  /* Right-column groups: add left separator */
  .qg-footer-nav__group:nth-child(even) {
    border-left: 1px solid rgba(212,175,106,.07) !important;
  }

  /* Group heading: static label — no accordion needed */
  .qg-footer-nav__group h4 {
    font-size: .62rem !important;
    letter-spacing: .18em !important;
    margin: 0 0 .9rem !important;
    padding: 0 !important;
    display: block !important;
    cursor: default !important;
    user-select: none !important;
    width: 100% !important;
    color: var(--qg-gold, #D4AF6A) !important;
  }

  /* Keep gold underline accent */
  .qg-footer-nav__group h4::after {
    display: block !important;
    bottom: -4px !important;
  }

  .qg-footer-nav__group h4::before {
    display: none !important;
  }

  /* Nav links */
  .qg-footer-nav__group ul {
    gap: .5rem !important;
    padding-bottom: 0 !important;
  }

  .qg-footer-nav__group a {
    font-size: .8rem !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    color: rgba(255,255,255,.42) !important;
  }

  .qg-footer-nav__group a:hover {
    padding-left: 0 !important;
    color: rgba(255,255,255,.75) !important;
  }

  .qg-footer-nav__group a:hover::before { display: none !important; }


  /* ================================================================
     NEWSLETTER — Stacked layout
     ================================================================ */
  .qg-footer__newsletter {
    padding: 0 1.25rem 2rem;
  }

  .qg-newsletter__inner {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
    border-radius: 22px;
    text-align: center;
  }

  .qg-newsletter__copy { text-align: center; }

  .qg-newsletter__copy h3 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    line-height: 1.25;
  }

  .qg-newsletter__copy p { font-size: .82rem; }

  .qg-newsletter__form {
    max-width: 100%;
    width: 100%;
  }

  /* Input field: comfortable height */
  .qg-newsletter__field {
    border-radius: 14px;
    overflow: hidden;
    flex-direction: column;
    background: rgba(255,255,255,.05);
    padding: 4px;
    gap: 0;
  }

  .qg-newsletter__field input {
    padding: .9rem 1.1rem;
    font-size: .88rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
  }

  .qg-newsletter__field button {
    width: 100%;
    justify-content: center;
    padding: .9rem 1.4rem;
    margin: 0;
    border-radius: 10px;
    font-size: .85rem;
    min-height: 48px;
  }

  .qg-newsletter__field button:hover {
    transform: none;
  }

  .qg-newsletter__note {
    text-align: center;
    padding-left: 0;
    font-size: .68rem;
    margin-top: .5rem;
  }


  /* ================================================================
     CITIES COVERAGE — Horizontal scroll
     ================================================================ */
  .qg-footer__cities {
    padding: 12px 0;
  }

  .qg-footer__cities-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding: 4px 1.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 1.25rem, black calc(100% - 1.25rem), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 1.25rem, black calc(100% - 1.25rem), transparent 100%);
  }

  .qg-footer__cities-inner::-webkit-scrollbar { display: none; }

  .qg-footer__cities-label {
    flex-shrink: 0;
    font-size: .58rem;
  }

  .qg-footer__city-pill {
    flex-shrink: 0;
    padding: 4px 11px;
    font-size: .68rem;
    min-height: 28px;
    display: flex;
    align-items: center;
  }


  /* ================================================================
     PRESS LOGOS — Horizontal scroll
     ================================================================ */
  .qg-footer__press {
    padding: 12px 0;
  }

  .qg-footer__press-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 4px 1.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 1.25rem, black calc(100% - 1.25rem), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 1.25rem, black calc(100% - 1.25rem), transparent 100%);
  }

  .qg-footer__press-inner::-webkit-scrollbar { display: none; }

  .qg-footer__press-label { flex-shrink: 0; }

  .qg-footer__press-logos {
    flex-wrap: nowrap;
    gap: 0 1.5rem;
    flex-shrink: 0;
  }

  .qg-footer__press-logo {
    flex-shrink: 0;
    font-size: .8rem;
  }


  /* ================================================================
     FOOTER BOTTOM BAR — Compact centered stack
     ================================================================ */
  .qg-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
    padding: 1.2rem 1.25rem
      /* Add safe area for bottom nav */
      calc(1.2rem + env(safe-area-inset-bottom, 0px));
  }

  .qg-footer__bottom p { font-size: .7rem; }

  .qg-footer__bottom-right {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    justify-content: center;
  }

  .qg-footer__legal {
    gap: .5rem;
    justify-content: center;
  }

  .qg-footer__legal a { font-size: .68rem; }

  .qg-footer__payments {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .qg-payment-badge {
    font-size: .6rem;
    padding: 2px 7px;
  }


  /* ================================================================
     BOTTOM NAV — Premium polish + safe-area
     ================================================================ */
  .qg-bottom-nav {
    /* Ensure it shows (set to block at 860px already, this locks it in) */
    display: block;
    background: rgba(18, 6, 30, .97);
    border-top: 1px solid rgba(212,175,106,.18);
    box-shadow: 0 -8px 32px rgba(10,4,22,.45);
    /* Safe area for iPhone home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .qg-bottom-nav__inner {
    justify-content: space-around;
    align-items: stretch;
  }

  .qg-bottom-nav a {
    padding: 11px 8px 9px;
    font-size: .56rem;
    gap: 4px;
    /* Minimum comfortable touch target */
    min-height: 52px;
    position: relative;
  }

  /* Active indicator — gold underline */
  .qg-bottom-nav a.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: var(--qg-gold, #D4AF6A);
  }

  .qg-bottom-nav a svg {
    width: 22px;
    height: 22px;
  }

  .qg-bottom-nav a:hover {
    color: rgba(255,255,255,.7);
  }

  .qg-bottom-nav a:hover svg { transform: none; }

  /* Active item: gold glow */
  .qg-bottom-nav a.active {
    color: var(--qg-gold, #D4AF6A);
  }

  .qg-bottom-nav a.active svg {
    filter: drop-shadow(0 0 6px rgba(212,175,106,.5));
  }


  /* ================================================================
     CONCIERGE FAB — Safe area + compact
     ================================================================ */
  .qg-concierge {
    right: 14px;
    /* Sit above bottom nav + safe area */
    bottom: calc(62px + env(safe-area-inset-bottom, 12px));
    padding: .7rem .8rem .58rem;
    border-radius: 16px;
    gap: .22rem;
    box-shadow: 0 6px 24px rgba(10,4,22,.5), 0 0 16px rgba(212,175,106,.08);
  }

  .qg-concierge:hover {
    transform: none;
    box-shadow: 0 6px 24px rgba(10,4,22,.5);
  }

  .qg-concierge__icon svg {
    width: 20px;
    height: 20px;
  }

  .qg-concierge__label {
    font-size: .5rem;
    letter-spacing: .1em;
  }


  /* ================================================================
     CONCIERGE MODAL — Bottom sheet on mobile
     ================================================================ */
  .qg2-modal {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
  }

  .qg2-window--concierge {
    width: 100%;
    max-width: 100%;
    border-radius: 28px 28px 0 0;
    padding: 1.5rem 1.25rem
      /* Safe area for iPhone home bar */
      calc(1.5rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform .45s cubic-bezier(.22,1,.36,1);
  }

  .qg2-modal.open .qg2-window--concierge {
    transform: translateY(0);
  }

  /* Drag handle indicator */
  .qg2-window--concierge::after {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: rgba(212,175,106,.2);
    border-radius: 99px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Shift close button to safe position */
  .qg2-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }

  .qg2-window--concierge h2 { font-size: 1.3rem; }

  .qg2-quick-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .qg2-quick-btn {
    padding: 10px 12px;
    font-size: .74rem;
    min-height: 44px;
    border-radius: 12px;
  }

  .qg2-quick-btn:hover { transform: none; }

  #qgConciergeMsg {
    font-size: .85rem;
    border-radius: 14px;
  }

  .qg2-actions {
    flex-direction: column;
    gap: .65rem;
  }

  .qg2-actions button,
  .qg2-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 50px;
    border-radius: 14px;
    font-size: .88rem;
  }


  /* ================================================================
     SEARCH DRAWER — Mobile optimised
     ================================================================ */
  .qg-search-drawer__body {
    padding: 12px 1.25rem 16px;
  }

  .qg-search-categories {
    gap: 8px;
    margin-top: 14px;
  }

  .qg-search-cat {
    padding: 9px 14px;
    font-size: .78rem;
    min-height: 42px;
    border-radius: 12px;
  }

  /* Keyboard shortcut badge: irrelevant on touch */
  .qg-search-kbd { display: none; }


  /* ================================================================
     CITY SELECTOR DROPDOWN — full width on mobile
     ================================================================ */
  .qg-city-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .qg-city-option {
    padding: 10px 12px;
    font-size: .82rem;
    min-height: 44px;
  }

  .qg-city-detect {
    padding: 11px 14px;
    min-height: 44px;
    font-size: .82rem;
  }

  .qg-city-detect:hover { background: rgba(212,175,106,.08); }


  /* ================================================================
     BACK TO TOP — Safe area + tap-friendly
     ================================================================ */
  #qgBackToTop {
    /* Sit just above bottom nav */
    bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

} /* end @media (max-width: 768px) */


/* ================================================================
   SMALL PHONE — ≤430px overrides
   ================================================================ */
@media (max-width: 430px) {

  /* Membership banner */
  .qg-footer__membership-banner { padding: 1.75rem 1rem; }
  .qg-membership-banner__text h3 { font-size: clamp(1.35rem, 8.5vw, 1.7rem); }

  /* Promo card — icon smaller */
  .qg-promo-card { gap: 12px; padding: 14px 15px; }
  .qg-promo-card__icon { font-size: 18px; }

  /* Trust grid: keep 2 cols but tighter */
  .qg-trust__badge { padding: .85rem .6rem; }
  .qg-trust__icon { width: 32px; height: 32px; font-size: .8rem; }

  /* Footer top */
  .qg-footer__top { padding: 2rem 1rem 1.5rem; }
  .qg-footer-logo { font-size: 1.6rem; }
  .qg-footer-brand__tagline { font-size: .84rem; }

  /* Nav groups */
  .qg-footer-nav__group h4 { font-size: .64rem; }
  .qg-footer-nav__group a  { font-size: .8rem; }

  /* Newsletter */
  .qg-footer__newsletter { padding: 0 1rem 1.75rem; }
  .qg-newsletter__inner { padding: 1.5rem 1.2rem; }
  .qg-newsletter__copy h3 { font-size: clamp(1.1rem, 7vw, 1.4rem); }

  /* Bottom bar */
  .qg-footer__bottom { padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .qg-footer__legal { gap: .4rem; }
  .qg-footer__legal a { font-size: .64rem; }

  /* Concierge quick actions: single column on tiny screens */
  .qg2-quick-actions { grid-template-columns: 1fr; }

  /* Promo app buttons: full width */
  .qg-promo-app-btns { flex-direction: column; }
  .qg-promo-app-btn  { justify-content: center; }

  /* Bottom nav: even more compact */
  .qg-bottom-nav a {
    padding: 10px 6px 8px;
    font-size: .52rem;
    min-height: 50px;
  }
  .qg-bottom-nav a svg { width: 20px; height: 20px; }

  /* Social icons */
  .qg-social { width: 38px; height: 38px; }

} /* end @media (max-width: 430px) */