/** Shopify CDN: Minification failed

Line 79:19 Expected identifier but found whitespace
Line 79:21 Unexpected "{"
Line 79:30 Expected ":"
Line 87:15 Expected identifier but found whitespace
Line 87:17 Unexpected "{"
Line 87:26 Expected ":"
Line 116:8 Expected identifier but found whitespace
Line 116:10 Unexpected "{"
Line 116:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.features-section {
  padding: 60px 0;
  transition: all 0.3s ease;
}



.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  gap: 30px;
}

.grid-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.feature-item {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 25px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: {{ section.settings.accent_color | default: '#3a86ff' }};
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: {{ section.settings.accent_color | default: '#3a86ff' }};
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.feature-icon img {
  max-width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon img {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: {{ section.settings.text_color | default: '#000000' }};
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-grid-4,
  .grid-grid-3,
  .grid-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    padding: 30px 20px;
  }
}

/* Animation for items when they come into view */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }
.video-grid {
    padding: 3rem 0;
  }

  .video-grid__title {
    text-align: center;
    margin-bottom: 2rem;

  }

  .vgrid {
    display: grid;
    gap: 1.5rem;
  }

  .vgrid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vgrid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vgrid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }

  .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

 
  .video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
    color: #999;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .vgrid-cols-4 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .vgrid-cols-3,
    .vgrid-cols-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .video-grid__title {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .vgrid {
      grid-template-columns: 1fr;
    }
    
    .vgrid-cols-2,
    .vgrid-cols-3,
    .vgrid-cols-4 {
      grid-template-columns: 1fr;
    }
  }