/** Shopify CDN: Minification failed

Line 16:19 Expected identifier but found whitespace
Line 16:21 Unexpected "{"
Line 16:30 Expected ":"
Line 17:8 Expected identifier but found whitespace
Line 17:10 Unexpected "{"
Line 17:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.lux-community-hero {
  padding: 6rem 0;
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  overflow: hidden;
}

.lux-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.lux-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
}

.lux-col-text,
.lux-col-slider {
  width: 100%;
  padding: 0 15px;
}

.lux-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.lux-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lux-char.lux-animate-active {
  opacity: 1;
  transform: translateY(0);
}

.lux-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.lux-button-group {
  margin-bottom: 2rem;
}

.lux-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lux-btn-primary {
  background-color: #007bff;
  color: white;
}

.lux-btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lux-btn-secondary {
     background-color: #212123;
    color: white;
    border-radius: 0;
}

.lux-btn-secondary:hover {
  background-color: #545b62;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lux-community-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
}

.lux-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.lux-slider-item.lux-active {
  opacity: 1;
  display: block;
}

.lux-slider-link {
  display: block;
  width: 100%;
  height: 100%;
}

.lux-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .lux-col-text,
  .lux-col-slider {
    width: 50%;
  }

  .lux-title {
    font-size: 3.5rem;
  }

  .lux-description {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .lux-community-hero {
    padding: 4rem 0;
  }

  .lux-title {
    font-size: 2.5rem;
  }

  .lux-description {
    font-size: 1.1rem;
  }
}
.product-grid .multicolumn-list__item {
    background-color: var(--color-background);
    border-radius: 12px;
  }

  .multicolumn-card__info {
    padding: 2rem;
  }

  .multicolumn-slider-image {
    border-radius: 12px; 
  }