/* ================================================================
   ARGOTRANS — стилове за районните страници (/putna-pomosht-<район>/)
   ----------------------------------------------------------------
   ГЕНЕРИРАН ФАЙЛ — не редактирай ръчно секциите отбелязани като
   "извлечено от putna-pomosht-sofia". Общата хрома (header, mobile
   menu, footer, .container, .btn-cta) идва от style.css.
   ================================================================ */

/* ---------------- Breadcrumb (извлечено от putna-pomosht-sofia) ---------------- */
.breadcrumb-bar {
  background: #0d0d0d;
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #4b5563;
}
.breadcrumb a { color: #4b5563; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: #2a2a2a; }

/* ---------------- Hero (извлечено, .sofia-hero → .rayon-hero) ---------------- */
.rayon-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.92) 100%), url('../images/putna-pomosht/repatrirane-avtomobil-sofia-2.jpg') center/cover no-repeat;
  background-attachment: fixed, fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Radial yellow glow in center */
.rayon-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,200,0,0.09) 0%, transparent 65%);
  pointer-events: none;
}

/* Animated particle dots — pseudo-element 1 */
.rayon-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,200,0,0.25) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,200,0,0.12) 1px, transparent 1px);
  background-size: 80px 80px, 130px 130px;
  background-position: 0 0, 40px 40px;
  animation: particleDrift 18s linear infinite;
  pointer-events: none;
  opacity: 0.4;
}

@keyframes particleDrift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-12px, 8px); }
  50%  { transform: translate(-6px, 18px); }
  75%  { transform: translate(8px, 10px); }
  100% { transform: translate(0, 0); }
}

/* Extra floating orb */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(255,200,0,0.06) 0%, transparent 70%);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 250px;
  height: 250px;
  bottom: 5%;
  right: -5%;
  background: radial-gradient(circle, rgba(255,200,0,0.05) 0%, transparent 70%);
  animation: orbFloat2 11s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(24px) scale(1.05); }
}

.rayon-hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.rayon-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  padding-bottom: 0;
}

.rayon-hero h1 span {
  color: var(--yellow);
}

@keyframes heroRiseIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-underline {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  border-radius: 4px;
  width: min(480px, 85%);
  margin: 16px auto 0;
  box-shadow: 0 0 20px rgba(255,200,0,0.6);
}

@keyframes underlineExpand {
  to { width: min(480px, 85%); }
}

/* Status indicator */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px auto 0;
  padding: 10px 22px;
  border: 1px solid rgba(255,200,0,0.2);
  border-radius: 50px;
  background: rgba(255,200,0,0.04);
  font-family: var(--font-body);
  font-size: 14px;
  color: #d1d5db;
  letter-spacing: 0.3px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: statusBlink 2s ease-in-out infinite;
  box-shadow: 0 0 6px #22c55e;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
  50%       { opacity: 0.4; box-shadow: 0 0 2px #22c55e; }
}

.status-text {
  color: #fff;
  font-weight: 500;
}

.status-badge {
  color: #22c55e;
  font-weight: 500;
  font-size: 13px;
}

/* Stat badges */
.hero-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 2px solid var(--yellow);
  border-radius: 50px;
  background: rgba(255,200,0,0.07);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255,200,0,0.15);
}

.hero-stat-badge.fly-in {
}

@keyframes statFlyIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Phone button */
.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding: 20px 44px;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(255,200,0,0.45), 0 4px 20px rgba(255,200,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-phone-btn:hover {
  color: #0a0a0a;
  transform: scale(1.04) !important;
  box-shadow: 0 0 60px rgba(255,200,0,0.6), 0 6px 30px rgba(255,200,0,0.4);
}

@keyframes heroPhoneIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes phonePulseHero {
  0%, 100% { box-shadow: 0 0 40px rgba(255,200,0,0.45), 0 4px 20px rgba(255,200,0,0.3); }
  50%       { box-shadow: 0 0 70px rgba(255,200,0,0.7), 0 8px 40px rgba(255,200,0,0.5); }
}

.hero-phone-btn i {
  font-size: 20px;
}

@keyframes phoneRingHero {
  0%, 85%, 100% { transform: rotate(0deg); }
  90%            { transform: rotate(-18deg); }
  95%            { transform: rotate(18deg); }
}

.hero-small-text {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 0.3px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION 2 — REACTION TIME TIMELINE
   ============================================================ */
.timeline-section {
  background: #111;
  padding: 90px 0;
  overflow: hidden;
}


@media (max-width: 768px) {
  .rayon-hero { background-attachment: scroll, scroll; }
}

/* ---------------- Section label + title (извлечено) ---------------- */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-label.in-view { opacity: 1; transform: translateY(0); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.section-title.in-view { opacity: 1; transform: translateY(0); }
.section-title span { color: var(--yellow); }


/* ---------------- Броячи (извлечено) ---------------- */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid #1e1e1e;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 70px;
}

@media (max-width: 700px) {
  .counters-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .counters-row { grid-template-columns: 1fr; }
}

.counter-cell {
  background: #141414;
  padding: 38px 24px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.counter-cell.in-view { opacity: 1; transform: translateY(0); }
.counter-cell:nth-child(2) { transition-delay: 0.1s; }
.counter-cell:nth-child(3) { transition-delay: 0.2s; }
.counter-cell:nth-child(4) { transition-delay: 0.3s; }

.counter-cell::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #222;
}
.counter-cell:last-child::after { display: none; }

@media (max-width: 700px) {
  .counter-cell:nth-child(2)::after { display: none; }
}

.counter-value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}


/* ---------------- Feature карти (извлечено) ---------------- */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .features-row { grid-template-columns: 1fr; }
}

.feature-card {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 36px 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease;
}
.feature-card.in-view { opacity: 1; transform: translateY(0); }
.feature-card:nth-child(2) { transition-delay: 0.12s; }
.feature-card:nth-child(3) { transition-delay: 0.24s; }

.feature-card:hover {
  border-color: rgba(255,200,0,0.3);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  padding-bottom: 0;
}

.feature-desc a {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,200,0,0.3);
  transition: border-color 0.2s ease;
}
.feature-desc a:hover {
  border-color: var(--yellow);
}

/* ============================================================
   SECTION 6 — ASYMMETRIC PHOTO GALLERY
   ============================================================ */


.photo-caption { z-index: 2; }

/* ============================================================
   SOFIA FAQ ACCORDION
   ============================================================ */

/* ---------------- Финален CTA (извлечено) ---------------- */
.final-cta-section {
  background: linear-gradient(to bottom, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.95) 100%), url('../images/putna-pomosht/putna-pomosht-sofia-02.jpg') center/cover no-repeat;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,200,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Animated ring effect */
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,200,0,0.08);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
}
.cta-ring-1 { width: 400px; height: 400px; animation: ringExpand 5s ease-in-out infinite; }
.cta-ring-2 { width: 600px; height: 600px; animation: ringExpand 5s ease-in-out 1.5s infinite; }
.cta-ring-3 { width: 800px; height: 800px; animation: ringExpand 5s ease-in-out 3s infinite; }

@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(0.85); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.final-cta-eyebrow.in-view { opacity: 1; }

.final-cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s;
}
.final-cta-h2.in-view { opacity: 1; transform: translateY(0); }
.final-cta-h2 span { color: var(--yellow); }

.final-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: #9ca3af;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}
.final-cta-sub.in-view { opacity: 1; }

.final-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 52px;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 0 50px rgba(255,200,0,0.5);
  animation: finalPulse 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s, transform 0.2s ease, box-shadow 0.2s ease;
}
.final-phone-btn.in-view { opacity: 1; }
.final-phone-btn:hover {
  color: #0a0a0a;
  transform: scale(1.04);
  box-shadow: 0 0 80px rgba(255,200,0,0.7);
}

@keyframes finalPulse {
  0%, 100% { box-shadow: 0 0 50px rgba(255,200,0,0.5); }
  50%       { box-shadow: 0 0 90px rgba(255,200,0,0.75); }
}

.final-phone-btn i {
  font-size: 22px;
  animation: phoneRing 3s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  85%            { transform: rotate(-20deg); }
  90%            { transform: rotate(20deg); }
  95%            { transform: rotate(-10deg); }
}

.final-reassurance {
  margin-top: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #374151;
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
}
.final-reassurance.in-view { opacity: 1; }

.final-reassurance span {
  color: #4b5563;
  margin: 0 12px;
}

.final-reassurance span::before {
  content: '✓ ';
  color: var(--yellow);
}

/* ============================================================
   BREADCRUMB (minimal)
   ============================================================ */

/* ================================================================
   Специфични за районните страници — писани наново
   ================================================================ */
/* ---- Hero: районните страници са по-ниски от sofia hero и всяка
        може да зададе своя картинка чрез --hero-img на самата секция ---- */
.rayon-hero {
  --hero-img: url('../images/putna-pomosht/repatrirane-avtomobil-sofia-2.jpg');
  min-height: 62vh;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.93) 100%),
    var(--hero-img) center/cover no-repeat;
  background-attachment: fixed, fixed;
}

/* WebP за hero фона. Браузър без поддръжка на image-set просто остава
   на jpg-то от правилото по-горе — затова е в @supports, а не вместо него. */
@supports (background-image: image-set(url("a.webp") type("image/webp"))) {
  .rayon-hero {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.93) 100%),
      image-set(var(--hero-img-webp) type("image/webp"), var(--hero-img) type("image/jpeg")) center/cover no-repeat;
    background-attachment: fixed, fixed;
  }
}

/* Мобилен hero: картинка до 820 px (≤ 60 KB) и без fixed attachment —
   LCP елементът на всяка районна страница. */
@media (max-width: 767px) {
  .rayon-hero {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.93) 100%),
      var(--hero-img-mobile, var(--hero-img-webp, var(--hero-img))) center/cover no-repeat;
    background-attachment: scroll;
  }
}

.rayon-hero-inner { padding: 110px 20px 70px; }
.rayon-hero h1 { font-size: clamp(34px, 6vw, 66px); letter-spacing: 2px; }

.rayon-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: #d1d5db;
  max-width: 640px;
  margin: 22px auto 0;
}

/* ---- Общи секции ---- */
.rayon-section { padding: 76px 0; }
.rayon-section--alt { background: #0d0d0d; }

.rayon-section .section-label,
.rayon-section .section-title { text-align: left; }

/* ---- Текстово тяло ---- */
.rayon-prose {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: #c9c9c9;
  max-width: 760px;
}
.rayon-prose p { padding-bottom: 1.15em; }
.rayon-prose strong { color: #fff; font-weight: 600; }
.rayon-prose a { color: var(--yellow); }
.rayon-prose a:hover { text-decoration: underline; }

.rayon-prose h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--yellow);
  margin: 30px 0 12px;
  padding-bottom: 0;
}

/* ---- Чипове: ориентири и артерии ---- */
.chip-group { margin-top: 30px; }
.chip-group + .chip-group { margin-top: 22px; }

.chip-group-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
}

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid #262626;
  border-radius: 50px;
  background: #131313;
  font-family: var(--font-body);
  font-size: 13px;
  color: #9ca3af;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.chip:hover { border-color: rgba(255,200,0,0.4); color: #e5e7eb; }
.chip i { color: var(--yellow); font-size: 11px; }

/* ---- Мини ценова таблица ---- */
.rayon-price {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 15px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
}
.rayon-price th,
.rayon-price td { padding: 13px 18px; text-align: left; border-bottom: 1px solid #1a1a1a; }
.rayon-price th {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 500;
}
.rayon-price td { color: #c9c9c9; }
.rayon-price td:last-child { text-align: right; color: var(--yellow); font-weight: 600; white-space: nowrap; }
.rayon-price tr:last-child td { border-bottom: 0; }

.rayon-price-note { font-family: var(--font-body); font-size: 13px; color: #6b7280; margin-top: 12px; }
.rayon-price-note a { color: var(--yellow); font-weight: 600; }

/* ---- Двуколонен блок: текст + карта ---- */
.rayon-split { display: grid; grid-template-columns: 1.35fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .rayon-split { grid-template-columns: 1fr; gap: 34px; } }

.rayon-map {
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}
.rayon-map iframe { display: block; width: 100%; height: 260px; border: 0; filter: grayscale(1) invert(0.9) contrast(0.85); }
.rayon-map-caption {
  font-family: var(--font-body);
  font-size: 12px;
  color: #6b7280;
  padding: 10px 14px;
  border-top: 1px solid #1a1a1a;
}

/* ---- Странична карта с телефон ---- */
.rayon-aside {
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  background: linear-gradient(160deg, #141414 0%, #0f0f0f 100%);
  padding: 26px 24px;
  margin-bottom: 22px;
}
.rayon-aside h3 { font-family: var(--font-heading); font-size: 19px; color: #fff; padding-bottom: 8px; }
.rayon-aside p { font-family: var(--font-body); font-size: 14px; color: #9ca3af; line-height: 1.7; }
.rayon-aside .btn-cta { margin-top: 16px; width: 100%; justify-content: center; }

.rayon-eta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255,200,0,0.35);
  border-radius: 50px;
  background: rgba(255,200,0,0.07);
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.5px;
}

/* ---- Линкове към други райони ---- */
.rayon-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .rayon-links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rayon-links { grid-template-columns: 1fr; } }

.rayon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  background: #111;
  font-family: var(--font-body);
  font-size: 14px;
  color: #c9c9c9;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.rayon-link:hover { border-color: rgba(255,200,0,0.45); background: #161616; color: #fff; }
.rayon-link i { color: var(--yellow); font-size: 11px; }

