/* @override 
	https://pchb.delacreme.pro/app/themes/pchb/assets/css/eshop.css */
body.shop {
  padding-top: 0;
}
body.shop main {
  background: #FFFFFF;
  color: #003974;
}
body.shop main#pchb-shop {
  padding: 50px 0;
}
.shop-top-bar {
  background: #003974;
  line-height: 17px;
  font-size: 14px;
  padding: 10px 0;
  position: sticky;
  top: 0;
}
.shop-top-bar .alignwide {
  display: flex;
  gap: 30px;
}
.shop-top-bar .alignwide a:not(:last-child) {
  position: relative;
}
.shop-top-bar .alignwide a:not(:last-child):after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: -15px;
  top: 0;
}
header.shop-header {
  padding: 10px 0;
}
header.shop-header ul.shop-links {
  margin: 0;
  display: flex;
  gap: 30px;
  font-size: 20px;
}
header.shop-header .flex-row {
  align-items: center;
}
@media only screen and (max-width: 600px) {
  header.shop-header ul.shop-links {
    margin: 0 0 0 auto;
  }
}
@media only screen and (min-width: 602px) {
  header.shop-header #shop-menu {
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    font-family: 'Tusker Grotesk', sans-serif;
    text-transform: uppercase;
  }
  header.shop-header #shop-menu a {
    transition: color 0.3s ease-in-out 0s;
  }
  header.shop-header #shop-menu a:hover {
    color: #FFE400;
  }
  header.shop-header #shop-menu .current-menu-item > a {
    color: #FFE400;
  }
}
#cart-icon {
  display: inline-block;
  position: relative;
}
#cart-icon #cart-count {
  font-family: 'Tusker Grotesk', sans-serif;
  display: inline-block;
  font-size: 10px;
  line-height: 16px;
  width: 16px;
  text-align: center;
  border-radius: 16px;
  background: #FFE400;
  color: #003974;
  position: absolute;
  right: -10px;
  top: 0;
}
#cart-icon.empty-cart #cart-count {
  display: none;
}
