/* ═══════════════════════════════════════════
   İNFO ŞERİDİ (Info Strip)
   Eski flash-banner'ın yerine ince bilgi bandı
   ═══════════════════════════════════════════ */

.infostrip {
    background: #1a1a2e;
    border-bottom: 2px solid #e53e29;
    width: 100%;
    z-index: 990;
}

.infostrip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    gap: 12px;
    flex-wrap: nowrap;
}

/* Ortak öğe stili */
.infostrip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: #cdd4e0;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .2s;
    line-height: 1;
}
.infostrip-item i {
    font-size: .88rem;
    flex-shrink: 0;
}

/* Sol grup */
.infostrip-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sağ grup */
.infostrip-right {
    display: flex;
    align-items: center;
}

/* Telefon — kırmızı hover */
.infostrip-tel { color: #fff; font-weight: 600; }
.infostrip-tel i { color: #e53e29; }
.infostrip-tel:hover { color: #e53e29 !important; }

/* WhatsApp — yeşil */
.infostrip-wa i { color: #25d366; }
.infostrip-wa:hover { color: #25d366 !important; }

/* Saat bilgisi */
.infostrip-hours { color: #9aa3b2; }
.infostrip-hours i { color: #e53e29; }
.infostrip-sep { margin: 0 6px; color: #444; }
.infostrip-hd { color: #cdd4e0; font-weight: 600; }

/* ── Mobil ── */
@media (max-width: 767px) {
    /* Saat kısmı gizlensin, telefon + WA kalsın */
    .infostrip-right { display: none; }

    .infostrip-inner {
        justify-content: center;
        padding: 8px 0;
    }

    .infostrip-left {
        gap: 24px;
    }

    .infostrip-item {
        font-size: .83rem;
    }
}

@media (max-width: 400px) {
    .infostrip-left { gap: 14px; }
    .infostrip-item span:not(.infostrip-hd) { display: none; }
    /* Sadece ikonlar görünsün — numara gizlensin */
    .infostrip-tel span,
    .infostrip-wa span { display: none; }
    .infostrip-tel i,
    .infostrip-wa i { font-size: 1.1rem; }
}
