/**
 * UI-001 — VINAGO BRAND HEADER & HOMEPAGE CARD REFINEMENT
 * Sprint UI Branding (CEO Approved)
 *
 * HOTFIX 1 — Brand Header: VINAGO + "Kết nối mọi hành trình"
 * HOTFIX 2 — Marketplace Title: "SÀN GIAO DỊCH TRỰC TUYẾN"
 * HOTFIX 3 — Listing Card User Name: first-name only, always in card, ellipsis
 *
 * Presentation Layer ONLY. No Business Logic changes.
 * Loaded LAST to override all existing styles safely.
 *
 * @package XOS\Presentation\Styles
 * @version 1.0.0 — UI-001
 * @since   Sprint UI Branding
 */

/* ===========================================================
   HOTFIX 1 — VINAGO BRAND HEADER
   =========================================================== */

/* ── Brand block: two-line layout (wordmark + tagline) ── */
.hp-vinago-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  text-decoration: none !important;
  height: 52px;
  line-height: 1.1;
}

.hp-vinago-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1px;
  min-width: 0;
  max-width: 100%;
}

/* ── VINAGO wordmark — prominent, uppercase, bold, Gradient Blue ── */
.hp-vinago-brand-word {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  font-size: 1.375rem;               /* 22px */
  font-weight: 800 !important;       /* Bold — beats global 400 weight resets */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;

  /* Gradient Blue brand effect */
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1D4ED8; /* fallback for non-supporting browsers */

  /* Subtle brand recognition shimmer */
  background-size: 200% 200%;
  animation: vinago-shimmer 6s ease-in-out infinite;
}

@keyframes vinago-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── Slogan — smaller, ~35–40% of wordmark ── */
.hp-vinago-tagline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  font-size: 0.55rem;                /* 8.8px ≈ 40% of 22px */
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  white-space: nowrap;
  line-height: 1.2;
}

/* ── Constrain header height (never taller than before: 52px) ── */
#hpAppBar .hp-appbar-inner {
  height: 52px !important;
}

/* ── Hide legacy brand text remnants anywhere ── */
.hp-appbar-brand,
.hp-appbar-logo-img {
  display: none !important;
}

/* ── Desktop: header hidden ≥1024px (existing behavior preserved) ── */
@media (min-width: 1024px) {
  .hp-appbar {
    display: none;
  }
}

/* ── Small screens (<480px): tighten brand so it never squeezes actions ── */
@media (max-width: 479px) {
  .hp-vinago-brand-word {
    font-size: 1.125rem;             /* 18px */
    letter-spacing: 0.05em;
  }
  .hp-vinago-tagline {
    font-size: 0.5rem;               /* 8px */
  }
  #hpAppBar .hp-appbar-inner {
    height: 48px !important;
    padding: 0 var(--space-4, 8px) !important;
  }
}

/* ── Ultra-narrow (<340px): keep brand readable, hide tagline trade-off ── */
@media (max-width: 339px) {
  .hp-vinago-tagline {
    display: none;
  }
  .hp-vinago-brand-word {
    font-size: 1rem;
  }
}

/* ===========================================================
   HOTFIX 2 — MARKETPLACE TITLE: SÀN GIAO DỊCH TRỰC TUYẾN
   =========================================================== */

.mp-feed-label {
  font-size: 0.9375rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  color: #111827 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ===========================================================
   HOTFIX 3 — LISTING CARD USER NAME
   Always inside the card, never overflows, never wraps, ellipsis.
   =========================================================== */

/* Marketplace Feed (mp-card) — driver name */
.mp-card .mp-driver-name {
  display: inline-block !important;
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  flex-shrink: 1 !important;
  flex: 0 1 auto !important;
  margin-left: auto !important;
  width: auto !important;
}

/* Live Feed (dlc-card) — user name */
.dlc-card .dlc-user-name {
  display: inline-block !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  flex-shrink: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Live Feed bottom user row — let name flex, actions stay shrink-proof */
.dlc-card .dlc-user {
  min-width: 0 !important;
  overflow: hidden !important;
}

.dlc-card .dlc-actions {
  flex-shrink: 0 !important;
}

/* ===========================================================
   REDUCED MOTION — respect OS preference
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  .hp-vinago-brand-word {
    animation: none !important;
  }
}

/* ===========================================================
   ACCESSIBILITY — keep keyboard tap targets & contrast
   =========================================================== */

.hp-vinago-logo:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 2px;
  border-radius: 6px;
}