/** Shopify CDN: Minification failed

Line 21:8 Expected identifier but found whitespace
Line 21:34 Expected identifier but found "%"
Line 22:12 Expected identifier but found "%"
Line 22:66 Unexpected "#387ec1"
Line 23:12 Expected identifier but found "%"
Line 23:58 Unexpected "#983344"
Line 24:12 Expected identifier but found "%"
Line 24:60 Unexpected "#814DAF"
Line 25:12 Expected identifier but found "%"
Line 25:59 Unexpected "#389256"
... and 2 more hidden warnings

**/
.related-products {
  display: block;
}

.related-products__heading {
  color:                         {% if product.tags contains 'yellow-theme' %} #EFC100
           {% elsif product.tags contains 'light-yellow-theme' %} #387ec1
           {% elsif product.tags contains 'pink-theme' %} #983344
           {% elsif product.tags contains 'purple-theme' %} #814DAF
           {% elsif product.tags contains 'green-theme' %} #389256
           {% else %} #B6B3AC {% endif %};
    text-align: left;
    margin: 0;
    padding-bottom: 2vw;
    font-weight: bold;
    line-height: 1.4;
    font-family: "DM Sans", sans-serif !important;

    /* Responsive font sizing */
    font-size: clamp(20px, 4vw, 42px);
  }

  /* Optional fine-tuning with breakpoints */
  @media (max-width: 768px) {
    .get-the-look .section-title {
      font-size: clamp(18px, 5vw, 28px);
      text-align: center; /* better look on mobile */
      padding-bottom: 4vw;
    }
  }

  @media (max-width: 480px) {
    .get-the-look .section-title {
      font-size: clamp(16px, 6vw, 24px);
      line-height: 1.3;
    }
  }