/*
 Theme Name:   Storefront Child
 Theme URI:    https://example.com
 Description:  Child Theme für Storefront mit Custom Header
 Author:       Rafael Grobelski
 Author URI:   https://grunddesigngmbh.com
 Template:     storefront
 Version:      1.0.0
*/

/* Custom Header CSS */
.site-header {
  border-bottom: 1px solid #eaeaea;
  font-family: 'Poppins', sans-serif;
}

/* Topbar */
.header-topbar {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 13px;
  color: #555;
  padding: 6px 10px;
  background: #f9f9f9;
}
.header-topbar .topbar-item {
  display: flex;
  align-items: center;
}

/* Main Header */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
}

.header-main .main-menu li {
  display: inline-block;
  margin: 0 12px;
}

.header-main .main-menu a {
  text-decoration: none;
  font-size: 15px;
  color: #222;
  transition: color 0.3s;
}
.header-main .main-menu a:hover {
  color: #fe5000; /* Sweat-Off Orange */
}

/* Logo */
.site-branding img {
  height: 40px;
  max-height: 50px;
}

/* Nav right */
.nav-right a {
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  color: #222;
}
.nav-right a:hover {
  color: #fe5000;
}

.nav-right .count {
  font-size: 14px;
  background: #fe5000;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  margin-left: 4px;
}
