/** Shopify CDN: Minification failed

Line 598:0 Expected "}" to go with "{"

**/
/* ============================================
   Statistics Results Section - Stylesheet
   Version: 1.0.0
   ============================================ */

/* CSS Custom Properties (Theme Editor Integration) */
.statistics-results-section {
  /* Section Settings */
  --sr-section-padding-top: 80px;
  --sr-section-padding-bottom: 80px;
  --sr-section-bg-color: #F5F5F0;
  
  /* Heading Settings */
  --sr-heading-color: #1e3a5f;
  --sr-heading-font-size: 56px;
  --sr-heading-font-weight: 700;
  --sr-heading-margin-bottom: 20px;
  
  /* Subheading Settings */
  --sr-subheading-color: #1e3a5f;
  --sr-subheading-font-size: 18px;
  --sr-subheading-font-weight: 400;
  --sr-subheading-line-height: 1.6;
  --sr-subheading-margin-bottom: 50px;
  
  /* Statistics Background Settings */
  --sr-stats-bg-color: #5a7a5a;
  --sr-stats-padding-top: 60px;
  --sr-stats-padding-bottom: 60px;
  --sr-stats-margin-bottom: 30px;
  
  /* Percentage Settings */
  --sr-percentage-color: #ffffff;
  --sr-percentage-font-size: 100px;
  --sr-percentage-font-weight: 700;
  --sr-percentage-margin-bottom: 16px;
  
  /* Description Settings */
  --sr-description-color: #ffffff;
  --sr-description-font-size: 14px;
  --sr-description-font-weight: 400;
  --sr-description-line-height: 1.4;
  --sr-description-letter-spacing: 1px;
  
  /* Disclaimer Settings */
  --sr-disclaimer-color: #1e3a5f;
  --sr-disclaimer-font-size: 14px;
  --sr-disclaimer-font-weight: 400;
  
  /* Divider Settings */
  --sr-divider-color: rgba(255, 255, 255, 0.3);
  --sr-divider-width: 1px;
  --sr-divider-height: 100px;
  
  /* Mobile Settings */
  --sr-mobile-heading-font-size: 40px;
  --sr-mobile-subheading-font-size: 16px;
  --sr-mobile-percentage-font-size: 72px;
  --sr-mobile-description-font-size: 13px;
  --sr-mobile-disclaimer-font-size: 12px;
  --sr-mobile-stats-padding-top: 40px;
  --sr-mobile-stats-padding-bottom: 40px;
}

/* ============================================
   Main Section Container
   ============================================ */

.statistics-results-section {
  padding: var(--sr-section-padding-top) 0 var(--sr-section-padding-bottom);
  background-color: var(--sr-section-bg-color);
}

.statistics-results-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Header Section (Heading + Subheading)
   ============================================ */

.statistics-results-header {
  text-align: center;
  margin-bottom: var(--sr-subheading-margin-bottom);
}

.statistics-results-heading {
  color: var(--sr-heading-color);
  font-size: var(--sr-heading-font-size);
  font-weight: var(--sr-heading-font-weight);
  line-height: 1.2;
  margin: 0 0 var(--sr-heading-margin-bottom) 0;
}

.statistics-results-subheading {
  color: var(--sr-subheading-color);
  font-size: var(--sr-subheading-font-size);
  font-weight: var(--sr-subheading-font-weight);
  line-height: var(--sr-subheading-line-height);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Statistics Container (Background Area)
   ============================================ */

.statistics-results-stats-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--sr-stats-margin-bottom);
  border-radius: 0;
}

/* Color Background */
.statistics-results-stats-wrapper:not(.has-background-image) {
  background-color: var(--sr-stats-bg-color);
}

/* Image Background */
.statistics-results-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.statistics-results-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   Statistics Content Container
   ============================================ */

.statistics-results-stats-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--sr-stats-padding-top) 20px var(--sr-stats-padding-bottom);
}

/* ============================================
   Individual Statistic Items
   ============================================ */

.statistics-results-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

/* Mobile: Horizontal dividers between items */
.statistics-results-stat-item:not(:last-child) {
  border-bottom: var(--sr-divider-width) solid var(--sr-divider-color);
}

/* ============================================
   Percentage Numbers
   ============================================ */

.statistics-results-percentage {
  color: var(--sr-percentage-color);
  font-size: var(--sr-percentage-font-size);
  font-weight: var(--sr-percentage-font-weight);
  line-height: 1;
  margin: 0 0 var(--sr-percentage-margin-bottom) 0;
}

/* ============================================
   Description Text
   ============================================ */

.statistics-results-description {
  color: var(--sr-description-color);
  font-size: var(--sr-description-font-size);
  font-weight: var(--sr-description-font-weight);
  line-height: var(--sr-description-line-height);
  letter-spacing: var(--sr-description-letter-spacing);
  text-transform: uppercase;
  margin: 0;
  max-width: 400px;
}

/* ============================================
   Disclaimer Text
   ============================================ */

.statistics-results-disclaimer {
  text-align: center;
  color: var(--sr-disclaimer-color);
  font-size: var(--sr-disclaimer-font-size);
  font-weight: var(--sr-disclaimer-font-weight);
  margin: 0;
}

/* ============================================
   Desktop Layout (768px and up)
   ============================================ */

@media (min-width: 768px) {
  /* Horizontal layout for statistics */
  .statistics-results-stats-container {
    flex-direction: row;
    align-items: stretch;
  }
  
  /* Equal width columns */
  .statistics-results-stat-item {
    flex: 1;
    border-bottom: none !important;
  }
  
  /* Desktop: Vertical dividers between items */
  .statistics-results-stat-item:not(:last-child) {
    border-right: var(--sr-divider-width) solid var(--sr-divider-color);
    border-bottom: none;
  }
}

/* ============================================
   Mobile Responsive Styles (below 768px)
   ============================================ */

@media (max-width: 767px) {
  /* Heading */
  .statistics-results-heading {
    font-size: var(--sr-mobile-heading-font-size);
  }
  
  /* Subheading */
  .statistics-results-subheading {
    font-size: var(--sr-mobile-subheading-font-size);
  }
  
  /* Percentage */
  .statistics-results-percentage {
    font-size: var(--sr-mobile-percentage-font-size);
  }
  
  /* Description */
  .statistics-results-description {
    font-size: var(--sr-mobile-description-font-size);
  }
  
  /* Disclaimer */
  .statistics-results-disclaimer {
    font-size: var(--sr-mobile-disclaimer-font-size);
  }
  
  /* Statistics Container Padding */
  .statistics-results-stats-container {
    padding-top: var(--sr-mobile-stats-padding-top);
    padding-bottom: var(--sr-mobile-stats-padding-bottom);
  }
}

/* ============================================
   Tablet Adjustments (768px - 1024px)
   ============================================ */

@media (min-width: 768px) and (max-width: 1024px) {
  .statistics-results-heading {
    font-size: calc(var(--sr-heading-font-size) * 0.85);
  }
  
  .statistics-results-percentage {
    font-size: calc(var(--sr-percentage-font-size) * 0.85);
  }
  
  .statistics-results-stat-item {
    padding: 30px 15px;
  }
}

/* ============================================
   Small Mobile Devices (below 480px)
   ============================================ */

@media (max-width: 480px) {
  .statistics-results-wrapper {
    padding: 0 15px;
  }
  
  .statistics-results-heading {
    font-size: calc(var(--sr-mobile-heading-font-size) * 0.9);
  }
  
  .statistics-results-percentage {
    font-size: calc(var(--sr-mobile-percentage-font-size) * 0.9);
  }
  
  .statistics-results-stat-item {
    padding: 30px 15px;
  }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .statistics-results-section {
    background: white !important;
    padding: 20px 0 !important;
  }
  
  .statistics-results-stats-wrapper {
    background: #f5f5f5 !important;
    page-break-inside: avoid;
  }
  
  .statistics-results-background-image {
    display: none;
  }
  
  .statistics-results-percentage,
  .statistics-results-description {
    color: #000 !important;
  }
}

/* ============================================
   Accessibility Enhancements
   ============================================ */

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .statistics-results-stat-item:not(:last-child) {
    border-color: currentColor;
  }
  
  .statistics-results-percentage,
  .statistics-results-description {
    font-weight: 700;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .statistics-results-section * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus Styles for Accessibility */
.statistics-results-section a:focus,
.statistics-results-section button:focus {
  outline: 3px solid var(--sr-heading-color);
  outline-offset: 2px;
}

/* ============================================
   Browser-Specific Fixes
   ============================================ */

/* Safari iOS - Prevent zoom on input focus */
@supports (-webkit-touch-callout: none) {
  .statistics-results-section input,
  .statistics-results-section select,
  .statistics-results-section textarea {
    font-size: 16px;
  }
}

/* IE11 Flexbox Fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .statistics-results-stats-container {
    display: -ms-flexbox;
  }
  
  .statistics-results-stat-item {
    -ms-flex: 1 1 auto;
  }
}

/* ============================================
   Optional Enhancement Classes
   ============================================ */

/* Add shadow effect to stats wrapper */
.statistics-results-stats-wrapper.with-shadow {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Rounded corners variant */
.statistics-results-stats-wrapper.rounded {
  border-radius: 12px;
}

/* Gradient overlay for images */
.statistics-results-stats-wrapper.with-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.statistics-results-stats-wrapper.with-gradient .statistics-results-stats-container {
  z-index: 2;
}

/* Hover effect on stat items */
.statistics-results-stat-item.hoverable {
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.statistics-results-stat-item.hoverable:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Animated entrance */
.statistics-results-section.animated .statistics-results-stat-item {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
}

.statistics-results-section.animated .statistics-results-stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.statistics-results-section.animated .statistics-results-stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.statistics-results-section.animated .statistics-results-stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .statistics-results-section.auto-dark-mode {
    --sr-section-bg-color: #1a1a1a;
    --sr-heading-color: #ffffff;
    --sr-subheading-color: #e0e0e0;
    --sr-disclaimer-color: #e0e0e0;
    --sr-stats-bg-color: #2d2d2d;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

/* Hide on mobile */
.statistics-results-section .hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .statistics-results-section .hide-mobile {
    display: block;
  }
}

/* Hide on desktop */
.statistics-results-section .hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .statistics-results-section .hide-desktop {
    display: none;
  }
}

/* Text alignment utilities */
.statistics-results-section .text-left {
  text-align: left !important;
}

.statistics-results-section .text-center {
  text-align: center !important;
}

.statistics-results-section .text-right {
  text-align: right !important;
}

/* Spacing utilities */
.statistics-results-section .no-margin {
  margin: 0 !important;
}

.statistics-results-section .no-padding {
  padding: 0 !important;
}

/* ============================================
   2x2 Grid Layout for Mobile
   ============================================ */

@media (max-width: 767px) {
  .statistics-results-stats-container.mobile-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  
  /* Reset default border styles for grid layout */
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-stat-item {
    border: none;
  }
  
  /* Add borders for 2x2 grid */
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-stat-item:nth-child(1),
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-stat-item:nth-child(2) {
    border-bottom: var(--sr-divider-width) solid var(--sr-divider-color);
  }
  
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-stat-item:nth-child(odd) {
    border-right: var(--sr-divider-width) solid var(--sr-divider-color);
  }
  
  /* Smaller text for 2x2 grid to fit better */
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-percentage {
    font-size: calc(var(--sr-mobile-percentage-font-size) * 0.7);
  }
  
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-description {
    font-size: calc(var(--sr-mobile-description-font-size) * 0.9);
  }
  
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-stat-item {
    padding: 24px 12px;
  }
/* ============================================
   Fix for Percentage Alignment
   ============================================ */

/* Remove vertical centering from stat items */
.statistics-results-stat-item {
  justify-content: flex-start !important;
}

/* For desktop row layout */
@media (min-width: 768px) {
  .statistics-results-stats-container {
    align-items: flex-start;
  }
}

/* For mobile 2x2 grid */
@media (max-width: 767px) {
  .statistics-results-stats-container.mobile-grid-2x2 {
    align-items: flex-start;
  }
  
  .statistics-results-stats-container.mobile-grid-2x2 .statistics-results-stat-item {
    justify-content: flex-start;
  }
}

/* ============================================
   End of Stylesheet
   ============================================ */
