/** Shopify CDN: Minification failed

Line 251:24 Expected identifier but found whitespace
Line 251:26 Unexpected "{"
Line 251:35 Expected ":"
Line 251:75 Expected ":"
Line 252:27 Expected identifier but found whitespace
Line 252:29 Unexpected "{"
Line 252:38 Expected ":"
Line 252:81 Expected ":"
Line 253:21 Expected identifier but found whitespace
Line 253:23 Unexpected "{"
... and 13 more hidden warnings

**/
/* ================================
   Breathe Sleep Section
================================ */
.breathe-sleep-section {
  width: 100%;
  min-height: 600px;
  background-image: var(--desktop-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  display: flex;
  align-items: center;
  padding: var(--section-padding-top, 80px) 0 var(--section-padding-bottom, 80px);
  color: #000000;
}

.breathe-sleep-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

/* Content - Positioned on Right Side */
.breathe-sleep-content {
  padding: 50px 45px 50px 0;
  max-width: 550px;
  width: 100%;
}

.breathe-sleep-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--heading-color, #000000);
  text-align: left;
}

.breathe-sleep-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--description-color, #555555);
  margin: 0 0 30px;
  opacity: 0.9;
}

/* Features */
.breathe-sleep-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.breathe-sleep-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  color: var(--text-color, #333333);
  line-height: 1.4;
  text-align: left;
}

.check-icon {
  color: var(--accent-color, #000000);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -2px;
}

/* Mobile image hidden on desktop */
.breathe-sleep-mobile-image {
  display: none;
}

/* ================================
   Responsive Styles
================================ */

/* Tablet (1024px–1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .breathe-sleep-section {
    background-position: -300px center;
  }
  
  
  .breathe-sleep-content {
    padding: 40px 35px 40px 0;
  }
  
  .breathe-sleep-heading {
    font-size: 42px;
  }
  
  .breathe-sleep-description {
    font-size: 17px;
  }
  
  .breathe-sleep-features li {
    font-size: 18px;
  }
}

/* Tablet (768px–1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .breathe-sleep-section {
    background-position: -400px center;
  }
  
  .breathe-sleep-content {
    max-width: 480px;
    padding: 35px 30px 35px 0;
  }
  
  .breathe-sleep-heading {
    font-size: 38px;
  }
  
  .breathe-sleep-description {
    font-size: 16px;
  }
  
  .breathe-sleep-features li {
    font-size: 18px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .breathe-sleep-section {
    background-image: none !important;
    background-color: var(--mobile-bg, #EFE4E2);
    min-height: auto;
    padding: var(--section-padding-top, 60px) 0 var(--section-padding-bottom, 60px);
  }

  .breathe-sleep-container {
    flex-direction: column;
    gap: 30px;
  }

  .breathe-sleep-content {
    max-width: 100%;
    padding: 35px 30px;
    order: 1;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .breathe-sleep-heading {
    font-size: 36px;
    margin: 0 0 15px;
    text-align: center;
  }

  .breathe-sleep-description {
    font-size: 16px;
    text-align: center;
    margin: 0 0 25px;
    line-height: 1.5;
  }

  /* MOBILE IMAGE - Shows immediately after description */
  .breathe-sleep-mobile-image {
    display: block;
    order: 2;
    margin: 20px 0;
  }

  .breathe-sleep-mobile-image .mobile-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    max-height: 500px;
    object-fit: cover;
  }

  .breathe-sleep-features {
    order: 3;
    margin-top: 30px;
    gap: 15px;
  }

  .breathe-sleep-features li {
    font-size: 18px;
    gap: 12px;
  }
  
  .check-icon {
    font-size: 20px;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .breathe-sleep-heading {
    font-size: 32px;
    text-align: left;
  }
  
  .breathe-sleep-description {
    font-size: 15px;
    text-align: left;
  }
  
  .breathe-sleep-features li {
    font-size: 16px;
    text-align: left;
  }
  
  .breathe-sleep-container {
    gap: 25px;
  }
  
  .breathe-sleep-content {
    padding: 30px 25px;
  }
  
  .breathe-sleep-mobile-image {
    margin: 35px 0px;
  }
}

/* Theme integration variables */
.breathe-sleep-section {
  --section-padding-top: {{ section.settings.padding_top | default: 80 }}px;
  --section-padding-bottom: {{ section.settings.padding_bottom | default: 80 }}px;
  --content-bg-color: {{ section.settings.content_bg_color | default: '#ffffff' }};
  --heading-color: {{ section.settings.heading_color | default: '#000000' }};
  --description-color: {{ section.settings.description_color | default: '#555555' }};
  --text-color: {{ section.settings.text_color | default: '#333333' }};
  --accent-color: {{ section.settings.accent_color | default: '#000000' }};
}