* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Google Sans', Arial, sans-serif;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hamzzi-wrap { margin-bottom: 6px; }

.search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 10px 20px;
  width: 480px;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.search-wrap:hover {
  box-shadow: 0 1px 6px rgba(32,33,36,.28);
  border-color: rgba(223,225,229,0);
}

.search-text { color: #70757a; font-size: 16px; user-select: none; }

.logos {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  align-items: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #e8eaed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  overflow: hidden;
  padding: 6px;
}

.logo-item:hover .logo-circle {
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  border-color: #ccc;
  transform: translateY(-2px);
}

.logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.logo-label { font-size: 11px; color: #70757a; }
