/** Shopify CDN: Minification failed

Line 103:1 Unexpected "-"

**/
.top-bar .offer-text-wrap {
  padding: 8px 0 0;
  position: relative;
}
.top-bar .grid-wrapper .richtext strong,
.top-bar .mobile-marquee strong {
  color: var(--color-button);
}
.top-bar .grid-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.top-bar .grid-wrap .grid-wrapper {
  width: 33.33%;
}
.top-bar .grid-wrap .grid-wrapper.center-block-box {
  text-align: center;
}
.top-bar .grid-wrapper .richtext {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
}
.top-bar .grid-wrapper .richtext .richtext-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar .grid-wrapper .richtext .icon {
  font-size: 18px;
  line-height: 1;
  display: flex;
}
.top-bar .grid-wrapper .richtext a,
.top-bar .grid-wrapper .richtext p {
  margin: 0;
}
.top-bar .grid-wrapper .richtext a {
  text-decoration: underline;
}
.top-bar .grid-wrap .grid-wrapper.center-block-box .richtext {
  justify-content: center;
}

/* Keep left-side text1/text4 block in a single row, don't wrap to 2 lines */
.top-bar .grid-wrap .grid-wrapper:first-child .richtext {
  flex-wrap: nowrap;
}
.top-bar .grid-wrap .grid-wrapper:first-child .richtext .richtext-block {
  white-space: nowrap;
}

/* Shrink font/gap in the range where it was wrapping (~1200px–1600px) */
@media (min-width: 1200px) and (max-width: 1600px) {
  .top-bar .grid-wrap .grid-wrapper:first-child .richtext {
    gap: 30px;
  }
  .top-bar .grid-wrap .grid-wrapper:first-child .richtext .icon {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .top-bar .grid-wrap .grid-wrapper {
    display: none;
  }
  .top-bar .grid-wrap .grid-wrapper.right-block-box,
  .top-bar .grid-wrap .grid-wrapper.left-block-box {
    display: block;
    width: 100%;
  }
  .top-bar .grid-wrap .grid-wrapper.center-block-box {
    text-align: start;
  }
  .top-bar .grid-wrap .grid-wrapper.center-block-box .richtext {
    justify-content: start;
  }
}
@media(max-width: 767px){
  .top-bar .offer-text-wrap{
    padding: 0;
  }
  .top-bar .grid-wrap .grid-wrapper.center-block-box {
    text-align: center;
  }
  .top-bar .grid-wrap .grid-wrapper.center-block-box .richtext {
    justify-content: center;
  }
}
@media(max-width: 320px){
  .top-bar .grid-wrapper .richtext p {
    font-size: 12px;
  }
  .top-bar .grid-wrapper .richtext p strong {
    color: var(--color-button);
}-
}

.top-bar .locali-block {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
.top-bar .locali-block .locali-box form button {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  gap: 5px;
}
.top-bar .locali-block .locali-box .locali-dd ul {
  position: absolute;
  top: 100%;
  inset-inline-end: 0;
  padding: 20px;
  background-color: var(--color-background);
  z-index: 9;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  box-shadow: 0 0 15px #2b2b2b26;
  max-height: 350px;
  max-width: 200px;
  overflow-y: auto;
}
.top-bar .locali-block .locali-box .locali-dd ul li {
  margin-top: 10px;
}
.top-bar .locali-block .locali-box .locali-dd ul li:first-child {
  margin-top: 0;
}
.top-bar .locali-block .locali-box .locali-dd ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar .locali-block .locali-box .locali-dd ul li a.active {
  color: var(--color-foreground-hover);
}

/* Mobile marquee for left-side content (text1 + text4) */
.top-bar .mobile-marquee {
  display: none;
}
/* Divider between Help center (text1) and Free shipping (text4) */
.top-bar .grid-wrap .grid-wrapper:first-child .richtext .richtext-block + .richtext-block {
  position: relative;
}
.top-bar .grid-wrap .grid-wrapper:first-child .richtext .richtext-block + .richtext-block::before {
  content: "";
  position: absolute;
  inset-inline-start: -8px;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: currentColor;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .top-bar .mobile-marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 8px 0;
  }
  .top-bar .mobile-marquee .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 12s linear infinite;
  }
  .top-bar .mobile-marquee:hover .marquee-track {
    animation-play-state: paused;
  }
  .top-bar .mobile-marquee .marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-inline-end: 30px;
    white-space: nowrap;
  }
  .top-bar .mobile-marquee .richtext-block {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .top-bar .mobile-marquee .icon {
    font-size: 16px;
    line-height: 1;
    display: flex;
  }
  .top-bar .mobile-marquee p {
    margin: 0;
    font-size: 16px;
  }
  .top-bar .grid-wrap .grid-wrapper.right-block-box,
  .top-bar .grid-wrap .grid-wrapper.left-block-box {
    display: none;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}