/** Shopify CDN: Minification failed

Line 22:15 Expected identifier but found whitespace
Line 22:17 Unexpected "{"
Line 22:26 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:53 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
... and 61 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:how-use-cards (INDEX:28) */
.aura-effect-section {
    background: {{ section.settings.section_bg }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .aura-effect-container {
    max-width: {{ section.settings.page_width }}px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .aura-effect-heading {
    text-align: center;
    margin: 0 0 34px;
    color: {{ section.settings.heading_color }};
    font-size: 40px;
    line-height: 1.2;
    font-weight: {{ section.settings.heading_weight }};
    letter-spacing: -0.02em;
  }

  .aura-effect-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: {{ section.settings.card_gap }}px;
  }

  .aura-effect-card {
    position: relative;
    background: {{ section.settings.card_bg }};
    border-radius: {{ section.settings.card_radius }}px;
    padding: 28px 22px 22px;
    text-align: center;
    overflow: visible;
    min-height: 100%;
    box-sizing: border-box;
  }

  .aura-effect-badge {
    position: absolute;
    top: -14px;
    left: -10px;
    width: 44px;
    height: 44px;
    background: #C69B68;
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    z-index: 2;
  }

  .aura-effect-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: {{ section.settings.badge_bg }};
    border-radius: 14px;
    transform: rotate(45deg);
    z-index: -1;
  }

  .aura-effect-image-wrap {
    width: {{ section.settings.image_size }}px;
    height: {{ section.settings.image_size }}px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: {{ section.settings.image_bg }};
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aura-effect-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .aura-effect-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
  }

  .aura-effect-title {
    margin: 0 0 10px;
    color: {{ section.settings.title_color }};
    font-size: {{ section.settings.title_size }}px;
    line-height: 1.3;
    font-weight: {{ section.settings.title_weight }};
  }

  .aura-effect-text {
    margin: 0;
    color: {{ section.settings.text_color }};
    font-size: {{ section.settings.text_size }}px;
    line-height: 1.5;
  }

  @media screen and (max-width: 1199px) {
    .aura-effect-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media screen and (max-width: 749px) {
    .aura-effect-section {
      padding-top: {{ section.settings.padding_top_mobile }}px;
      padding-bottom: {{ section.settings.padding_bottom_mobile }}px;
    }

    .aura-effect-container {
      padding: 0 16px;
    }

    .aura-effect-heading {
      margin-bottom: 24px;
      font-size: calc({{ section.settings.heading_size }}px * 0.78);
    }

    .aura-effect-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .aura-effect-card {
      padding: 24px 18px 18px;
    }

    .aura-effect-badge {
      width: 38px;
      height: 38px;
      font-size: 16px;
      top: -10px;
      left: -6px;
    }

    .aura-effect-image-wrap {
      width: calc({{ section.settings.image_size }}px * 0.82);
      height: calc({{ section.settings.image_size }}px * 0.82);
      margin-bottom: 16px;
    }

    .aura-effect-title {
      font-size: calc({{ section.settings.title_size }}px * 0.95);
    }

    .aura-effect-text {
      font-size: calc({{ section.settings.text_size }}px * 0.96);
    }
  }
/* END_SECTION:how-use-cards */