.result-header {
  background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
  padding: 1.5rem;
  color: #333;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-widget {
  position: relative;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.cart-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cart-button svg {
  fill: white;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4081;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-container {
  flex-shrink: 0;
}

.header-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.header-content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-row h2 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}
