/** Shopify CDN: Minification failed

Line 16:15 Expected identifier but found whitespace
Line 16:17 Expected identifier but found "%"
Line 16:50 Unexpected "{"
Line 16:51 Unexpected "{"
Line 16:60 Expected ":"
Line 16:81 Unexpected "{"
Line 16:82 Expected identifier but found "%"
Line 16:99 Expected identifier but found "%"

**/
/* START_SECTION:gm-customer-reviews (INDEX:35) */
.reviews-section {
    padding: 60px 20px;
    background: {% if section.settings.bg_color %}{{ section.settings.bg_color }}{% else %}#fafafa{% endif %};
  }

  .reviews-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .reviews-heading {
    text-align: center;
    margin-bottom: 50px;
  }

  .reviews-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .reviews-heading p {
    font-size: 16px;
    color: #666;
    margin: 0;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }

  .review-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
  }

  .review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
  }

  .review-avatar.avatar-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
  .review-avatar.avatar-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
  .review-avatar.avatar-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
  .review-avatar.avatar-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
  .review-avatar.avatar-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

  .review-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
  }

  .review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
  }

  .review-stars {
    display: flex;
    gap: 2px;
    font-size: 14px;
    color: #FFC107;
  }

  .review-date {
    font-size: 12px;
    color: #bbb;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 16px 0;
  }

  .review-product {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
  }

  .review-footer {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
  }

  .review-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
  }

  .review-action:hover {
    color: #667eea;
  }

  .review-action-icon {
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .reviews-section {
      padding: 40px 16px;
    }

    .reviews-heading h2 {
      font-size: 24px;
    }

    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .review-card {
      padding: 18px;
    }
  }

  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .review-card {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .review-card:nth-child(1) { animation-delay: 0.1s; }
  .review-card:nth-child(2) { animation-delay: 0.15s; }
  .review-card:nth-child(3) { animation-delay: 0.2s; }
  .review-card:nth-child(4) { animation-delay: 0.25s; }
  .review-card:nth-child(5) { animation-delay: 0.3s; }
  .review-card:nth-child(6) { animation-delay: 0.35s; }
/* END_SECTION:gm-customer-reviews */
