/** Shopify CDN: Minification failed

Line 48:8 Expected identifier but found whitespace
Line 48:10 Unexpected "{"
Line 48:19 Expected ":"
Line 59:8 Expected identifier but found whitespace
Line 59:10 Unexpected "{"
Line 59:19 Expected ":"
Line 66:8 Expected identifier but found whitespace
Line 66:10 Unexpected "{"
Line 66:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.easy-setup-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.easy-setup-steps__image {
  flex: 1;
  min-width: 300px;
}

.easy-setup-steps__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  object-fit: cover;
}

.easy-setup-steps__content {
  flex: 1;
  min-width: 300px;
}

.easy-setup-steps h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: {{ section.settings.heading_color }};
  line-height: 1.3;
}

.easy-setup-step {
  margin-bottom: 2rem;
}

.easy-setup-step h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
  color: {{ section.settings.heading_color }};
}

.easy-setup-step p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  color: {{ section.settings.text_color }};
}

@media (max-width: 768px) {
  .easy-setup-steps {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }
  
  .easy-setup-steps h1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .easy-setup-steps__image,
  .easy-setup-steps__content {
    min-width: 100%;
  }
}