/** Shopify CDN: Minification failed

Line 66:0 Expected "}" to go with "{"

**/

/* 只控制带有 sf__index-featured-collection 类名的板块 */
.sf__index-featured-collection h2 {
  display: flex !important;
  justify-content: center !important;
  align-items: baseline !important;
  gap: 8px !important;

  margin: 0 !important;
  padding: 0 !important;

  font-size: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* 白色和黄色标题的共同样式 */
.sf__index-featured-collection h2::before,
.sf__index-featured-collection h2::after {
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;

  font-family: inherit;
  font-size: 60px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  word-spacing: 0;
  white-space: nowrap;
}

/* 白色标题 */
.sf__index-featured-collection h2::before {
  content: "0 SUGAR DAILY";
  color: #ffffff;
}

/* 黄色标题 */
.sf__index-featured-collection h2::after {
  content: "ELECTROLYTE POWDER";
  color: #f6c515;
}

/* 手机端 */
@media screen and (max-width: 767px) {
  .sf__index-featured-collection h2 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
  }

  .sf__index-featured-collection h2::before,
  .sf__index-featured-collection h2::after {
    font-size: 28px;
    line-height: 1.05;
  }
