.section-featured-collection {
  h2.title {
    font-size: 6rem;
    font-weight: 400;
    font-family: "MonsterificBB", sans-serif;
    letter-spacing: 0.2rem;
    line-height: 1;
    color: #282828;
    text-shadow: 4px 4px 0 #BEEE62;
  }

  .product-card-wrapper {
    background: #fff;
    border-radius: 0.4rem;
    box-shadow: 0 2px 6px #ccc;

    .card__heading {
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 0;
    }

    .card__information {
      color: #282828;
      display: flex;
      flex-direction: column;
      padding-top: 1rem;
      padding-bottom: 1rem;
      padding-left: clamp(1rem, 3vw, 1.5rem);
      padding-right: clamp(1rem, 3vw, 1.5rem);

      .card-information {
        display: flex;
        flex-direction: column;
        flex-grow: 1;

        .price {
          margin-top: auto;
          padding-top: 0.5rem;
        }
      }
    }
  }

  &.color-scheme-2 {
    .product-card-wrapper {
      box-shadow: 0 2px 6px #ddd;
    }
  }
  
  &.color-scheme-5 {
    h2.title {
      color: #fff;
      text-shadow: 4px 4px 0 #1DA666;
    }

    .product-card-wrapper {
      box-shadow: none;
    }

    .card__heading,
    .card-information > * {
      --color-foreground: #282828;
    }

    .button:hover,
    .button:focus {
      box-shadow: 4px 4px 0 #1DA666;
    }
  }
  
  &.color-scheme-6,
  &.color-scheme-670b5908-1b8a-4b16-b2b1-310ec2b42817 {
    .product-card-wrapper {
      box-shadow: 0 2px 6px #1DA666;
    }
  }
}