/** Shopify CDN: Minification failed

Line 38:21 Expected identifier but found whitespace
Line 38:23 Unexpected "{"
Line 38:33 Expected ":"
Line 72:15 Expected identifier but found whitespace
Line 72:17 Unexpected "{"
Line 72:27 Expected ":"
Line 81:10 Expected identifier but found whitespace
Line 81:12 Unexpected "{"
Line 81:22 Expected ":"
Line 89:10 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.category-grid {
    margin-left: -30px;
  }

  .category-card {
    position: relative;
    margin-bottom: 30px;
    height: 100%;
  }

  .category-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .category-card__content {
    height: 100%;
    background-color: {{ settings.color_body_bg }};
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .category-card__link:hover .category-card__content {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .category-card__image-wrapper {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
  }

  .category-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  }

  .category-card__link:hover .category-card__image {
    transform: scale(1.05);
  }

  .category-card__info {
    padding: 20px;
    background: {{ settings.color_body_bg }};
  }

  .category-card__title {
    margin: 0 0 5px;
    font-family: var(--typeHeaderPrimary);
    font-weight: var(--typeHeaderWeight);
    letter-spacing: var(--typeHeaderSpacing);
    line-height: 1.2;
    color: {{ settings.color_text }};
  }

  .category-card__subtitle {
    font-family: var(--typeBasePrimary);
    font-weight: var(--typeBaseWeight);
    letter-spacing: var(--typeBaseSpacing);
    line-height: 1.5;
    color: {{ settings.color_text }};
    opacity: 0.85;
  }

  @media screen and (max-width: 768px) {
    .category-grid {
      margin-left: -15px;
    }

    .category-card {
      margin-bottom: 15px;
    }

    .category-card__info {
      padding: 15px;
    }
  }