@charset "UTF-8";

/* ══════════════════════════════════════════════════════════════
   W8 — Phase 1 Design System | MOBILE CUSTOMER THEME
   Premium UI components adapted from Uiverse + Aceternity patterns
   Color scheme: Gold (#F0B90B) + Dark Navy (#0a1428)
   Target: Mobile phones (360–430px width), touch-friendly
   Import ALONGSIDE existing CSS — does not modify main.css
   ══════════════════════════════════════════════════════════════
   Reference sources (MIT License, copy freely):
   • Codecite/angry-bullfrog-58       — premium button
   • alexruix/jolly-emu-80            — premium input
   • vinodjangid07/good-donkey-28     — chat input box
   • alexruix/tame-fly-42             — typing loader
   • Aceternity card-spotlight        — spotlight card
   • Aceternity background-beams      — bg beams
   ══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────────────
   1. CSS VARIABLES (root) — Easy rebrand target
   Change these to rebrand for W8Live / DafaLive
   ─────────────────────────────────────────────── */
:root {
  --brand-primary:   #FFD700;   /* gold */
  --brand-secondary: #DAA520;   /* dark gold */
  --brand-accent:    #FF1744;   /* bright gold */
  --brand-bg:        #0a0a0e;   /* dark navy */
  --brand-bg-card:   #1a1a2e;   /* card bg */
  --brand-border:    #2a2a4a;   /* border */
  --brand-text:      #ffffff;   /* light text */
  --brand-text-muted:#8888aa;   /* muted text */

  --brand-glow:        0 0 20px rgba(255, 215, 0, 0.3);
  --brand-glow-strong: 0 0 40px rgba(255, 215, 0, 0.5);

  --brand-radius:    16px;
  --brand-radius-sm: 10px;

  /* status colors (shared across both theme files) */
  --brand-success: #10B981;
  --brand-warning: #F59E0B;
  --brand-error:   #EF4444;
  --brand-info:    #6366F1;

  /* premium button internals (adapted from Codecite/angry-bullfrog-58) */
  --btn-grad-0:    var(--brand-accent);
  --btn-grad-50:   var(--brand-primary);
  --btn-grad-100:  var(--brand-secondary);
  --btn-shine-top: #FFE89A;
  --btn-shine-bottom: #FFF3C4;
}


/* ════════════════════════════════════════════════
   2. GLASSMORPHISM CARD (Aceternity pattern)
   ════════════════════════════════════════════════ */
.glass-card {
  background: rgba(19, 31, 58, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--brand-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 16px;
  position: relative;
}

.glass-card-sm {
  background: rgba(19, 31, 58, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--brand-radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  padding: 12px;
}


/* ════════════════════════════════════════════════
   3. SPOTLIGHT CARD (Aceternity card-spotlight)
   Mouse-follow glow — on touch = tap glow
   JS sets --mx / --my; CSS defaults to center
   ════════════════════════════════════════════════ */
.spotlight-card {
  position: relative;
  overflow: hidden;
  background: rgba(19, 31, 58, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--brand-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 16px;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 215, 0, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

.spotlight-card:hover::before,
.spotlight-card:active::before {
  opacity: 1;
}


/* ════════════════════════════════════════════════
   4. GRADIENT TEXT (Aceternity colourful-text)
   ════════════════════════════════════════════════ */
.gradient-gold-text {
  background: linear-gradient(135deg, #FFD700, #F0B90B, #C99A08);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback for non-webkit */
}

.gradient-gold-text-sm {
  background: linear-gradient(135deg, #FFD700, #F0B90B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* ════════════════════════════════════════════════
   5. PREMIUM GOLD BUTTON
   Adapted from Uiverse Codecite/angry-bullfrog-58
   Gradient gold fill + shine + glow + touch scale
   ════════════════════════════════════════════════ */

/* --- base premium button (44px min touch height) --- */
.btn-premium {
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.2px;
  text-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.2);
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 1;
  border-radius: 25px;
  color: #1a1205; /* dark text on gold for contrast */
  background-image: linear-gradient(
    to bottom,
    var(--btn-grad-0) 0%,
    var(--btn-grad-50) 50%,
    var(--btn-grad-100) 100%
  );
  box-shadow:
    0 4px 12px rgba(9, 12, 60, 0.25),
    0 2px 8px rgba(255, 215, 0, 0.2),
    inset 0 1px 1px rgba(255, 232, 154, 0.4),
    inset 0 -1px 3px rgba(201, 154, 8, 0.3);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.btn-premium::before,
.btn-premium::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  will-change: transform;
}

/* top shine bar */
.btn-premium::before {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--btn-shine-top);
  width: 96px;
  height: 6px;
  top: -3px;
  opacity: 0.6;
  filter: blur(6px);
  transition: opacity 0.25s;
}

.btn-premium::after {
  inset: 0;
  background-size: cover;
  z-index: 2;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.btn-premium > * {
  position: relative;
  z-index: 1;
}

.btn-premium:hover {
  box-shadow:
    0 6px 20px rgba(255, 215, 0, 0.35),
    0 2px 8px rgba(255, 215, 0, 0.25),
    var(--brand-glow),
    inset 0 1px 1px rgba(255, 232, 154, 0.5),
    inset 0 -1px 3px rgba(201, 154, 8, 0.3);
}

/* active = tap press: scale down (touch feedback) */
.btn-premium:active {
  transform: scale(0.96);
  box-shadow:
    0 2px 8px rgba(255, 215, 0, 0.2),
    inset 0 1px 3px rgba(201, 154, 8, 0.4);
}

.btn-premium:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* --- large variant --- */
.btn-premium-lg {
  font-size: 17px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 26px;
}

/* --- outline variant (transparent with gold border) --- */
.btn-premium-outline {
  background-image: none;
  background-color: rgba(255, 215, 0, 0.05);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  box-shadow: none;
  text-shadow: none;
}

.btn-premium-outline::before,
.btn-premium-outline::after {
  display: none;
}

.btn-premium-outline:hover {
  background-color: rgba(255, 215, 0, 0.12);
  box-shadow: var(--brand-glow);
  color: var(--brand-accent);
}

.btn-premium-outline:active {
  transform: scale(0.96);
  background-color: rgba(255, 215, 0, 0.2);
}

/* --- full-width block variant --- */
.btn-premium-block {
  width: 100%;
  display: flex;
}


/* ════════════════════════════════════════════════
   6. PREMIUM INPUT
   Adapted from Uiverse alexruix/jolly-emu-80
   Dark bg, gold border on focus, glow, 44px height
   Works with type="text", type="email", etc.
   ════════════════════════════════════════════════ */
.input-premium,
input[type="text"].input-premium,
input[type="email"].input-premium,
input[type="password"].input-premium,
input[type="search"].input-premium,
input[type="tel"].input-premium,
input[type="number"].input-premium,
textarea.input-premium {
  width: 100%;
  height: 44px;
  background-color: rgba(10, 20, 40, 0.7);
  border-radius: var(--brand-radius-sm);
  padding: 0 1rem;
  border: 2px solid var(--brand-border);
  font-size: 16px; /* 16px prevents iOS zoom */
  color: var(--brand-text);
  font-family: inherit;
  transition: border-color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1),
              color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1),
              background 0.2s cubic-bezier(0.25, 0.01, 0.25, 1),
              box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

textarea.input-premium {
  height: auto;
  min-height: 88px;
  padding: 12px 1rem;
  resize: vertical;
  line-height: 1.5;
}

.input-premium::placeholder {
  color: var(--brand-text-muted);
  transition: color 0.3s ease;
}

.input-premium:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background-color: rgba(10, 20, 40, 0.85);
}

.input-premium:focus {
  outline: none;
  border-color: var(--brand-primary);
  background-color: rgba(10, 20, 40, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15),
              var(--brand-glow);
}

.input-premium:focus::placeholder {
  color: rgba(139, 163, 199, 0.5);
}

/* --- input group with label (alexruix/jolly-emu-80 pattern) --- */
.input-group-premium {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.input-group-premium .label-premium {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-text-muted);
  transition: color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1);
  padding-left: 4px;
}

.input-group-premium:focus-within .label-premium {
  color: var(--brand-primary);
}


/* ════════════════════════════════════════════════
   7. CHAT INPUT BOX (PREMIUM)
   Adapted from Uiverse vinodjangid07/good-donkey-28
   Rounded container + file upload + gradient send
   ════════════════════════════════════════════════ */
.chat-input-premium {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 31, 58, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 12px;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid var(--brand-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.chat-input-premium:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.12),
              var(--brand-glow);
}

/* file upload wrapper */
.chat-input-premium .file-upload-wrapper {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-input-premium .file-upload-wrapper input[type="file"] {
  display: none;
}

.chat-input-premium .file-upload-wrapper label {
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chat-input-premium .file-upload-wrapper label svg {
  height: 20px;
  width: 20px;
}

.chat-input-premium .file-upload-wrapper label svg path,
.chat-input-premium .file-upload-wrapper label svg circle {
  stroke: var(--brand-text-muted);
  transition: stroke 0.3s ease, fill 0.3s ease;
}

.chat-input-premium .file-upload-wrapper label:hover {
  background: rgba(255, 215, 0, 0.1);
}

.chat-input-premium .file-upload-wrapper label:hover svg path,
.chat-input-premium .file-upload-wrapper label:hover svg circle {
  stroke: var(--brand-primary);
}

.chat-input-premium .file-upload-wrapper label:hover svg circle {
  fill: rgba(255, 215, 0, 0.15);
}

/* tooltip for file upload */
.chat-input-premium .file-upload-wrapper .tooltip {
  position: absolute;
  top: -36px;
  display: none;
  opacity: 0;
  color: var(--brand-text);
  font-size: 11px;
  white-space: nowrap;
  background-color: var(--brand-bg);
  padding: 5px 10px;
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  pointer-events: none;
}

.chat-input-premium .file-upload-wrapper label:hover .tooltip {
  display: block;
  opacity: 1;
}

/* message text input */
.chat-input-premium input[type="text"],
.chat-input-premium input[type="text"]:focus {
  flex: 1;
  height: 100%;
  min-height: 48px;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0 8px;
  color: var(--brand-text);
  font-size: 15px;
  font-family: inherit;
}

.chat-input-premium input[type="text"]::placeholder {
  color: var(--brand-text-muted);
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* placeholder fades when typing (premium touch) */
.chat-input-premium input[type="text"]:focus::placeholder {
  opacity: 0.4;
}

/* send button — gold gradient */
.chat-input-premium .send-btn-premium {
  width: 40px;
  height: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background-image: linear-gradient(
    135deg,
    var(--brand-accent),
    var(--brand-primary)
  );
  outline: none;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.chat-input-premium .send-btn-premium svg {
  height: 18px;
  width: 18px;
  transition: all 0.3s;
}

.chat-input-premium .send-btn-premium svg path {
  stroke: #1a1205;
  transition: all 0.3s;
}

.chat-input-premium .send-btn-premium:hover {
  transform: scale(1.08);
  box-shadow: var(--brand-glow);
}

.chat-input-premium .send-btn-premium:active {
  transform: scale(0.92);
}

/* send button lights up when input has content */
.chat-input-premium:has(input[type="text"]:not(:placeholder-shown)) .send-btn-premium {
  opacity: 1;
}

.chat-input-premium .send-btn-premium {
  opacity: 0.55;
}


/* ════════════════════════════════════════════════
   8. TYPING LOADER
   Adapted from Uiverse alexruix/tame-fly-42
   Three bouncing dots in gold (simplified for chat)
   ════════════════════════════════════════════════ */
.typing-loader {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  padding: 0 12px;
}

.typing-loader .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: typingBounceGold 0.5s ease-in-out infinite alternate;
}

.typing-loader .dot:nth-child(2) {
  animation-delay: 0.15s;
  background: var(--brand-accent);
}

.typing-loader .dot:nth-child(3) {
  animation-delay: 0.3s;
  background: var(--brand-secondary);
}

@keyframes typingBounceGold {
  0% {
    transform: translateY(0) scale(1, 0.7);
    opacity: 0.6;
  }
  40% {
    transform: translateY(-8px) scale(0.8, 1.2);
    opacity: 1;
  }
  60% {
    transform: translateY(-4px) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1, 0.7);
    opacity: 0.6;
  }
}

/* compact variant for inline chat bubbles */
.typing-loader-sm {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.typing-loader-sm .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: typingBounceGold 0.5s ease-in-out infinite alternate;
}

.typing-loader-sm .dot:nth-child(2) { animation-delay: 0.15s; }
.typing-loader-sm .dot:nth-child(3) { animation-delay: 0.3s; }


/* ════════════════════════════════════════════════
   9. GLOW PULSE ANIMATION
   Use on online indicators, live badges, etc.
   ════════════════════════════════════════════════ */
@keyframes glowPulsePremium {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
}

.glow-pulse-premium {
  animation: glowPulsePremium 2s ease-in-out infinite;
}

.glow-pulse-fast {
  animation: glowPulsePremium 1.2s ease-in-out infinite;
}


/* ════════════════════════════════════════════════
   10. SHIMMER EFFECT (loading cards / skeletons)
   ════════════════════════════════════════════════ */
@keyframes shimmerGold {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer-gold {
  background: linear-gradient(90deg,
    rgba(19, 31, 58, 0.6) 25%,
    rgba(255, 215, 0, 0.12) 50%,
    rgba(19, 31, 58, 0.6) 75%
  );
  background-size: 200% 100%;
  animation: shimmerGold 1.5s infinite;
}

.shimmer-gold-text {
  background: linear-gradient(90deg,
    var(--brand-text-muted) 25%,
    var(--brand-primary) 50%,
    var(--brand-text-muted) 75%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerGold 2s infinite;
}


/* ════════════════════════════════════════════════
   11. BACKGROUND BEAMS (Aceternity, subtle for mobile)
   Fixed-position gradient beams, gold-tinted, low opacity
   Place a <div class="bg-beams"></div> as first body child
   ════════════════════════════════════════════════ */
.bg-beams {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}

.bg-beams::before,
.bg-beams::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(255, 215, 0, 0.06) 60deg,
    transparent 120deg,
    rgba(201, 154, 8, 0.04) 200deg,
    transparent 280deg
  );
  animation: beamsRotate 20s linear infinite;
}

.bg-beams::after {
  animation-duration: 30s;
  animation-direction: reverse;
  opacity: 0.5;
  background: conic-gradient(
    from 30deg at 50% 50%,
    transparent 0deg,
    rgba(255, 215, 0, 0.04) 80deg,
    transparent 160deg,
    rgba(255, 215, 0, 0.03) 240deg,
    transparent 320deg
  );
}

@keyframes beamsRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ensure content sits above beams */
body > .bg-beams ~ * {
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════════════════
   12. STAT BADGE (credit / balance display)
   Glassmorphism pill + gold gradient number
   ════════════════════════════════════════════════ */
.stat-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(19, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stat-badge-premium .stat-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-badge-premium .stat-badge-value {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #F0B90B, #C99A08);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-badge-premium .stat-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

/* compact variant */
.stat-badge-premium-sm {
  padding: 5px 12px;
}

.stat-badge-premium-sm .stat-badge-value {
  font-size: 0.95rem;
}


/* ════════════════════════════════════════════════
   13. BOTTOM NAV PREMIUM (mobile)
   Glassmorphism bottom bar, 56px height
   Active item: gold gradient + glow
   ════════════════════════════════════════════════ */
.bottom-nav-premium {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  /* safe area padding for notched phones */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav-premium .nav-item-premium {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--brand-text-muted);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-premium .nav-item-premium svg,
.bottom-nav-premium .nav-item-premium .nav-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.bottom-nav-premium .nav-item-premium .nav-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.bottom-nav-premium .nav-item-premium:active svg {
  transform: scale(0.88);
}

/* active state: gold gradient + glow + top indicator */
.bottom-nav-premium .nav-item-premium.active {
  color: var(--brand-primary);
}

.bottom-nav-premium .nav-item-premium.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary));
  box-shadow: var(--brand-glow);
}

.bottom-nav-premium .nav-item-premium.active svg,
.bottom-nav-premium .nav-item-premium.active .nav-icon {
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

.bottom-nav-premium .nav-item-premium.active .nav-label {
  background: linear-gradient(135deg, #FFD700, #F0B90B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
}


/* ════════════════════════════════════════════════
   14. PAGE TRANSITION (mobile slide-in)
   Apply .page-transition to page wrapper on load
   ════════════════════════════════════════════════ */
@keyframes pageSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-transition {
  animation: pageSlideIn 0.3s ease-out;
}

/* fade variant (for modals / overlays) */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-fade-in {
  animation: pageFadeIn 0.3s ease-out;
}

/* slide-up variant (for bottom sheets) */
@keyframes pageSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-slide-up {
  animation: pageSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ════════════════════════════════════════════════
   END — W8 Phase 1 Mobile Customer Theme
   ════════════════════════════════════════════════ */
