/** Shopify CDN: Minification failed

Line 126:12 Expected identifier but found whitespace
Line 126:14 Unexpected "{"
Line 126:23 Expected ":"
Line 126:47 Expected ":"

**/


/* CSS from section stylesheet tags */
.premium-trust-badges {
  margin: 2rem 0;
  background: linear-gradient(135deg, {{ section.settings.background_color }} 0%, #f8f6f1 100%);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
}

/* Subtle shimmer effect */
.premium-trust-badges::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 4s infinite;
  z-index: 1;
}

.premium-trust-badges__header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.premium-trust-badges__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.5rem 0;
}

.premium-trust-badges__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #b8a17f;
  margin: 0;
}

.premium-trust-badges__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.premium-trust-badges__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1rem;
}

.premium-trust-badges__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.premium-trust-badges__icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #b8a17f 0%, #a69168 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 24px rgba(184, 161, 127, 0.3);
  position: relative;
  overflow: hidden;
}

.premium-trust-badges__icon-wrapper::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  border-radius: 50%;
}

.premium-trust-badges__icon {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
}

.premium-trust-badges__icon-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.premium-trust-badges__main-text {
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  font-size: {{ section.settings.font_size }}px;
  max-width: 600px;
  position: relative;
  margin-bottom: 1.5rem;
}

.premium-trust-badges__main-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #b8a17f, #d4c4a8, #b8a17f, transparent);
  border-radius: 2px;
  box-shadow: 
    0 0 20px rgba(184, 161, 127, 0.8),
    0 0 40px rgba(184, 161, 127, 0.6),
    0 0 60px rgba(184, 161, 127, 0.4),
    0 0 80px rgba(184, 161, 127, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  animation: goldenGlow 3s infinite alternate;
}

@keyframes goldenGlow {
  0% { 
    box-shadow: 
      0 0 20px rgba(184, 161, 127, 0.8),
      0 0 40px rgba(184, 161, 127, 0.6),
      0 0 60px rgba(184, 161, 127, 0.4),
      0 0 80px rgba(184, 161, 127, 0.2),
      inset 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0.9;
  }
  100% { 
    box-shadow: 
      0 0 30px rgba(184, 161, 127, 1),
      0 0 60px rgba(184, 161, 127, 0.8),
      0 0 90px rgba(184, 161, 127, 0.6),
      0 0 120px rgba(184, 161, 127, 0.4),
      inset 0 0 15px rgba(255, 255, 255, 0.5);
    opacity: 1;
  }
}

.premium-trust-badges__description {
  text-align: center;
  font-size: 1.125rem;
  color: #000000;
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 500px;
}

.premium-trust-badges__description strong {
  color: #000000;
  font-weight: 700;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@media (min-width: 750px) {
  .premium-trust-badges__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .premium-trust-badges__icons {
    margin-bottom: 2rem;
    gap: 4rem;
  }
  
  .premium-trust-badges__text-content {
    max-width: 600px;
  }
  
  .premium-trust-badges__main-text {
    text-align: center;
  }
  
  .premium-trust-badges__description {
    text-align: center;
  }
}

@media (max-width: 749px) {
  .premium-trust-badges__icons {
    gap: 1.5rem;
  }
  
  .premium-trust-badges__icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .premium-trust-badges__icon {
    width: 60px;
    height: 60px;
  }
  
  .premium-trust-badges__icon-text {
    font-size: 0.875rem;
  }
  
  .premium-trust-badges__title {
    font-size: 1.5rem;
  }
  
  .premium-trust-badges__subtitle {
    font-size: 1rem;
  }
  
  .premium-trust-badges__description {
    font-size: 1rem;
  }
  
  .premium-trust-badges {
    padding: 2rem 1.5rem;
  }
  
  .premium-trust-badges__icon-item {
    max-width: 100px;
  }
}