/** Shopify CDN: Minification failed

Line 115:3 Expected "}" to go with "{"

**/
/* ==========================================================================
   Announcement bar
   ========================================================================== */

.announcement-bar {
  background: #260505;
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  margin: 0 15px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  padding: 0px;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 30px;
  width: 100%;
}

/* ---------- Sliding message ticker ---------- */
.announcement-bar__slider {
  position: relative;
  height: 18px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.announcement-bar__messages {
  height: 100%;
}

.announcement-bar__message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  font-size: 13px;
}

.announcement-bar__message.is-active {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar__message.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
}

/* ---------- Nav links ---------- */
.announcement-bar__links {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.announcement-bar__links a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  transition: opacity 0.15s ease;
}

.announcement-bar__links a:first-child {
  border-left: 0;
  padding-left: 0;
}

.announcement-bar__links a:hover,
.announcement-bar__links a:focus-visible {
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 749px) {
  .announcement-bar__inner {
    padding: 13px 16px;
  }

  .announcement-bar__links {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-bar__message {
    transition: none;
  }
}


@media screen and (max-width: 992px) {
  .announcement-bar__message {
    justify-content: center;
  }