/** Shopify CDN: Minification failed

Line 41:15 Unexpected "{"
Line 41:23 Expected ":"
Line 46:15 Unexpected "{"
Line 46:23 Expected ":"
Line 47:15 Unexpected "{"
Line 47:23 Expected ":"
Line 53:15 Unexpected "{"
Line 53:23 Expected ":"
Line 54:15 Unexpected "{"
Line 54:23 Expected ":"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
#shopify-section-header {
    --z-header: 90000;
    z-index: var(--z-header);
  }

  body.shopify-section-header-sticky #shopify-section-header{
    position: sticky;
    top: 0;
  }

  body.shopify-section-header-hidden #shopify-section-header{
    top: calc(0px - var(--headerHeight));
  }
  body.overflow-hidden--tablet-down.shopify-section-header-hidden #shopify-section-header{
    top: 0;
  }

  body.animate #shopify-section-header{
    transition: top 150ms ease;
  }
.page { max-width: 60ch; }
/* Add your CSS here */
#Announcement-{{section.id}} .announcement-bar-wrapper {
  overflow: hidden;
  width: 100%;
}

#Announcement-{{section.id}} .announcement, 
#Announcement-{{section.id}} .marquee {
  min-height: 32px; /* Increase this value as needed */
  display: flex;
  align-items: center;
}

#Announcement-{{section.id}} .announcement-slide,
#Announcement-{{section.id}} .announcement-item {
  padding: 8px 0;
  line-height: 1.4;
}
#Announcement-{{section.id}} .marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  background-color: var(--backgroundColor);
  color: var(--color);
  font-size: var(--fontSize);
  font-weight: var(--fontWeight);
  padding-top: var(--paddingTop);
  padding-bottom: var(--paddingBottom);
}

#Announcement-{{section.id}} .marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* CSS from snippet stylesheet tags */
.bundle-offer-container {
        margin: 20px 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .bundle-offer-banner {
        background: #f8f9fa;
        border: 2px solid #333333;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    .bundle-offer-banner:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .bundle-offer-content {
        padding: 16px 20px;
    }
    .bundle-offer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .bundle-offer-title {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        flex-grow: 1;
        text-align: center;
        padding-left: 24px;
    }
    .bundle-offer-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #666;
        transition: color 0.2s ease;
        flex-shrink: 0;
    }
    .bundle-offer-toggle:hover {
        color: #333;
    }
    .bundle-offer-description {
        color: #555;
        line-height: 1.4;
        text-align: center;
    }
    .bundle-offer-description p {
        margin: 0;
        font-size: 14px;
    }
    .bundle-offer-description p:first-child {
        margin-top: 8px;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
        .bundle-offer-content {
            padding: 5px;
        }
        
        .bundle-offer-title {
            font-size: 15px;
            line-height: 1.3;
        }
        
        .bundle-offer-description p {
            font-size: 13px;
        }
    }
    /* Animation for collapsible content */
    .bundle-offer-banner.collapsed .bundle-offer-description {
        display: none;
    }
    .bundle-offer-banner.collapsed .bundle-offer-toggle svg {
        transform: rotate(-90deg);
    }
#discount_code {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    #discount_code input[type=text] {
        padding: 0.5rem;
        border-radius: 5px 0 0 5px;
        border: 1px solid #000;
    }
    #discount_code input[type=text]:focus-visible {
        box-shadow: none;
    }
    #discount_code button {
        border: 1px solid #000;
        height: 100%;
        max-height: 42px;
        padding: 0.5rem;
        width: 70px;
        color: #fff;
        background-color: #000;
        border-radius: 0 5px 5px 0;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s linear;
    }
    #discount_code .discount_message {
        margin: 0px 0.5rem;
        flex-grow: 1;
        text-align: right;
        font-weight: bold;
    }
/* Add your CSS here */
    .announcement-bar-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
        z-index: 100;
    }

    .announcement-slider-container,
    .marquee__content {
    height: auto;
    min-height: 30px;
    }

    .announcement-slide,
    .announcement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    }

    .announcement, .marquee {
        height: 32px;
        max-height: 32px; /* Increase this value as needed */
        display: flex;
        align-items: center;
    }

    .announcement-slide, .announcement-item {
    padding: 8px 0;
    line-height: 1.4;
    }
    .marquee {
        --gap: 1rem;
        position: relative;
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: var(--gap);
        background-color: var(--backgroundColor);
        color: var(--color);
        font-size: var(--fontSize);
        font-weight: var(--fontWeight);
        padding-top: var(--paddingTop);
        padding-bottom: var(--paddingBottom);
    }

    .marquee__content {
        flex-shrink: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: var(--gap);
        min-width: 100%;
        animation: scroll 20s linear infinite;
    }

    @keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
    }

    /* Pause animation when reduced-motion is set */
    @media (prefers-reduced-motion: reduce) {
        .marquee__content {
            animation-play-state: paused !important;
        }
    }