/** Shopify CDN: Minification failed

Line 7:5 Unexpected "="

**/

<!-- ============================================ -->
<!-- FILE 2: stats-section.css -->
<!-- Location: assets/stats-section.css -->
<!-- ============================================ -->

/* Stats Section Styles */
.stats-section {
  padding: 40px 20px;
  background-color: var(--background-color, #f8f9fb);
}

.stats-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.stat-card {
  padding: 60px 40px;
  text-align: left;
  border-right: 1px solid var(--border-color, #d0dce9);
  border-bottom: 1px solid var(--border-color, #d0dce9);
  background-color: var(--background-color, #f8f9fb);
  transition: background-color 0.3s ease;
}

.stat-card:hover {
  background-color: #fff;
}

.stat-card:last-child {
  border-right: none;
}

.icon-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 28px;
  color: var(--primary-color, #3E6BA0);
  font-weight: 300;
  letter-spacing: 1px;
  margin-right: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  stroke: var(--primary-color, #3E6BA0);
  stroke-width: 1.5;
  fill: none;
}

.stat-icon .icon-fill {
  fill: var(--primary-color, #3E6BA0);
  stroke: none;
}

.stat-title {
  font-size: 25px;
  color: var(--title-color, #2c2416);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.stat-description {
  font-size: 15px;
  color: var(--text-color, #6b5d52);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stat-card:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .stat-card:nth-child(2) {
    border-right: none;
  }
  
  .stat-card:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    border-right: none;
    padding: 40px 30px;
  }

  .stat-title {
    font-size: 28px;
  }
}