/** Shopify CDN: Minification failed

Line 50:8 Expected identifier but found whitespace
Line 50:10 Unexpected "{"
Line 50:19 Expected ":"
Line 61:8 Expected identifier but found whitespace
Line 61:10 Unexpected "{"
Line 61:19 Expected ":"
Line 68:8 Expected identifier but found whitespace
Line 68:10 Unexpected "{"
Line 68:19 Expected ":"
Line 89:14 Expected identifier but found whitespace
... and 19 more hidden warnings

**/


/* CSS from section stylesheet tags */
.easy-setup-steps {
  max-width: 1520px;
  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.5rem;
  margin: 0 0 0.5rem 0;
  color: {{ section.settings.heading_color }};
}

.easy-setup-step p {
  font-size: 1.1rem;
  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%;
  }
}
.dog-product-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
}

.dog-product-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.dog-product-image {
  flex: 1 1 400px;
}

.dog-product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dog-product-content {
  flex: 1 1 500px;
  text-align: {{ section.settings.text_alignment }};
}

.dog-product-heading {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.dog-product-subheading {
  font-size: 1.4rem;
  color: {{ section.settings.accent_color }};
  margin-bottom: 32px;
  font-weight: 500;
  font-style: italic;
}

.dog-product-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.dog-product-text p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .dog-product-container {
    flex-direction: column;
  }
  
  .dog-product-content {
    text-align: center;
  }
  
  .dog-product-heading {
    font-size: 1.5rem;
  }
  
  .dog-product-subheading {
    font-size: 1.2rem;
  }
}