/**
 * QwikGlam — Home Page v10 Additions
 * Synced from mobile app production build
 * New sections: Flash Deals · Packages · Reels Preview · QG Points · Gift the Glow
 * Design system: Plum #3B1F3A | Rose #D4728C | Gold #C9A86C | Cream #FEF7F2
 */

/* ════════════════════════════════════════════════════════════
   SECTION HEADER — premium gold rule style (mirrors app)
════════════════════════════════════════════════════════════ */
.qg-section-v10 {
  padding: 3.5rem 0;
}
.qg-section-header-v10 {
  margin-bottom: 2rem;
  padding: 0 1.25rem;
}
.qg-section-header-v10 .qg-rule {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.qg-section-header-v10 .qg-rule-line {
  width: 28px; height: 2.5px;
  background: linear-gradient(90deg, #C9A86C, #B8860B);
  border-radius: 2px;
}
.qg-section-header-v10 .qg-rule-dot {
  width: 5px; height: 5px;
  background: #C9A86C;
  border-radius: 50%;
}
.qg-section-header-v10 h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #3B1F3A;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.qg-section-header-v10 .qg-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #9C7A8A;
  font-style: italic;
}
.qg-section-header-v10 .qg-see-all {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #D4728C;
  text-decoration: none;
  padding: 5px 12px;
  border: 0.5px solid rgba(212,114,140,.3);
  border-radius: 20px;
  background: rgba(212,114,140,.07);
  white-space: nowrap;
  transition: all .2s;
}
.qg-section-header-v10 .qg-see-all:hover {
  background: rgba(212,114,140,.15);
}
.qg-section-header-v10-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  margin-bottom: 1.25rem;
}

/* ════════════════════════════════════════════════════════════
   §1  FLASH DEALS — Today's Deals
════════════════════════════════════════════════════════════ */
.qg-flash-deals {
  padding: 2rem 0 2.5rem;
  background: #fff;
}
.qg-flash-deals__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 1.5rem;
  margin-bottom: 1.2rem;
}
.qg-flash-deals__live-dot {
  width: 8px; height: 8px;
  background: #FF3B30;
  border-radius: 50%;
  animation: qg-pulse-red 1.4s infinite;
  flex-shrink: 0;
}
@keyframes qg-pulse-red {
  0%,100%{ box-shadow: 0 0 0 0 rgba(255,59,48,.5); }
  50%{ box-shadow: 0 0 0 6px rgba(255,59,48,0); }
}
.qg-flash-deals__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3B1F3A;
}
.qg-flash-deals__expires {
  margin-left: auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #FF3B30;
  background: rgba(255,59,48,.08);
  padding: 3px 9px;
  border-radius: 20px;
}

/* Horizontal scroll track */
.qg-deals-track {
  display: flex;
  gap: 12px;
  padding: 4px 1.5rem 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.qg-deals-track::-webkit-scrollbar { display: none; }

.qg-deal-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid rgba(58,133,204,.2);
  background: #EDF4FB;
  box-shadow: 0 5px 14px rgba(58,133,204,.12);
  min-width: 200px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.qg-deal-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58,133,204,.20);
}

.qg-deal-chip__info { flex: 1 1 auto; }
.qg-deal-chip__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3B1F3A;
  white-space: nowrap;
}
.qg-deal-chip__time {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}
.qg-deal-chip__time-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--deal-accent, #3A85CC);
  flex-shrink: 0;
}
.qg-deal-chip__time-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: #9C7A8A;
  font-weight: 500;
}
.qg-deal-chip__badge {
  flex-shrink: 0;
}
.qg-deal-chip__discount {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  color: #fff;
  padding: 6px 11px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--deal-accent, #3A85CC), rgba(58,133,204,.75));
  box-shadow: 0 3px 8px rgba(58,133,204,.3);
  letter-spacing: -0.01em;
  text-align: center;
}
.qg-deal-chip__code {
  display: block;
  margin-top: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  color: #9C7A8A;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

/* Shimmer */
.qg-deal-shimmer {
  flex: 0 0 200px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(90deg, #f5e8ef 25%, #fef7f2 50%, #f5e8ef 75%);
  background-size: 200% 100%;
  animation: qg-shimmer 1.4s infinite;
}
@keyframes qg-shimmer {
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

/* ════════════════════════════════════════════════════════════
   §2  CURATED PACKAGES
════════════════════════════════════════════════════════════ */
.qg-packages {
  padding: 2.5rem 0;
  background: #FEF7F2;
}
.qg-packages-track {
  display: flex;
  gap: 14px;
  padding: 4px 1.5rem 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.qg-packages-track::-webkit-scrollbar { display: none; }

.qg-pkg-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(212,114,140,.2);
  background: linear-gradient(135deg,
    rgba(212,114,140,.08) 0%,
    rgba(176,64,96,.04)  100%);
  box-shadow: 0 6px 18px rgba(212,114,140,.10);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.qg-pkg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212,114,140,.18);
}
.qg-pkg-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.qg-pkg-card__emoji { font-size: 1.6rem; }
.qg-pkg-card__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--pkg-color, #D4728C);
  background: rgba(212,114,140,.12);
  padding: 3px 7px;
  border-radius: 7px;
  letter-spacing: 0.04em;
}
.qg-pkg-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3B1F3A;
  margin-bottom: 2px;
}
.qg-pkg-card__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: #9C7A8A;
  font-style: italic;
  margin-bottom: 10px;
}
.qg-pkg-card__includes {
  list-style: none;
  padding: 0; margin: 0 0 10px;
}
.qg-pkg-card__includes li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(59,31,58,.75);
  font-weight: 500;
  margin-bottom: 3px;
}
.qg-pkg-card__includes li::before {
  content: '';
  width: 11px; height: 11px;
  background: var(--pkg-color, #D4728C);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23fff' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23fff' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.qg-pkg-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qg-pkg-card__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #3B1F3A;
}
.qg-pkg-card__btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pkg-color, #D4728C), var(--pkg-color-2, #B04060));
  box-shadow: 0 3px 10px rgba(212,114,140,.35);
  transition: opacity .2s;
}
.qg-pkg-card:hover .qg-pkg-card__btn { opacity: 0.88; }

/* Package shimmer */
.qg-pkg-shimmer {
  flex: 0 0 200px;
  height: 240px;
  border-radius: 22px;
  background: linear-gradient(90deg, #f0e0e8 25%, #fff5f8 50%, #f0e0e8 75%);
  background-size: 200% 100%;
  animation: qg-shimmer 1.4s infinite;
}

/* ════════════════════════════════════════════════════════════
   §3  REELS PREVIEW — Web feed
════════════════════════════════════════════════════════════ */
.qg-reels-preview {
  padding: 2.5rem 0;
  background: #fff;
}
.qg-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 1.5rem;
}
@media(min-width: 640px) {
  .qg-reels-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
}
@media(min-width: 960px) {
  .qg-reels-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
}

.qg-reel-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #2A0E28;
  transition: transform .25s;
}
.qg-reel-thumb:hover { transform: scale(1.03); }
.qg-reel-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.qg-reel-thumb__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  pointer-events: none;
}
.qg-reel-thumb__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 32px; height: 32px;
  background: rgba(255,255,255,.22);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.qg-reel-thumb:hover .qg-reel-thumb__play { opacity: 1; }
.qg-reel-thumb__play svg { margin-left: 2px; }
.qg-reel-thumb__meta {
  position: absolute;
  bottom: 7px; left: 8px; right: 8px;
}
.qg-reel-thumb__artist {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qg-reel-thumb__likes {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  color: rgba(255,255,255,.8);
  margin-top: 2px;
}
.qg-reel-thumb__service-badge {
  position: absolute;
  top: 7px; right: 7px;
  background: rgba(201,168,108,.85);
  color: #1A0E1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}
/* Reels shimmer */
.qg-reel-shimmer {
  aspect-ratio: 9/16;
  border-radius: 12px;
  background: linear-gradient(90deg, #ecdae4 25%, #fdf4f8 50%, #ecdae4 75%);
  background-size: 200% 100%;
  animation: qg-shimmer 1.4s infinite;
}

/* Reel lightbox / modal */
.qg-reel-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.qg-reel-modal.open {
  opacity: 1;
  pointer-events: all;
}
.qg-reel-modal__inner {
  position: relative;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}
.qg-reel-modal__img {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}
.qg-reel-modal__info {
  padding: 14px 16px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
}
.qg-reel-modal__artist {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.qg-reel-modal__caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
  line-height: 1.4;
}
.qg-reel-modal__book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 16px;
  background: #C9A86C;
  color: #1A0E1A;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: opacity .2s;
}
.qg-reel-modal__book:hover { opacity: .85; }
.qg-reel-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════════════════════
   §4  QG POINTS — Loyalty strip (mirrors Flutter _QgPointsStrip)
════════════════════════════════════════════════════════════ */
.qg-points-strip {
  margin: 0 1.25rem 2rem;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,108,.28);
  background: linear-gradient(135deg,
    rgba(201,168,108,.10) 0%,
    rgba(212,114,140,.06) 100%);
  box-shadow: 0 5px 16px rgba(201,168,108,.08);
  display: flex;
  align-items: center;
  gap: 16px;
}
.qg-points-strip__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,108,.12);
  border: 1px solid rgba(201,168,108,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.qg-points-strip__body { flex: 1 1 auto; }
.qg-points-strip__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3B1F3A;
}
.qg-points-strip__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: #9C7A8A;
  margin-top: 2px;
  line-height: 1.4;
}
.qg-points-strip__btn {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #C9A86C, #B8860B);
  box-shadow: 0 4px 14px rgba(201,168,108,.35);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1A0E1A;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.qg-points-strip__btn:hover { opacity: .88; }

/* ════════════════════════════════════════════════════════════
   §5  GIFT THE GLOW CTA
════════════════════════════════════════════════════════════ */
.qg-gift-glow {
  margin: 0 1.25rem 2rem;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(201,168,108,.30);
  background: #fff;
  box-shadow:
    0 8px 24px rgba(201,168,108,.12),
    0 3px 12px rgba(59,31,58,.05);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media(max-width: 480px) {
  .qg-gift-glow { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.qg-gift-glow__content { flex: 1 1 auto; }
.qg-gift-glow__eyebrow {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 12px;
  border: 0.5px solid rgba(201,168,108,.35);
  background: rgba(201,168,108,.10);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C9A86C;
  margin-bottom: 10px;
}
.qg-gift-glow__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #3B1F3A;
  line-height: 1.1;
  margin-bottom: 6px;
}
.qg-gift-glow__title em {
  font-weight: 300;
  font-style: italic;
  color: #C9A86C;
}
.qg-gift-glow__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #9C7A8A;
  line-height: 1.5;
  margin-bottom: 16px;
}
.qg-gift-glow__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #C9A86C, #B8860B);
  box-shadow: 0 4px 14px rgba(201,168,108,.35);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1A0E1A;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.qg-gift-glow__btn:hover { opacity: .88; transform: translateY(-1px); }
.qg-gift-glow__icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.qg-gift-glow__icon-box {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: rgba(201,168,108,.07);
  border: 1px solid rgba(201,168,108,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.qg-gift-glow__icon-box--rose {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(212,114,140,.07);
  border: 1px solid rgba(212,114,140,.22);
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════
   §6  INNER CIRCLE UPGRADE — richer than existing
════════════════════════════════════════════════════════════ */
.qg-inner-circle-v10 {
  margin: 0 1.25rem 2rem;
  padding: 26px 24px;
  border-radius: 24px;
  border: 1px solid rgba(201,168,108,.30);
  background: #fff;
  box-shadow:
    0 8px 24px rgba(201,168,108,.08),
    0 3px 12px rgba(59,31,58,.04);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
@media(max-width: 480px) {
  .qg-inner-circle-v10 { flex-direction: column; align-items: flex-start; }
}
.qg-inner-circle-v10__badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 10px;
  border: 0.5px solid rgba(201,168,108,.30);
  background: rgba(201,168,108,.10);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #C9A86C;
  margin-bottom: 8px;
}
.qg-inner-circle-v10__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #3B1F3A;
  line-height: 1.15;
  margin-bottom: 8px;
}
.qg-inner-circle-v10__perks {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: #9C7A8A;
  line-height: 1.5;
}
.qg-inner-circle-v10__join {
  flex-shrink: 0;
  padding: 12px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C9A86C, #B8860B);
  box-shadow: 0 4px 14px rgba(201,168,108,.35);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1A0E1A;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
.qg-inner-circle-v10__join:hover { opacity: .88; transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   §7  UPDATED STATS (match mobile: 20K+, 500+, 50+, 4.9★)
════════════════════════════════════════════════════════════ */
/* Override existing trust bar numbers via JS — no CSS needed */

/* ════════════════════════════════════════════════════════════
   §8  ARTIST TIER BADGES (Elite ✦ / Pro)
════════════════════════════════════════════════════════════ */
.qg-artist-tier-elite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #C9A86C;
  border-radius: 50%;
  border: 1.5px solid #FEF7F2;
  font-size: 7px;
  color: #1A0E1A;
  position: absolute;
  top: 0; right: 0;
}
.qg-artist-tier-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: #3A85CC;
  border-radius: 50%;
  border: 1.5px solid #FEF7F2;
  font-size: 6px;
  color: #fff;
  position: absolute;
  top: 0; right: 0;
}
.qg-artist-available-dot {
  width: 13px; height: 13px;
  background: #2A9A5A;
  border-radius: 50%;
  border: 2px solid #FEF7F2;
  position: absolute;
  bottom: 3px; right: 3px;
}

/* ════════════════════════════════════════════════════════════
   WALLET PAGE
════════════════════════════════════════════════════════════ */
.qg-wallet-page { background: #FEF7F2; min-height: 100vh; padding: 2rem 0 4rem; }
.qg-wallet-hero {
  margin: 0 1.25rem 2rem;
  padding: 30px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #3B1F3A, #5A3058, #3D2060);
  box-shadow: 0 12px 32px rgba(59,31,58,.3);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.qg-wallet-hero::before {
  content: '✦';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 5rem;
  color: rgba(201,168,108,.12);
  pointer-events: none;
}
.qg-wallet-hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(201,168,108,.8);
  margin-bottom: 8px;
}
.qg-wallet-hero__balance {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.qg-wallet-hero__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
}
.qg-wallet-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.qg-wallet-hero__stat-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.qg-wallet-hero__stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,.55);
  margin-top: 1px;
}
.qg-wallet-actions {
  display: flex;
  gap: 10px;
  padding: 0 1.25rem;
  margin-bottom: 2rem;
}
.qg-wallet-action-btn {
  flex: 1;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(201,168,108,.3);
  background: #fff;
  box-shadow: 0 3px 12px rgba(59,31,58,.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3B1F3A;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: transform .2s, box-shadow .2s;
}
.qg-wallet-action-btn span { font-size: 1.3rem; }
.qg-wallet-action-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(59,31,58,.10); }

/* Wallet tx list */
.qg-wallet-txn-list { padding: 0 1.25rem; }
.qg-wallet-txn-list h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3B1F3A;
  margin: 0 0 1rem;
}
.qg-wallet-txn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(59,31,58,.05);
}
.qg-wallet-txn__icon {
  width: 40px; height: 40px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.qg-wallet-txn__icon--credit { background: rgba(42,154,90,.10); }
.qg-wallet-txn__icon--debit { background: rgba(192,64,96,.10); }
.qg-wallet-txn__desc {
  flex: 1 1 auto;
}
.qg-wallet-txn__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3B1F3A;
}
.qg-wallet-txn__date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: #9C7A8A;
  margin-top: 2px;
}
.qg-wallet-txn__amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.qg-wallet-txn__amount--credit { color: #2A9A5A; }
.qg-wallet-txn__amount--debit { color: #C04060; }

/* Loyalty points mini-display */
.qg-points-card {
  margin: 0 1.25rem 1.5rem;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,108,.28);
  background: linear-gradient(135deg, rgba(201,168,108,.10), rgba(212,114,140,.06));
  box-shadow: 0 5px 16px rgba(201,168,108,.08);
}
.qg-points-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.qg-points-card__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #C9A86C;
}
.qg-points-card__points {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #3B1F3A;
}
.qg-points-card__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: #9C7A8A;
  margin-top: 2px;
}
.qg-points-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(59,31,58,.08);
  margin-top: 14px;
  overflow: hidden;
}
.qg-points-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #C9A86C, #B8860B);
  transition: width .8s ease;
}

/* ════════════════════════════════════════════════════════════
   REELS FULL PAGE
════════════════════════════════════════════════════════════ */
.qg-reels-page { background: #0A0A0A; min-height: 100vh; }
.qg-reels-page__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 12px 1.5rem;
  background: #0A0A0A;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.qg-reels-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .2s;
}
.qg-reels-tab.active {
  background: rgba(201,168,108,.18);
  color: #C9A86C;
  font-weight: 700;
}
.qg-reels-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 800px;
  margin: 0 auto;
}
@media(min-width: 600px) {
  .qg-reels-feed { grid-template-columns: repeat(3, 1fr); }
}
@media(min-width: 960px) {
  .qg-reels-feed { grid-template-columns: repeat(4, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
════════════════════════════════════════════════════════════ */
@media(max-width: 640px) {
  .qg-points-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
}
