/* ========== TOP HEADER ========== */
.top-header {
  background: #EBEBEB;
  border-bottom: 1px solid #e0e0e0;
}

.top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  height: 48px;
}

.whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}


/* ========== RESPONSIVE TOP HEADER ========== */
@media (max-width: 767px) {
  /* center logo, hide WhatsApp on small screens */
  .top-container {
    justify-content: center;
  }
  .whatsapp {
    display: none;
  }
}
