/* =============================================
   TOP BAR
   ============================================= */

.top-bar {
  background: linear-gradient(90deg, #16213e 0%, var(--color-navy) 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  font-size: 0.82rem;
  border-bottom: 2px solid rgba(232, 160, 32, 0.35);
  position: relative;
  z-index: 100;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 40px;
}

/* ── Contact info group (right in RTL) ── */
.top-bar__group {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.1rem;
  height: 100%;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.top-bar__item--link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

/* small icon rounded square */
.top-bar__icon-wrap {
  width: 22px;
  height: 22px;
  background: rgba(232, 160, 32, 0.18);
  color: var(--color-gold);
  border-radius: var(--border-radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.top-bar__item--link:hover .top-bar__icon-wrap {
  background: rgba(232, 160, 32, 0.32);
}

/* thin pipe dividers */
.top-bar__divider {
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  align-self: center;
}

/* ── Social icons group (left in RTL) ── */
.top-bar__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.5rem;
}

.top-bar__follow-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-inline-start: 0.5rem;
  margin-inline-end: 0.25rem;
}

.top-bar__social-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--border-radius-btn);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.top-bar__social-icon:hover {
  transform: translateY(-2px);
  color: var(--color-white);
}

.top-bar__social-icon--wa:hover  { background: var(--color-green); }
.top-bar__social-icon--ig:hover  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.top-bar__social-icon--fb:hover  { background: #1877f2; }

/* ── Mobile: hide entirely ── */
@media (max-width: 767px) {
  .top-bar { display: none; }
}
