/** Shopify CDN: Minification failed

Line 14:13 Expected identifier but found whitespace
Line 14:15 Unexpected "{"
Line 14:24 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Theme-level overrides (optional) */
/* You can add theme-level overrides here if desired */
.responsive-image-container {
  text-align: {{ section.settings.image_alignment }};
  margin: 0 auto;
}

.responsive-image-container img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Hide both by default */
.desktop-image,
.mobile-image {
  display: none;
}

/* Show desktop image only on desktop */
@media screen and (min-width: 750px) {
  .desktop-image {
    display: block;
  }
}

/* Show mobile image only on mobile */
@media screen and (max-width: 749px) {
  .mobile-image {
    display: block;
  }

  .responsive-image-container {
    
    margin-top: 0px;
  }
}
.affiliates-creators {
    width: 100%;
    padding: 40px 20px;
    
  }

  .affiliates-creators__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .affiliates-creators__header {
    text-align: center;
    margin-bottom: 40px;
  }

  .affiliates-creators__heading {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
  }

  .affiliates-creators__subheading {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
  }

  .affiliates-creators__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
    object-fit: cover;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .affiliates-creators {
      padding: 40px 15px;
    }

    .affiliates-creators__header {
      margin-bottom: 30px;
    }

    .affiliates-creators__heading {
      font-size: 32px;
      margin-bottom: 12px;
    }

    .affiliates-creators__subheading {
      font-size: 16px;
    }

    .affiliates-creators__image {
      margin-top: 25px;
      border-radius: 6px;
    }
  }

  @media (max-width: 480px) {
    .affiliates-creators {
      padding: 30px 12px;
    }

    .affiliates-creators__heading {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .affiliates-creators__subheading {
      font-size: 14px;
    }

    .affiliates-creators__image {
      margin-top: 20px;
    }
  }
.how-to-join {
    width: 100%;
    padding: 40px 20px;
    background-color: #ffffff;
  }

  .how-to-join__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .how-to-join__heading {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.2;
  }

  .how-to-join__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .how-to-join__step {
    text-align: center;
  }

  .how-to-join__step-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
  }

  .how-to-join__step-description {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.6;
  }

  /* Tablet Responsive */
  @media (max-width: 768px) {
    .how-to-join {
      padding: 60px 15px;
    }

    .how-to-join__heading {
      font-size: 36px;
      margin-bottom: 45px;
    }

    .how-to-join__steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .how-to-join__step-title {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .how-to-join__step-description {
      font-size: 15px;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 480px) {
    .how-to-join {
      padding: 40px 15px;
    }

    .how-to-join__heading {
      font-size: 28px;
      margin-bottom: 35px;
    }

    .how-to-join__steps {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .how-to-join__step-title {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .how-to-join__step-description {
      font-size: 14px;
    }
  }