/** Shopify CDN: Minification failed

Line 186:0 All "@import" rules must come first
Line 187:0 All "@import" rules must come first
Line 498:0 All "@import" rules must come first
Line 499:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

.suppply-testimonials {
  padding: 100px 20px;
  background: #f8fafc;
  font-family: 'Space Mono', monospace;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1360px;
  margin: 0 auto;
}

.top-label {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.top-label span {
  font-size: 12px;
  background: rgba(255,255,255,0.92);
  padding: 6px 16px;
  border-radius: 999px;
  color: #2b2b2b;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: floatBadge 4s ease-in-out infinite;
}

.top-label span svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.section-heading-animated {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #151515;
  margin-bottom: 10px;
  animation: fadeSlideUp 1.5s ease-in-out both;
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.suppply-testimonials .subheading {
  font-size: 16px;
  color: #444;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeSlideUp 2s ease-in-out both;
}

.testimonial-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.testimonial-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: center;
  flex: 0 0 300px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  /* MATCH product card shadows */
  box-shadow: 0 8px 20px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
}

.quote-icon {
  font-size: 30px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.7;
  border-left: 3px solid #5284af;
  padding-left: 10px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  background: #e0f2fe;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0f172a;
  font-size: 14px;
}

.author-details {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.author-name {
  font-weight: bold;
  color: #111827;
}

.author-title {
  font-size: 12px;
  color: #6b7280;
}

.carousel-nav {
  margin-top: 20px;
}

.carousel-button {
  background: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  margin: 0 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  cursor: pointer;
}

@media (min-width: 769px) {
  .testimonial-carousel {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
  }
  .testimonial-card {
    flex: 0 0 calc(33.333% - 24px);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap');

.ultrafrost-testimonials {
  background: #f8fafc;
  padding: 100px 20px;
  font-family: 'Space Mono', monospace;
  text-align: center;
}

.uf-testimonial-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #151515;
  margin-bottom: 60px;
}

.uf-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.uf-testimonial-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #151515;
}

.uf-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.uf-testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.uf-testimonial-name {
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 2px;
  color: #151515;
}

.uf-testimonial-role {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.uf-stars {
  color: #5284af;
  font-size: 18px;
  margin-bottom: 10px;
  animation: glowStars 2s ease-in-out infinite alternate;
}

@keyframes glowStars {
  from { text-shadow: 0 0 4px rgba(82,132,175,0.6); }
  to { text-shadow: 0 0 10px rgba(82,132,175,1); }
}

.uf-testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  animation: glowText 3s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .uf-testimonial-title {
    font-size: 32px;
  }

  .uf-testimonial-quote {
    font-size: 14px;
  }
}
.ultrafrost-hero {
  background: #f8fafc;
  padding: 60px 20px;
}

.uf-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.uf-content {
  max-width: 540px;
  flex: 1;
}

.uf-title {
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.1;
  gap: 5px;
}

.uf-title .ultra {
  color: #151515;
}

.uf-title .frost {
  color: #5284af;
  position: relative;
  z-index: 1;
}

.uf-title .light-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: sweep 3s linear infinite;
  z-index: 0;
}

@keyframes sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.uf-desc {
  font-family: monospace;
  margin: 20px 0;
  color: #333;
  font-size: 16px;
}

.uf-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.uf-feature {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  font-size: 15px;
  transition: all 0.3s ease;
}

.uf-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.uf-cta {
  margin-top: 30px;
}

.uf-price {
  font-size: 22px;
  margin-bottom: 15px;
}

.current-price {
  font-weight: bold;
  color: #151515;
  margin-right: 10px;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 16px;
  margin-right: 10px;
}

.discount {
  background: #e2f0ff;
  color: #5284af;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.uf-btn {
  background: #151515;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
}

.uf-btn:hover {
  background: #333;
}

.uf-learn {
  display: inline-block;
  margin-top: 10px;
  color: #5284af;
  text-decoration: none;
  font-weight: 500;
}

.uf-learn:hover {
  text-decoration: underline;
}

.uf-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  flex: 1;
  text-align: center;
}

.uf-image {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

.uf-image-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(82,132,175,0.4) 0%, transparent 80%);
  filter: blur(30px);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.uf-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #151515;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .uf-container {
    flex-direction: column;
    align-items: center;
  }

  .uf-image-wrapper {
    order: -1;
    margin-bottom: 30px;
  }

  .uf-title {
    font-size: 2.2rem;
    justify-content: center;
    text-align: center;
  }

  .uf-desc {
    text-align: center;
  }

  .uf-features {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .uf-cta {
    text-align: center;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap');

.ultrafrost-hero {
  background: #f8fafc;
  padding: 100px 20px 60px;
  font-family: 'Space Mono', monospace;
  position: relative;
  overflow: hidden;
}

.uf-floating-badge {
  position: absolute;
  inset: var(--badge-top, 30px) auto auto var(--badge-left, 50%);
  transform: translateX(-50%);
  background: #ffffff;
  font-family: 'Space Mono', monospace;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-weight: bold;
  font-size: 13px;
  color: #151515;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
  justify-content: center;
}

@keyframes floatBadge {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
  100% { transform: translate(-50%, 0); }
}

.uf-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.uf-content {
  flex: 1;
  min-width: 0;
  position: relative;
}

.uf-title {
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  font-weight: 800;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.uf-slogan {
  font-family: 'Trade Winds', cursive !important;
  font-size: 26px;
  margin-bottom: 25px;
  text-align: left;
  color: #5284af;
  animation: glowText 3s ease-in-out infinite;
}

@keyframes glowText {
  0%, 100% { text-shadow: 0 0 10px rgba(82,132,175,0.6); }
  50% { text-shadow: 0 0 20px rgba(82,132,175,1); }
}

.uf-title .ultra {
  color: #151515;
}

.uf-title .frost {
  background: linear-gradient(90deg, #5284af 10%, #ffffff 50%, #5284af 90%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerFrost 4s ease-in-out infinite alternate;
  font-weight: bold;
  color: transparent;
}

@keyframes shimmerFrost {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.uf-desc {
  margin: 10px 0 20px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.uf-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 10px 0 30px;
}

.uf-feature {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.uf-feature:hover {
  transform: translateY(-4px);
}

.uf-feature strong {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 4px;
}

.uf-feature img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.uf-cta-box {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  padding: 24px;
  text-align: center;
}

.uf-price {
  font-size: 20px;
  margin-bottom: 16px;
}

.current-price {
  font-weight: bold;
  color: #151515;
  margin-right: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.discount {
  background: #e2f0ff;
  color: #5284af;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.uf-btn,
.uf-learn {
  font-family: 'Space Mono', monospace;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-right: 10px;
}

.uf-btn {
  background: #151515;
  color: white;
}

.uf-btn:hover,
.uf-learn:hover {
  transform: translateY(-2px);
}

.uf-learn {
  background: transparent;
  color: #5284af;
}

.uf-image-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 100%;
}

.uf-image-outer {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  animation: intenseGlow 3.5s ease-in-out infinite;
  position: relative;
}

.uf-image-outer img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
}

@keyframes intenseGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(82,132,175,0.5); }
  50% { box-shadow: 0 0 90px rgba(82,132,175,0.8); }
}

@media screen and (max-width: 768px) {
  .uf-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
    align-items: center;
  }

  .uf-image-wrapper {
    order: -1;
    width: 100%;
  }

  .uf-title {
    justify-content: center;
    font-size: clamp(2.5rem, 8vw, 3.4rem);
    text-align: center;
  }

  .uf-desc, .uf-cta-box {
    text-align: center;
  }

  .uf-features {
    grid-template-columns: 1fr;
  }
}