/* ============================================
   CANLI YAKIT FİYAT ŞERİDİ
   Footer üstünde, tam genişlik, koyu mavi gradient
   ============================================ */

.yakit-canli-band {
  width: 100%;
  background: linear-gradient(135deg, #0a2540 0%, #0d3556 50%, #084770 100%);
  color: #fff;
  padding: 20px 24px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  animation: bandFadeIn 0.8s ease-out;
}

/* Üstte ince turkuaz çizgi */
.yakit-canli-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #14b8a6 30%, #14b8a6 70%, transparent 100%);
  opacity: 0.7;
}

/* Hafif noise/grid efekti (subtle) */
.yakit-canli-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.yakit-canli-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SOL: BAŞLIK + PULSE NOKTA
   ============================================ */
.yakit-canli-baslik {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Pulse Nokta - Ana */
.canli-nokta {
  width: 10px;
  height: 10px;
  background: #14b8a6;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  animation: pulseRing 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.canli-nokta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid #14b8a6;
  opacity: 0;
  animation: pulseExpand 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(20, 184, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

@keyframes pulseExpand {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Pulse Nokta - Mini (alt sayaçta) */
.canli-nokta-mini {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #14b8a6;
  border-radius: 50%;
  margin-right: 4px;
  position: relative;
  animation: pulseSmall 1.8s ease-in-out infinite;
}

@keyframes pulseSmall {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ============================================
   ORTA: FİYATLAR
   ============================================ */
.yakit-canli-fiyatlar {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.yakit-canli-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: default;
  backdrop-filter: blur(10px);
}

.yakit-canli-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.yakit-canli-emoji {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.yakit-canli-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.yakit-canli-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.yakit-canli-deger {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.3px;
}

/* ============================================
   SAĞ: META BİLGİ
   ============================================ */
.yakit-canli-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.yakit-canli-sep {
  opacity: 0.4;
  margin: 0 2px;
}

#yakitGuncellemeSayac {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE (mobil)
   ============================================ */
@media (max-width: 768px) {
  .yakit-canli-band {
    padding: 18px 16px;
    margin-top: 40px;
  }
  
  .yakit-canli-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  
  .yakit-canli-fiyatlar {
    gap: 12px;
    width: 100%;
  }
  
  .yakit-canli-item {
    padding: 8px 12px;
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  
  .yakit-canli-emoji {
    font-size: 18px;
  }
  
  .yakit-canli-deger {
    font-size: 16px;
  }
  
  .yakit-canli-label {
    font-size: 9px;
  }
  
  .yakit-canli-meta {
    font-size: 11px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .yakit-canli-fiyatlar {
    gap: 8px;
  }
  
  .yakit-canli-item {
    padding: 6px 10px;
    gap: 6px;
  }
  
  .yakit-canli-info {
    align-items: flex-start;
  }
  
  .yakit-canli-deger {
    font-size: 15px;
  }
}

/* Footer'ı band'dan sonra container ile kapsamamıza yarayan ek class */
.container-footer-only {
  padding-top: 0;
}
