/** Shopify CDN: Minification failed

Line 91:17 Expected identifier but found whitespace
Line 91:19 Unexpected "{"
Line 91:28 Expected ":"
Line 91:55 Expected ":"
Line 92:15 Expected identifier but found whitespace
Line 92:17 Unexpected "{"
Line 92:26 Expected ":"
Line 92:51 Expected ":"
Line 93:14 Expected identifier but found whitespace
Line 93:16 Unexpected "{"
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.faq-labs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.faq-labs__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-labs__left h2 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.faq-labs__left p {
  color: #555;
  margin-bottom: 1.5rem;
}
.faq-labs__left a.button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.faq-labs__left a.button:hover {
  background-color: #333;
}
.faq-labs__right .faq-item {
  border-top: 1px solid #ddd;
  padding: 1rem 0;
}
.faq-labs__right .faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}
.faq-labs__right .faq-question svg {
  transition: transform 0.3s ease;
}
.faq-labs__right .faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  color: #444;
  margin-top: 0.5rem;
}
.faq-labs__right .faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}
.faq-labs__right .faq-item.active svg {
  transform: rotate(180deg);
}

/* Responsive */
@media screen and (max-width: 749px) {
  .faq-labs {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.filtered-product-cards {
  --card-padding: {{ section.settings.card_padding }}px;
  --image-size: {{ section.settings.image_size }}px;
  --font-size: {{ section.settings.font_size }}px;
  --font-weight: {{ section.settings.font_weight }};
  text-align: {{ section.settings.alignment }};
  padding: 20px;
}

.filtered-product-cards__filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.filtered-product-cards__filter-button {
  cursor: pointer;
  border: 2px solid #333;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  background: white;
  transition: background-color 0.3s, color 0.3s;
}

.filtered-product-cards__filter-button[data-active="true"],
.filtered-product-cards__filter-button:hover {
  background-color: #333;
  color: white;
}

.filtered-product-cards__grid {
  display: grid;
  grid-template-columns: repeat({{ section.settings.cards_per_row }}, minmax(0, 1fr));
  gap: 16px;
}

.filtered-product-cards__card {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: var(--card-padding);
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.filtered-product-cards__image {
  width: var(--image-size);
  height: var(--image-size);
  object-fit: contain;
  margin: 0 auto 8px auto;
}

.filtered-product-cards__title {
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  margin: 0 0 4px 0;
}

.filtered-product-cards__price {
  color: #444;
  margin-bottom: 8px;
  font-weight: bold;
}

.filtered-product-cards__form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filtered-product-cards__form input[type="number"] {
  padding: 4px;
  width: 60px;
  margin: 0 auto;
  text-align: center;
}

.filtered-product-cards__form button {
  background-color: #222;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filtered-product-cards__form button:hover {
  background-color: #444;
}