/** Shopify CDN: Minification failed

Line 17:0 Unexpected "{"
Line 17:1 Expected identifier but found "%"
Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:78 Expected ":"
Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 20:84 Expected ":"
... and 10 more hidden warnings

**/
/* Animated Stats Section Styles */
{%- style -%}
  .animated-stats-section {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
    background-color: rgb(var(--color-background));
  }

  @media screen and (min-width: 750px) {
    .animated-stats-section {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }
{%- endstyle -%}

.animated-stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Styles */
.animated-stats-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animated-stats-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.animated-stats-placeholder {
  width: 100%;
  height: 400px;
  background-color: #f5f5f5;
  border-radius: 12px;
}

/* Content Styles */
.animated-stats-content {
  padding-left: 2rem;
}

.animated-stats-heading {
  font-family: var(--font-heading-family);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
}

.animated-stats-subheading {
  font-family: var(--font-body-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: rgb(var(--color-foreground));
  opacity: 0.8;
}

/* Stats Grid */
.animated-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.animated-stat-item {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background-color: rgba(var(--color-background), 0.5);
  border: 1px solid rgba(var(--color-foreground), 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animated-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #4a3b31;
}

.animated-stat-number {
  font-family: var(--font-heading-family);
  font-size: 48px;
  font-weight: 700;
  color: #4a3b31;
  margin-bottom: 0.5rem;
  line-height: 1;
  position: relative;
}

.animated-stat-symbol {
  position: relative;
  display: inline;
  font-size: 36px;
  font-weight: 700;
  color: #4a3b31;
  margin-right: 0.25rem;
}

.animated-stat-label {
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  opacity: 0.8;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animation Classes */
.animated-stat-number.animate {
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* CTA Section */
.animated-stats-cta {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
}

.animated-stats-cta-button {
  display: inline-block;
  background: #4a3b31;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: var(--font-body-family);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #4a3b31;
  box-shadow: 0 2px 8px rgba(74, 59, 49, 0.2);
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.01em;
}

.animated-stats-cta-button:hover {
  background: #ffffff;
  color: #4a3b31;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 59, 49, 0.3);
  text-decoration: none;
}

/* Mobile Styles */
@media screen and (max-width: 749px) {
  .animated-stats-section {
    padding: 3rem 0;
  }

  .animated-stats-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .animated-stats-content {
    padding-left: 0;
    text-align: center;
  }

  /* CTA Mobile */
  .animated-stats-cta {
    margin-top: 1.5rem;
  }

      .animated-stats-heading {
        font-size: 30px;
        margin-bottom: 1rem;
      }

  .animated-stats-subheading {
    font-size: 16px;
    margin-bottom: 2rem;
  }

  .animated-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .animated-stat-item {
    padding: 1.75rem;
  }

  .animated-stat-number {
    font-size: 40px;
  }

  .animated-stat-symbol {
    font-size: 30px;
    left: -0.75rem;
  }

  .animated-stat-label {
    font-size: 13px;
  }

}

/* Tablet Styles */
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .animated-stats-wrapper {
    gap: 3rem;
  }

  .animated-stats-content {
    padding-left: 1rem;
  }

  .animated-stats-heading {
    font-size: 32px;
  }

  .animated-stats-subheading {
    font-size: 17px;
  }

  .animated-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .animated-stat-number {
    font-size: 44px;
  }

  .animated-stat-symbol {
    font-size: 32px;
    left: -0.75rem;
  }

}

/* Large Desktop Styles */
@media screen and (min-width: 1200px) {
  .animated-stats-heading {
    font-size: 42px;
  }

  .animated-stats-subheading {
    font-size: 20px;
  }

  .animated-stat-number {
    font-size: 56px;
  }

  .animated-stat-symbol {
    font-size: 42px;
    left: -1.25rem;
  }

  .animated-stat-label {
    font-size: 15px;
  }
}
