/** Shopify CDN: Minification failed

Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 22:26 Unexpected "{"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:51 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
... and 1 more hidden warnings

**/
/* LF Product Features - Minimaliste Luxe */
.lf-product-features {
  padding: var(--lf-space-3xl) 0;
  background-color: var(--lf-bg-color, #F5F5F0);
}

.section-{{ section.id }} {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 749px) {
  .lf-product-features {
    padding: var(--lf-space-2xl) 0;
  }
}

.lf-product-features__container {
  max-width: var(--lf-container-xl);
  margin: 0 auto;
}

.lf-product-features__header {
  text-align: center;
  margin-bottom: var(--lf-space-3xl);
}

@media screen and (max-width: 749px) {
  .lf-product-features__header {
    margin-bottom: var(--lf-space-2xl);
  }
}

.lf-product-features__heading {
  font-family: var(--lf-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem); /* Enlarged +30% */
  font-weight: 300;
  line-height: 1.2;
  color: var(--lf-text-color, #1E3A5F);
  margin: 0 0 var(--lf-space-sm) 0;
  letter-spacing: -0.01em;
}

.lf-product-features__subheading {
  font-family: var(--lf-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--lf-text-color-light, #666666);
  max-width: 600px;
  margin: 0 auto;
}

.lf-product-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lf-space-xl);
}

.lf-product-features__grid[style*="grid-4"] {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 989px) {
  .lf-product-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lf-space-lg);
  }

  .lf-product-features__grid[style*="grid-4"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .lf-product-features__grid {
    grid-template-columns: 1fr;
    gap: var(--lf-space-md);
  }
}

.lf-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--lf-space-xl) var(--lf-space-lg);
  background-color: #FFFFFF;
  border-radius: var(--lf-radius-md);
  transition: all var(--lf-transition-base);
}

.lf-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lf-shadow-lg);
}

@media screen and (max-width: 749px) {
  .lf-feature-card {
    padding: var(--lf-space-lg) var(--lf-space-md);
  }
}

.lf-feature-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--lf-space-md);
  color: var(--lf-accent-color, #D4AF37);
}

@media screen and (max-width: 749px) {
  .lf-feature-card__icon {
    width: 64px;
    height: 64px;
  }
}

.lf-feature-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lf-feature-card__icon--svg {
  border: 1px solid var(--lf-accent-color, #D4AF37);
  border-radius: var(--lf-radius-full);
}

.lf-feature-card__title {
  font-family: var(--lf-font-heading);
  font-size: 1.625rem; /* Enlarged +18% */
  font-weight: 400;
  color: var(--lf-text-color, #1E3A5F);
  margin: 0 0 var(--lf-space-sm) 0;
}

@media screen and (max-width: 749px) {
  .lf-feature-card__title {
    font-size: 1.5rem; /* Enlarged +20% */
  }
}

.lf-feature-card__description {
  font-family: var(--lf-font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--lf-text-color-light, #666666);
  margin: 0 0 var(--lf-space-md) 0;
}

@media screen and (max-width: 749px) {
  .lf-feature-card__description {
    font-size: 0.875rem;
  }
}

.lf-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lf-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lf-primary-color, #1E3A5F);
  text-decoration: none;
  transition: all var(--lf-transition-base);
}

.lf-feature-card__link:hover {
  color: var(--lf-accent-color, #D4AF37);
  gap: 0.625rem;
}

.lf-feature-card__link-arrow {
  transition: transform var(--lf-transition-base);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .lf-feature-card:hover {
    transform: none;
  }

  .lf-feature-card__link:hover {
    gap: 0.5rem;
  }
}
