/* ============================================================
   Fox / Renard — Visual Identity & UX
   Decision architecture layer: surfaces what matters right now.
   ============================================================ */

:root {
  --fox-color: #FF6F00;
  --fox-color-soft: rgba(255, 111, 0, 0.08);
  --fox-color-border: rgba(255, 111, 0, 0.6);
}

/* ── Inline fox badge mark (emoji-driven, no SVG) ───────────── */
.fox-icon {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  flex-shrink: 0;
}

/* ── "Renard recommande" badge ──────────────────────────────── */
.fox-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fox-color);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── hp-badge variant for card badge row ────────────────────── */
.hp-badge-fox {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--fox-color);
  border: none;
}

/* ── Card variant — Tier 1 STRONG (Fox pick) ────────────────── */
.card-fox {
  border-left: 3px solid var(--fox-color) !important;
  background: var(--fox-color-soft) !important;
  transform: scale(1.02);
  box-shadow: 0 0 0 1px var(--fox-color-border), 0 8px 32px rgba(255, 111, 0, 0.15) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ── Fox Hero Slot — "À faire maintenant" ───────────────────── */
.fox-hero-slot {
  margin: 0 0 24px 0;
  padding: 0;
}

.fox-hero-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.fox-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fox-color);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Fox dominant card ──────────────────────────────────────── */
.hp-card-fox {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-secondary, #1a1a2e);
  border-left: 4px solid var(--fox-color);
  box-shadow: 0 0 0 1px var(--fox-color-border), 0 12px 40px rgba(255, 111, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.hp-card-fox:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--fox-color-border), 0 20px 50px rgba(255, 111, 0, 0.25);
}

.hp-card-fox .hp-card-fox-cover {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 111, 0, 0.08);
  flex-shrink: 0;
}

.hp-card-fox .hp-card-fox-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 111, 0, 0.04);
}

.hp-card-fox .hp-card-fox-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hp-card-fox .hp-card-fox-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: var(--text-primary, #fff);
}

.hp-card-fox .hp-card-fox-meta {
  font-size: 13px;
  color: var(--text-secondary, rgba(255,255,255,0.6));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-card-fox .hp-card-fox-footer {
  margin-top: auto;
}

@media (min-width: 600px) {
  .hp-card-fox {
    flex-direction: row;
    min-height: 180px;
  }

  .hp-card-fox .hp-card-fox-cover {
    width: 260px;
    height: auto;
    min-height: 180px;
    flex-shrink: 0;
  }

  .hp-card-fox .hp-card-fox-title {
    font-size: 22px;
  }
}

/* ── Fox empty state ────────────────────────────────────────── */
.fox-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px dashed var(--fox-color-border);
  color: var(--fox-color);
  font-size: 13px;
  opacity: 0.7;
}

/* ── Social proof improvements ──────────────────────────────── */
.hp-here-now {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fox-color);
  background: var(--fox-color-soft);
  border-radius: 6px;
  padding: 2px 7px;
}

.hp-trending-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #ff9f0a;
}
