/** Shopify CDN: Minification failed

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

**/
.custom-announcement-bar {
  width: 100%;
  display: flex;
  position: relative;
}

.custom-announcement-bar__float {
  width: 100%;
  transition: opacity 0.2s ease-in-out;
}

.custom-announcement-bar__float.is-invisible {
  opacity: 0;
}

.custom-announcement-bar__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 1rem;
  width: 100%;
}

/* ==========================================================================
   Left/Right Layout
   ========================================================================== */

.custom-announcement-bar__left {
  display: none;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__left {
    display: flex;
    align-items: center;
  }
}

.custom-announcement-bar__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__right {
    flex-direction: row;
    justify-content: flex-end;
  }
}

/* ==========================================================================
   Icons (Desktop only)
   ========================================================================== */

.custom-announcement-bar__icons {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__icons {
    display: flex;
  }
}

.custom-announcement-bar__icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-announcement-bar__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.custom-announcement-bar__icon-title {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Inline icons (within slides) */
.custom-announcement-bar__icons--inline {
  flex-shrink: 0;
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */

.custom-announcement-bar__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  gap: 0.25rem;
  flex-flow: row nowrap;
  font-family: "Courier New", Courier, monospace;
}

.custom-announcement-bar__countdown>span {
  background-color: var(--color-text);
  color: var(--color-background);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  height: 2rem;
  min-width: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop countdown - hidden on mobile */
.custom-announcement-bar__left .custom-announcement-bar__countdown {
  display: none;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__left .custom-announcement-bar__countdown {
    display: flex;
  }
}

/* Mobile countdown - shown only on mobile, on top of messages */
.custom-announcement-bar__countdown--mobile {
  display: flex;
  transform: scale(0.85);
  transform-origin: center;
  order: -1;
}

.custom-announcement-bar__countdown--mobile>span {
  padding: 0.2rem 0.4rem;
  height: 1.6rem;
  min-width: 1.6rem;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__countdown--mobile {
    display: none;
  }
}

/* ==========================================================================
   Messages
   ========================================================================== */

.custom-announcement-bar__messages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__messages {
    justify-content: center;
    text-align: center;
  }
}

.custom-announcement-bar__message {
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .custom-announcement-bar__message {
    display: block;
  }
}

.custom-announcement-bar__message-text,
.custom-announcement-bar__message-link {}

.custom-announcement-bar__message-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.custom-announcement-bar__message-link:hover,
.custom-announcement-bar__message-link:focus {
  text-decoration: none;
}

/* ==========================================================================
   Splide Slider
   ========================================================================== */

.custom-announcement-bar__slider {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.custom-announcement-bar__slider .splide__track {
  overflow: hidden;
}

.custom-announcement-bar__slider .splide__list {
  display: flex;
}

.custom-announcement-bar__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 0.25rem;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__slide {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
  }
}

/* Reorder: countdown first, message second on mobile */
.custom-announcement-bar__slide .custom-announcement-bar__countdown--inline {
  order: 1;
}

.custom-announcement-bar__slide .custom-announcement-bar__message {
  order: 2;
}

.custom-announcement-bar__slide .custom-announcement-bar__icons--inline {
  order: 0;
}

@media screen and (min-width: 768px) {

  .custom-announcement-bar__slide .custom-announcement-bar__message,
  .custom-announcement-bar__slide .custom-announcement-bar__countdown--inline,
  .custom-announcement-bar__slide .custom-announcement-bar__icons--inline {
    order: 0;
  }
}

/* Slider Arrows */
.custom-announcement-bar__slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 0.25rem;
}

@media screen and (min-width: 768px) {
  .custom-announcement-bar__slider-arrows {
    padding: 0;
  }
}

.custom-announcement-bar__slider-arrow.splide__arrow {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 1;
  height: auto;
  width: auto;
  transition: opacity 0.2s ease;
  pointer-events: auto;
  background-color: var(--color-background);
}

.custom-announcement-bar__slider-arrow.splide__arrow:hover {
  opacity: 1;
}

.custom-announcement-bar__slider-arrow.splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.custom-announcement-bar__slider-arrow.splide__arrow svg {
  width: 16px;
  height: 16px;
}

.custom-announcement-bar__slider-arrow.splide__arrow--next {
  right: -0.5rem;
}

.custom-announcement-bar__slider-arrow.splide__arrow--prev {
  left: -0.5rem;
}

.custom-announcement-bar__slider-arrow.splide__arrow--prev svg {
  transform: none;
}

/* Hide Splide default pagination */
.custom-announcement-bar__slider .splide__pagination {
  display: none;
}

/* Inline countdown (within slides) */
.custom-announcement-bar__countdown--inline {
  flex-shrink: 0;
}

/* Smaller countdown on mobile */
@media screen and (max-width: 767px) {
  .custom-announcement-bar__countdown--inline {
    transform: scale(0.85);
    transform-origin: center;
  }

  .custom-announcement-bar__countdown--inline>span {
    padding: 0.2rem 0.4rem;
    height: 1.6rem;
    min-width: 1.6rem;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   CTA Button
   ========================================================================== */

.custom-announcement-bar__cta {
  appearance: none;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.custom-announcement-bar__cta:hover {
  text-decoration: none;
}

/* Desktop: button style */
@media screen and (max-width: 767px) {
  .custom-announcement-bar__cta.button {
    padding: 0;
    display: inline;
    border: none;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    border-radius: 0;
    text-underline-offset: 4px;
    overflow: visible;
    text-decoration-color: var(--color-accent);
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
  }

  .custom-announcement-bar__cta.button:hover {
    background: none;
    opacity: 0.8;
    color: var(--color-text);
  }

  /* ==========================================================================
   Legacy Button (kept for backwards compatibility)
   ========================================================================== */

  .custom-announcement-bar__button {
    appearance: none;
    background: transparent;
    background-color: var(--color-background);
    color: var(--color-text);
    border: 2px solid var(--color-text);
    padding: 0.5rem 1rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.2s ease;
    text-wrap: nowrap;
  }

  .custom-announcement-bar__button:hover {
    background-color: var(--color-text);
    color: var(--color-background) !important;
  }