/** Shopify CDN: Minification failed

Line 21:0 Unexpected "{"
Line 21:1 Unexpected "{"
Line 21:10 Expected ":"
Line 22:0 Unexpected "{"
Line 22:1 Unexpected "{"
Line 22:10 Expected ":"
Line 23:0 Unexpected "{"
Line 23:1 Unexpected "{"
Line 23:10 Expected ":"
Line 45:14 Expected identifier but found whitespace
... and 80 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:best-deals-strip (INDEX:6) */
{{ section.settings.heading_font | font_face }}
{{ section.settings.title_font | font_face }}
{{ section.settings.value_font | font_face }}
/* SECTION WRAPPER */
.best-deals-section {
  padding-top: var(--pt);
  padding-bottom: var(--pb);
  background: var(--bg);
  position: relative;
}

.best-deals-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* HEADING */
.best-deals-heading {
  font-size: var(--heading-size);
  letter-spacing: var(--heading-spacing);
  margin-bottom: var(--heading-gap);

  font-family: {{ section.settings.heading_font.family }}, {{ section.settings.heading_font.fallback_families }} !important;
  font-style: {{ section.settings.heading_font.style }} !important;
  font-weight: {{ section.settings.heading_font.weight }} !important;

  line-height: 1.1;
}

/* STRIP */
.best-deals-strip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: var(--strip-width);
  height: var(--strip-height);
  background: var(--strip-bg);
  z-index: 0;
}
.best-deals-container{
  position: relative;
}
/* WRAPPER */
.best-deals-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: var(--card-gap);
  width: 100%;
  flex-wrap: nowrap;
}
.best-deal-card{
  flex: 1;
  max-width: var(--card-width);
}
/* CARD */
.best-deal-card {
  width: var(--card-width);
  padding: 18px 10px;
  border-radius: 6px;
  background: linear-gradient(
    var(--gradient-angle),
    var(--grad-1),
    var(--grad-2),
    var(--grad-3)
  );
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.best-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* TITLE */
.best-deal-title {
  font-size: var(--title-size);
  font-weight: {{ section.settings.title_font.weight }};
  font-family: {{ section.settings.title_font.family }}, {{ section.settings.title_font.fallback_families }};
  margin-bottom: 6px;
}

/* DIVIDER */
.best-deal-divider {
  width: 80%;
  height: 1px;
  margin: 8px auto 10px;
  background: rgba(255,255,255,0.6);
}

/* TEXT STACK FIX */
.best-deal-sub {
  font-size: var(--sub-size);
  letter-spacing: 1px;
  margin-bottom: -4px;
}

.best-deal-value {
  font-size: var(--value-size);
  font-weight: var(--value-weight);
  line-height: 1;
}

.best-deal-off {
  font-size: var(--off-size);
  margin-top: -2px;
}

/* MOBILE */
@media(max-width:768px){

  .best-deals-wrapper{
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;


    -webkit-overflow-scrolling: touch;
  }

  .best-deals-wrapper::-webkit-scrollbar{
    display: none;
  }

  .best-deal-card{
    flex: 0 0 75%;
    scroll-snap-align: center;
  }

  /* FIX TYPO */
  .deal-upto{
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-35%);
  font-size: var(--sub-size);
}

  .deal-number{
    font-size: 22px;
  }

  .deal-percent{
    font-size: 10px;
  }

  .deal-off{
    font-size: 9px;
  }

}

.deal-value-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* UPTO top-left */
.deal-upto {
  font-size: var(--sub-size);
  align-self: flex-start;
  margin-bottom: -6px;
}

/* MAIN ROW */
.deal-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* BIG NUMBER */
.deal-number {
  font-size: var(--value-size);
  font-weight: {{ section.settings.value_font.weight }};
  font-family: {{ section.settings.value_font.family }}, {{ section.settings.value_font.fallback_families }};
  line-height: 1;
}

/* RIGHT SIDE (% + OFF) */
.deal-side {
  display: flex;
  flex-direction: column;
  margin-left: 4px;
}

/* % top */
.deal-percent {
  font-size: calc(var(--value-size) * 0.4);
  font-weight: var(--value-weight);
  line-height: 1;
}

/* OFF below % */
.deal-off {
  font-size: var(--off-size);
  margin-top: 2px;
}
.deal-dots{
  display: none;
  justify-content: center;
  margin-top: 15px;
  gap: 6px;
}

.deal-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  transition: 0.3s;
}

.deal-dot.active{
  background: #000;
  transform: scale(1.3);
}

@media(max-width:768px){
  .deal-dots{
    display: flex;
  }
}
/* FIX UPTO POSITION (DESKTOP + MOBILE SAFE) */
.deal-value-wrap{
  position: relative;
}

.deal-upto{
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-125%);
  font-size: var(--sub-size);
}

/* PUSH CONTENT DOWN */
.deal-main{
  margin-top: 12px;
}

/* BETTER ALIGNMENT */
.deal-side{
  margin-left: 6px;
}

/* DOTS CENTER FIX */
.deal-dots{
  width: 100%;
  justify-content: center;
}
/* END_SECTION:best-deals-strip */

/* START_SECTION:cosmo-rewards-banner (INDEX:35) */
/* ===== ORIGINAL CODE (UNCHANGED) ===== */

/* WRAPPER */
.cosmo-wrapper {
  position: relative;
  padding: {{ section.settings.padding_top }}px 20px {{ section.settings.padding_bottom }}px;
}

/* CONTAINER */
.cosmo-container {
  max-width: var(--page-width, 1200px);
  margin: auto;
}

.cosmo-container.full {
  max-width: 100%;
}

/* BG */
.cosmo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cosmo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.cosmo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, {{ section.settings.overlay_opacity }});
}

/* MAIN */
.cosmo-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  z-index: 2;
}

/* LEFT */
.cosmo-left {
  flex: 2;
  min-width: 300px;
}

.cosmo-subtitle {
  font-size: 12px;
  margin-bottom: 4px;
}

.cosmo-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cosmo-desc {
  font-size: 13px;
  line-height: 1.5;
}

/* CARDS */
.cosmo-cards {
  gap: 16px !important;
}

/* ONLY desktop flex */
@media(min-width: 769px){
  .cosmo-cards {
    display: flex !important;
  }
}

.cosmo-card {
    flex: unset !important;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.cosmo-icon {
  font-size: 18px;
  margin-bottom: 6px;
}

/* TEXT */
.cosmo-card-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cosmo-card-desc {
  font-size: 12px;
  opacity: 0.7;
}

/* BUTTON */
.cosmo-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
}

.cosmo-btn a {
  background: #222;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* ===== 🔥 EXACT UI FIX ===== */

/* Compact horizontal banner */
.cosmo-inner {
  align-items: center !important;
}

/* Left content tighter */
.cosmo-left {
  max-width: 340px;
}

/* Cards inline proper */
.cosmo-cards {
  flex: unset !important;
  gap: 16px !important;
}

/* Desktop only flex */
@media(min-width: 769px){
  .cosmo-cards {
    display: flex !important;
  }
}


/* FIX card size like screenshot */
.cosmo-card {
  flex: unset !important;
  min-height: 120px !important;
}

/* Desktop only width */
@media(min-width: 769px){
  .cosmo-card {
    width: 150px !important;
  }
}

/* 🔥 ADD THIS JUST BELOW */

/* Equal look */
.cosmo-card * {
  line-height: 1.3;
}

/* Button right aligned */
.cosmo-btn {
  flex: unset !important;
  width: 180px;
  margin-left: auto;
}

/* Section height compact */
.cosmo-wrapper {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* ================= FIX HUGE HORIZONTAL GAP ================= */

@media(min-width: 769px){

  .cosmo-inner{
    justify-content: flex-start !important;
    gap: 20px !important;
  }

  .cosmo-left{
    max-width: 320px;
  }

  .cosmo-cards{
    margin-left: 10px;
  }

  .cosmo-btn{
    margin-left: 20px;
  }

}


/* MOBILE */
@media(max-width: 768px){

  .cosmo-inner {
    flex-direction: column;
  }
.cosmo-cards.grid-mode {
  display: grid !important;
  width: 100% !important;
}
  /* ===== GRID MODE ===== */
  .cosmo-cards.grid-mode {
    display: grid !important;
    width: 100%;
   
  }

  .cosmo-cards.cols-1 { grid-template-columns: 1fr; }
  .cosmo-cards.cols-2 { grid-template-columns: 1fr 1fr; }
  .cosmo-cards.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

  /* ===== SLIDER MODE ===== */
  .cosmo-cards.slider-mode {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .cosmo-cards.slider-mode::-webkit-scrollbar {
    display: none;
  }

  /* 🔥 SMART SLIDER WIDTH */
/* 🔥 1 column + 15% peek */
.cosmo-cards.slider-mode.cols-1 .cosmo-card {
  min-width: 85%;
}
.cosmo-cards.slider-mode {
  padding-right: 24px !important;
}
.cosmo-cards.slider-mode.cols-2 .cosmo-card {
  min-width: calc(50% - 6px);
}
.cosmo-cards.slider-mode {
  scroll-padding-left: 16px;
}
.cosmo-cards.slider-mode {
  padding-right: 20px;
}
.cosmo-cards.slider-mode.cols-3 .cosmo-card {
  min-width: calc(33.33% - 8px);
}
.cosmo-cards.grid-mode .cosmo-card {
  width: auto !important;
}

  .cosmo-btn {
    width: 100%;
  }
}

.cosmo-cards.cols-3 .cosmo-card-title {
  font-size: 12px;
}

.cosmo-cards.cols-3 .cosmo-card-desc {
  font-size: 11px;
}

/* ================= SPACING POLISH ================= */

/* Section vertical breathing */
.cosmo-wrapper {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}



/* Left text spacing */
.cosmo-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cards top spacing */
.cosmo-cards {
  margin-top: 10px;
}

/* Button spacing */
.cosmo-btn {
  margin-top: 20px;
}

/* Card internal spacing improve */
.cosmo-card {
  padding: 16px !important;
}

/* MOBILE POLISH */
@media(max-width: 768px){

  .cosmo-wrapper {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .cosmo-btn {
    margin-top: 16px;
  }

}
/* ================= FINAL MOBILE SPACING FIX ================= */

@media(max-width: 768px){

  /* Section side breathing */
  .cosmo-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Container padding */
  .cosmo-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Cards spacing fix */
  .cosmo-cards {
    margin-top: 12px;
    gap: 12px !important;
  }

  /* Grid cards equal spacing */
  .cosmo-cards.grid-mode {
    padding-left: 2px;
    padding-right: 2px;
  }

  /* Slider breathing */
  .cosmo-cards.slider-mode {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* Card internal padding */
  .cosmo-card {
    padding: 14px !important;
  }

  /* Button spacing fix */
  .cosmo-btn {
    margin-top: 18px !important;
    padding-left: 2px;
    padding-right: 2px;
  }

  .cosmo-btn a {
    width: 100%;
    border-radius: 12px;
  }

}
/* ================= FIGMA LEVEL SPACING ================= */

.cosmo-inner{
  gap: 48px !important;
}

.cosmo-left{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cosmo-cards{
  gap:16px !important;
}

.cosmo-card{
  padding:18px !important;
  border-radius:16px !important;
}

/* Perfect vertical rhythm */
.cosmo-title{ margin-bottom:8px; }
.cosmo-desc{ margin-bottom:6px; }

/* Button spacing */
.cosmo-btn{
  margin-top:20px;
}

/* ================= MOBILE PERFECT SPACING ================= */

@media(max-width:768px){

  .cosmo-wrapper{
    padding-left:20px !important;
    padding-right:20px !important;
  }

  .cosmo-inner{
    gap:28px !important;
  }

  .cosmo-cards{
    gap:12px !important;
  }

  .cosmo-card{
    padding:14px !important;
  }

  .cosmo-btn{
    margin-top:18px !important;
  }

}

/* ================= SLIDER ARROWS ================= */

.cosmo-arrows{
  display:none;
}

@media(max-width:768px){

  .cosmo-arrows{
    display:flex;
    justify-content:flex-end;
    gap:8px;
    margin-bottom:10px;
  }

  .cosmo-arrow{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    cursor:pointer;
  }

}


/* ================= ULTRA COMPACT SPACING ================= */

@media(max-width:768px){

  /* Main vertical gap reduce */
  .cosmo-inner{
    gap: 12px !important;
  }

  /* Text block tighten */
  .cosmo-left{
    gap: 4px !important;
  }

  /* Subtitle → Title */
  .cosmo-subtitle{
    margin-bottom: 2px !important;
  }

  /* Title → Description */
  .cosmo-title{
    margin-bottom: 4px !important;
  }

  /* Description → Cards */
  .cosmo-desc{
    margin-bottom: 4px !important;
  }

  /* Cards top gap remove */
  .cosmo-cards{
    margin-top: 4px !important;
  }

  /* Card internal padding compact */
  .cosmo-card{
    padding: 12px !important;
  }

  /* Button spacing tight */
  .cosmo-btn{
    margin-top: 8px !important;
  }

}

/* ================= FORCE COMPACT (FINAL OVERRIDE) ================= */

@media(max-width:768px){

  /* kill all vertical spacing */
  .cosmo-inner{
    gap: 6px !important;
  }

  .cosmo-left{
    gap: 2px !important;
  }

  /* remove all margins */
  .cosmo-subtitle,
  .cosmo-title,
  .cosmo-desc{
    margin-bottom: 2px !important;
  }

  /* cards tight */
  .cosmo-cards{
    margin-top: 2px !important;
  }

  /* card compact */
  .cosmo-card{
    padding: 10px !important;
  }

  /* button tight */
  .cosmo-btn{
    margin-top: 6px !important;
  }

  /* 🔥 REMOVE EXTRA SECTION HEIGHT */
  .cosmo-wrapper{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

}

/* ================= CARD GAP + CENTER ALIGN FIX ================= */

@media(max-width:768px){

  /* 🔥 center cards */
  .cosmo-cards.slider-mode{
    justify-content: flex-start;
    gap: 8px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* 🔥 reduce card width for better spacing */
  .cosmo-cards.slider-mode.cols-1 .cosmo-card{
    min-width: 82% !important;
  }

  /* 🔥 card internal spacing compact */
  .cosmo-card{
    padding: 12px !important;
  }

}


/* ================= FORCE CARD GAP FIX ================= */

@media(max-width:768px){

  /* 🔥 FORCE override ALL previous gaps */
  .cosmo-wrapper .cosmo-cards.slider-mode{
    gap: 6px !important;
  }

  /* 🔥 remove fake spacing from padding */
  .cosmo-wrapper .cosmo-cards.slider-mode{
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* 🔥 tighter card width = less visual gap */
  .cosmo-wrapper .cosmo-cards.slider-mode.cols-1 .cosmo-card{
    min-width: 88% !important;
  }

}


/* ================= CARD INTERNAL COMPACT ================= */

@media(max-width:768px){

  /* 🔥 reduce card padding */
  .cosmo-card{
    padding: 10px 12px !important;
  }

  /* 🔥 icon spacing */
  .cosmo-icon{
    margin-bottom: 4px !important;
  }

  /* 🔥 title spacing */
  .cosmo-card-title{
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }

  /* 🔥 description spacing */
  .cosmo-card-desc{
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
  }

}



/* ================= REMOVE ALL MARKED GAPS ================= */

/* 🔥 DESKTOP + MOBILE BOTH */

.cosmo-subtitle{
  margin-bottom: 0 !important;
}

.cosmo-title{
  margin-bottom: 2px !important;
  line-height: 1.2 !important;
}

.cosmo-desc{
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
}

/* 🔥 MOST IMPORTANT FIX (card height) */
.cosmo-card{
  min-height: auto !important;
  padding: 10px 12px !important;
}

/* 🔥 inner spacing tighten */
.cosmo-icon{
  margin-bottom: 4px !important;
}

.cosmo-card-title{
  margin-bottom: 2px !important;
}

.cosmo-card-desc{
  margin-bottom: 0 !important;
}

/* 🔥 REMOVE EXTRA LEFT BLOCK GAP */
.cosmo-left{
  gap: 2px !important;
}

/* 🔥 REMOVE GLOBAL EXTRA SPACE */
.cosmo-inner{
  gap: 10px !important;
}

/* ================= BOXED BACKGROUND FIX ================= */

/* 🔥 remove full-width background */

/* 🔥 wrapper becomes normal */
.cosmo-wrapper{
  background: transparent !important;
}

/* 🔥 actual banner box */
.cosmo-container{
  max-width: 1400px !important;
  margin: 40px auto !important;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

/* 🔥 apply bg image INSIDE container */


/* content above bg */
.cosmo-inner{
  position: relative;
  z-index: 2;
  padding: 30px;
}

/* ================= CLEAN BOXED BG (THEME EDITOR WORKING) ================= */

.cosmo-wrapper{
  padding: 0 !important;
  background: transparent !important;
}

/* 🔥 BOX CONTAINER */
.cosmo-container{
  .cosmo-container{
  max-width: {{ section.settings.bg_width }}px !important;
}
  margin: 40px auto !important;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* 🔥 BG IMAGE (USE ORIGINAL SYSTEM) */
.cosmo-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cosmo-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.cosmo-overlay{
  z-index: 1;
}

/* content above */
.cosmo-inner{
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}


/* ================= BOXED BG IMAGE FIX (FINAL) ================= */

/* wrapper neutral */
.cosmo-wrapper{
  background: transparent !important;
  padding: 0 !important;
}



/* overlay stays working */
.cosmo-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, {{ section.settings.overlay_opacity }});
  z-index: 1;
}

/* content above bg */
.cosmo-inner{
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}


/* ================= FINAL BG FIX ================= */

.cosmo-container{
  max-width: 1400px !important;
  margin: 40px auto !important;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* bg works perfectly now */
.cosmo-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cosmo-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.cosmo-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* content above */
.cosmo-inner{
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}


/* ================= FORCE BG SHOW ================= */

.cosmo-bg{
  display: block !important;
  position: absolute !important;
  inset: 0;
  z-index: 0;
}

.cosmo-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
}

/* ensure container has height */
.cosmo-container{
  min-height: 140px;
}


/* ================= FIX ALIGNMENT ================= */

@media(min-width:769px){

  .cosmo-inner{
    justify-content: center !important;
    gap: 24px !important;
  }

  /* ❌ remove push */
  .cosmo-btn{
    margin-left: 0 !important;
  }

}
/* END_SECTION:cosmo-rewards-banner */

/* START_SECTION:promo-bar (INDEX:113) */
.promo-bar {
  position: relative;
  width: 100%;
  padding: 14px 0;
  overflow: hidden;
}

/* BG */
.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(140,91,84,0.85), rgba(201,168,146,0.85));
  z-index: 2;
}

/* Container */
.promo-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

/* CONTENT */
.promo-content {
  display: flex;
  align-items: center;
  width: 100%;
}

/* POSITION */
.promo-content.left { justify-content: flex-start; }
.promo-content.center { justify-content: center; }
.promo-content.right { justify-content: flex-end; }

/* INNER */
.promo-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.promo-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* RIGHT */
.promo-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🔥 TYPO CONTROLS (dynamic) */
.promo-heading {
  font-size: {{ section.settings.heading_size_desktop }}px;
  font-weight: {{ section.settings.heading_weight }};
  color: {{ section.settings.heading_color }};
  white-space: nowrap;
}

.promo-subtext {
  font-size: {{ section.settings.subtext_size_desktop }}px;
  color: {{ section.settings.subtext_color }};
  white-space: nowrap;
}

/* CODE */
.promo-code {
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

/* BUTTON */
.promo-btn {
  background: #2b2b2b;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){
    .promo-heading {
    font-size: {{ section.settings.heading_size_mobile }}px !important;
  }

  .promo-subtext {
    font-size: {{ section.settings.subtext_size_mobile }}px !important;
  }
  .promo-content {
    justify-content: center !important;
  }
  .promo-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* END_SECTION:promo-bar */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:blocko-group (INDEX:168) */
.group-block__link {
    position: absolute;
    inset: 0;
    z-index: 3;
  }

  .group-block__link ~ :is(.group-block-content, .group-block__media-wrapper, .group-block__overlay) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .group-block__link ~ to be specific enough to take effect. */
  .group-block__link ~ .group-block-content--design-mode {
    pointer-events: auto;
  }

  /* Reset child width in horizontal layouts so align-items works correctly */
  {% if settings.content_direction == 'row' %}
  .group-block-content > * {
    width: auto !important;
  }
  {% endif %}

  @media screen and (max-width: 749px) {
    .group-block {
      width: {{ width_mobile_value }} !important;
    }

    {% if settings.vertical_on_mobile and settings.content_direction == 'row' %}
    .group-block-content {
      flex-direction: column !important;
    }

    /* Restore width 100% when switching to vertical on mobile */
    .group-block-content > * {
      width: 100% !important;
    }
    {% endif %}
  }
/* END_SNIPPET:blocko-group */

/* START_SNIPPET:blocko-text (INDEX:169) */
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    width: var(--width);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block p,
  .text-block.p > * {
    margin-block: var(--font-paragraph--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);

    /* To avoid text being cropped when using a border radius we add a minimum padding. */
    padding-block-start: max(var(--text-padding), var(--padding-block-start, 0));
    padding-block-end: max(var(--text-padding), var(--padding-block-end, 0));
    padding-inline-start: max(var(--text-padding), var(--padding-inline-start, 0));
    padding-inline-end: max(var(--text-padding), var(--padding-inline-end, 0));
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_SNIPPET:blocko-text */