
.shop-chrome {
  --sc-black: #000;
  --sc-white: #fff;
  --sc-grey: #757575;
  font-family: "Pilat Wide", Arial, Helvetica, sans-serif;
  background: var(--sc-white);
  color: var(--sc-black);
  width: 100%;
}

.shop-chrome,
.shop-chrome *,
.shop-chrome *::before,
.shop-chrome *::after {
  box-sizing: border-box;
}

.shop-chrome a {
  color: inherit;
  text-decoration: none;
}

.shop-chrome ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-chrome button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.shop-chrome svg { display: block; }
.shop-chrome__toggle svg,
.shop-chrome__link-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.shop-chrome .logo-slot svg { fill: currentColor; stroke: none; }

.shop-chrome__logo { gap: 10px; }
.logo-agent {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  color: currentColor;
}

.shop-chrome__infobar {
  background: var(--sc-black);
  color: var(--sc-white);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .625rem;
  line-height: 1.73em;
  padding: 3px 10px 2px;
}

.shop-chrome__infobar p {
  margin: 0;
}

.shop-chrome__bar {
  width: 100%;
  background: var(--sc-white);
}

.shop-chrome__bar-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-chrome__col {
  display: flex;
  align-items: center;
  flex: 1 1 0;
}

.shop-chrome__col--left {
  justify-content: flex-start;
  padding-left: .5rem;
  column-gap: 20px;
}

.shop-chrome__col--center {
  justify-content: center;
}

.shop-chrome__col--right {
  justify-content: flex-end;
  padding-right: 0;
}

.shop-chrome__toggle svg {
  width: 24px;
  height: 24px;
}

.shop-chrome__logo {
  display: flex;
  align-items: flex-end;
  max-width: 100%;
}

.shop-chrome .logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 30px;
}
.shop-chrome .logo-slot svg { height: 30px; width: auto; display: block; }

.shop-chrome__links {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: .625rem;
}

.shop-chrome__link {
  position: relative;
  display: flex;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  align-items: center;
  column-gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-chrome__link-icon svg {
  width: 24px;
  height: 24px;
}

.shop-chrome__link-label,
.shop-chrome__cart-count {
  white-space: nowrap;
}

.shop-chrome__link::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid var(--sc-black);
  transition: width .25s ease-in-out;
}

.shop-chrome__link:hover::after {
  width: 100%;
}

.shop-chrome__nav {
  width: 100%;
  border-top: 1px solid #ebebeb;
}

.shop-chrome__menu {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  height: 1.875rem;
  font-weight: 700;
}

.shop-chrome__menu li {
  display: flex;
  align-items: center;
  height: 53px;
  line-height: 1rem;
}

.shop-chrome__menu a {
  position: relative;
  display: block;
  padding: .875rem;
  font-size: .75rem;
  line-height: 1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.shop-chrome__menu a::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid var(--sc-black);
  transition: width .25s ease-in-out;
}

.shop-chrome__menu a:hover::after {
  width: 100%;
}

.shop-chrome__menu-link--inert {
  cursor: pointer;
}

@media (max-width: 700px) {
  .shop-chrome__menu {
    flex-wrap: wrap;
    row-gap: 4px;
    height: auto;
    padding: 10px 0;
  }

  .shop-chrome__link-label,
  .shop-chrome__cart-count {
    display: none;
  }

  .shop-chrome__bar-inner {
    padding: 14px .625rem;
  }
}
