/** Shopify CDN: Minification failed

Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 30:18 Unexpected "{"
Line 30:27 Expected ":"
Line 40:18 Unexpected "{"
Line 40:27 Expected ":"
Line 45:18 Unexpected "{"
Line 45:27 Expected ":"
... and 12 more hidden warnings

**/
/* Section Text Columns Grid */
#shopify-section-{{ section.id }} .section-header {
  text-align: center; /* Center the section title */
}

#shopify-section-{{ section.id }} .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 35px;
  gap: 30px;
  justify-items: center; /* Center blocks horizontally */
  align-items: start;
}

#shopify-section-{{ section.id }} .grid > div {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center; /* Center content inside block */
  width: 100%;
}

#shopify-section-{{ section.id }} .grid > div:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

#shopify-section-{{ section.id }} .image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

#shopify-section-{{ section.id }} .image-wrap img {
  max-width: 100%;
  height: 200px;
  border-radius: 6px;
}

/* Title Styling */
#shopify-section-{{ section.id }} .title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 15px;
  color: #333;
}

/* Button Styling */
#shopify-section-{{ section.id }} .btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

#shopify-section-{{ section.id }} .btn:hover {
  background-color: #333;
}

/* Responsive: 2 columns on tablets, 1 column on mobile */
@media (max-width: 1024px) {
  #shopify-section-{{ section.id }} .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .grid {
    grid-template-columns: 1fr;
  }
}

.store {
  max-width: 1440px;
  margin: 0 auto; /* Center whole section on wide screens */
}
