/** Shopify CDN: Minification failed

Line 19:9 Unexpected "{"
Line 19:18 Expected ":"
Line 19:25 Unexpected "{"
Line 34:9 Unexpected "{"
Line 34:18 Expected ":"
Line 44:9 Unexpected "{"
Line 44:18 Expected ":"
Line 52:9 Unexpected "{"
Line 52:18 Expected ":"
Line 53:9 Unexpected "{"
... and 108 more hidden warnings

**/
/* ===== Saveri Banner — Complete Corrected CSS ===== */

/* Base Layout */
#Banner-{{ section.id }} {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  isolation: isolate;
  overflow: visible !important;
  /* Editable CSS vars for dotted overlay positioning/width */
  --dotted-width-desktop: 682px;
  --dotted-width-mobile: 420px;
  --dotted-top-desktop: 70%;
  --dotted-top-mobile: 72%;
}

/* Aspect Spacer */
#Banner-{{ section.id }} .banner__aspect {
  width: 100%;
  height: 0;
  display: block;
  pointer-events: none;
  box-sizing: border-box;
  padding-bottom: 56.25%; /* fallback 16:9 ratio */
}

/* Media (image/video/SVG) */
#Banner-{{ section.id }} .banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
#Banner-{{ section.id }} .banner__media img,
#Banner-{{ section.id }} .banner__media video,
#Banner-{{ section.id }} .banner__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

/* Main Content Container */
#Banner-{{ section.id }} .banner__content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  box-sizing: border-box;
  padding: 0;
  pointer-events: none; /* Children opt-in */
}
#Banner-{{ section.id }} .banner__box {
  position: relative;
  width: 100%;
  max-width: 71rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  z-index: 40;
  box-sizing: border-box;
  pointer-events: auto;
  background: transparent;
}

/* Responsive content padding */
@media screen and (min-width: 750px) {
  #Banner-{{ section.id }} .banner__content { padding: 5rem; }
  #Banner-{{ section.id }} .banner__box { padding: 4rem 3.5rem; }
}

/* Overlay container */
#Banner-{{ section.id }} .banner__overlays {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  overflow: visible;
  box-sizing: border-box;
}

/* Custom text block */
#Banner-{{ section.id }} .custom-text-block {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 40; /* text above dotted, below CTA */
  max-width: 48%;
  text-align: center;
  color: inherit;
  box-sizing: border-box;
}
#Banner-{{ section.id }} .custom-text-block h2 {
  margin: 0 0 6px 0;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.2px;
}
#Banner-{{ section.id }} .custom-text-block p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

/* CTA Button: Circle, above everything except overlays */
#Banner-{{ section.id }} .circle-cta {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50% !important; /* Always circular! */
  background: #0f0f0f;
  color: #fff;
  text-align: center;
  font-size: 14px;
  z-index: 60; /* sits ABOVE dotted (z-index:20) and text (z-index:40) */
  pointer-events: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: 4px solid rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
}
#Banner-{{ section.id }} .circle-cta a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  pointer-events: auto;
}

/* CTA Button Hover — Stays circular, turns red */
#Banner-{{ section.id }} .circle-cta:hover {
  background: #e00 !important; /* vivid red */
  border-radius: 50% !important; /* stays a circle */
  color: #fff !important;
  transform: translate(-50%, -50%) scale(1.03);
  box-shadow: 0 16px 30px rgba(0,0,0,0.32);
}

/* CTA Mobile Sizing */
@media screen and (max-width: 749px) {
  #Banner-{{ section.id }} .circle-cta { width:88px; height:88px; }
  #Banner-{{ section.id }} .circle-cta a { font-size: 13px; padding: 10px; }
  #Banner-{{ section.id }} .custom-text-block { max-width:85%; left:50% !important; font-size:15px; }
  #Banner-{{ section.id }} .custom-text-block h2 { font-size:18px; }
  #Banner-{{ section.id }} .custom-text-block p { font-size:12px; }
}

/* Dotted Overlay: Always behind CTA/text (z-index: 20) */
#Banner-{{ section.id }} .banner__dotted {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: var(--dotted-top-desktop, 70%);
  width: var(--dotted-width-desktop, 682px);
  max-width: none;
  pointer-events: none;
  z-index: 20; /* behind CTA, custom text, overlays */
  display: block;
  opacity: 0.98;
  box-sizing: content-box;
}
#Banner-{{ section.id }} .banner__dotted img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

@media screen and (max-width: 749px) {
  #Banner-{{ section.id }} .banner__dotted {
    width: var(--dotted-width-mobile, 420px) !important;
    top: var(--dotted-top-mobile, 72%) !important;
    display:none !important;
  }
}

/* Layer and Stack Coordination */
#Banner-{{ section.id }} .banner__overlays { z-index: 30; }
#Banner-{{ section.id }} .banner__dotted { z-index: 20; }
#Banner-{{ section.id }} .circle-cta { z-index: 60; }
#Banner-{{ section.id }} .custom-text-block { z-index: 40; }

/* Button group spacing/utility */
#Banner-{{ section.id }} .banner__buttons {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: 45rem;
  word-break: break-word;
}
#Banner-{{ section.id }} .banner__box > * + .banner__buttons { margin-top: 2rem; }
#Banner-{{ section.id }} .banner__box > * + * { margin-top: 1rem; }
#Banner-{{ section.id }} .banner__box > *:first-child { margin-top: 0; }

/* Defensive: Prevent stacking glitches */
#Banner-{{ section.id }} .banner__box,
#Banner-{{ section.id }} .banner__content,
#Banner-{{ section.id }} .banner__overlays,
#Banner-{{ section.id }} .banner__media {
  transform: none !important;
  will-change: auto !important;
  opacity: 1 !important;
}

/* Hide unwanted pseudo elements from themes */
#Banner-{{ section.id }}::before,
#Banner-{{ section.id }}::after,
#Banner-{{ section.id }} .banner__media::before,
#Banner-{{ section.id }} .banner__media::after,
#Banner-{{ section.id }} .banner__content::before,
#Banner-{{ section.id }} .banner__content::after {
  display: none !important;
  content: none !important;
}

/* Responsive alignments for content */
@media only screen and (max-width: 749px) {
  #Banner-{{ section.id }}.banner--content-align-mobile-right .banner__box { text-align: right; }
  #Banner-{{ section.id }}.banner--content-align-mobile-left .banner__box { text-align: left; }
}
@media only screen and (min-width: 750px) {
  #Banner-{{ section.id }}.banner--content-align-right .banner__box { text-align: right; }
  #Banner-{{ section.id }}.banner--content-align-left .banner__box { text-align: left; }
}

/* Accessibility: links inherit color */
@media screen and (max-width: 749px) {
  #Banner-{{ section.id }} .rte a,
  #Banner-{{ section.id }} .inline-richtext a:hover,
  #Banner-{{ section.id }} .rte a:hover {
    color: currentColor;
  }
}
@media screen and (min-width: 750px) {
  #Banner-{{ section.id }}.banner--desktop-transparent .rte a,
  #Banner-{{ section.id }}.banner--desktop-transparent .inline-richtext a:hover,
  #Banner-{{ section.id }}.banner--desktop-transparent .rte a:hover {
    color: currentColor;
  }
}

/* Ensure parent and overlays are visible */
#Banner-{{ section.id }},
#Banner-{{ section.id }} .banner__content,
#Banner-{{ section.id }} .banner__box {
  overflow: visible !important;
}
/* Full-bleed background image that sits behind CTA but above main media */
#Banner-{{ section.id }} .banner__fullwidth-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100vw;
  height: auto;
  pointer-events: none;
  z-index: 20; /* above .banner__media (5) but below CTA (100) */
  overflow: hidden;
}

#Banner-{{ section.id }} .banner__fullwidth-wrap .banner__fullwidth-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
