/** Shopify CDN: Minification failed

Line 107:0 Expected "}" to go with "{"

**/
/* ===== Top Split Bar (No overlap, always 50/50) ===== */

.top-split-bar {
  width: 100%;
  overflow: hidden;
}

.top-split-bar__wrap {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Force exact 50% / 50% and prevent flex overflow */
.top-split-bar__left,
.top-split-bar__right {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;

  overflow: hidden; /* ensures nothing can go into the other half */
}

/* Colors */
.top-split-bar__left {
  background: var(--left-bg);
  color: var(--left-text);
}

.top-split-bar__right {
  background: var(--right-bg);
  color: var(--right-text);
  font-weight: 600;
  text-align: center;
}

/* RIGHT: can wrap, but stay inside 50% */
.top-split-bar__right-text {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

/* ===== LEFT: marquee viewport ===== */
.tsb-viewport {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* The moving container */
.tsb-marquee {
  display: inline-block;
  will-change: transform;

  /* defaults, JS overwrites */
  --tsb-duration: 8s;
  --tsb-start: 100%;
  --tsb-end: -100%;
}

/* Run animation only when class is present */
.tsb-marquee.tsb-run {
  animation: tsb-move var(--tsb-duration) linear 1;
}

/* Text style */
.tsb-marquee__text {
  display: inline-block;
  padding-right: 16px; /* small breathing room */
}

/* From right outside to left outside */
@keyframes tsb-move {
  0%   { transform: translateX(var(--tsb-start)); }
  100% { transform: translateX(var(--tsb-end)); }
}

/* Small phones */
@media (max-width: 380px) {
  .top-split-bar__left,
  .top-split-bar__right {
    font-size: 13px;
    padding: 9px 10px;
  }

