/** Shopify CDN: Minification failed

Line 727:0 Unexpected "}"

**/
/* ============================================
   UNEEK LEDs — Collection Page Styles
   File: assets/uneek-collection.css
   ============================================ */

:root {
  --uneek-logo: #0690f4;
  --uneek-bg: #eff0f5;
  --uneek-text: #111111;
  --uneek-navy: #0e1c4d;
  --uneek-mid-blue: #214a80;
  --uneek-white: #ffffff;
  --uneek-grey-light: #dfe2e9;
  --uneek-grey-text: #7a7e8a;
  --uneek-grey-muted: #9a9da8;
  --uneek-border: #e4e6ed;
  --uneek-card-shadow: 0 1px 4px rgba(14, 28, 77, 0.05);
  --uneek-card-shadow-hover: 0 8px 28px rgba(6, 144, 244, 0.12);
  --uneek-radius: 14px;
  --uneek-radius-sm: 10px;
  --uneek-radius-xs: 6px;
}

/* Reset for section */
.uneek-collection {
  font-family: var(--font-body-family, inherit);
  background: var(--uneek-bg);
  color: var(--uneek-text);
}

.uneek-collection h1,
.uneek-collection h2,
.uneek-collection h3 {
  font-family: var(--font-heading-family, inherit);
}

.uneek-collection *,
.uneek-collection *::before,
.uneek-collection *::after {
  box-sizing: border-box;
}

.uneek-collection a {
  text-decoration: none;
  color: inherit;
}


/* ---- HERO ---- */

.uneek-hero {
  padding: 44px 40px 32px;
  position: relative;
  overflow: hidden;
}

.uneek-hero__bg-accent {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 144, 244, 0.05), transparent 70%);
  pointer-events: none;
}

.uneek-hero__content {
  position: relative;
  max-width: 880px;
}

.uneek-hero__label {
  display: inline-block;
  font-size: 12px;
  color: var(--uneek-logo);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(6, 144, 244, 0.06);
  padding: 6px 16px;
  border-radius: var(--uneek-radius-xs);
  border: 1px solid rgba(6, 144, 244, 0.12);
  margin-bottom: 14px;
}

.uneek-hero__title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0 0 16px 0;
  color: var(--uneek-navy);
}

.uneek-hero__description {
  font-size: 16.5px;
  line-height: 1.65;
  color: #5a5e6b;
  max-width: 600px;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.uneek-hero__tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--uneek-logo);
  font-weight: 600;
  margin: 0;
}


/* ---- BENEFITS ---- */

.uneek-benefits {
  padding: 0 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.uneek-benefit-card {
  background: var(--uneek-white);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid var(--uneek-grey-light);
  box-shadow: 0 1px 3px rgba(14, 28, 77, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.uneek-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 28, 77, 0.08);
}

.uneek-benefit-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uneek-benefit-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.uneek-benefit-card__title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--uneek-navy);
}

.uneek-benefit-card__desc {
  font-size: 12.5px;
  color: var(--uneek-grey-text);
  line-height: 1.5;
}


/* ---- PRODUCTS ---- */

.uneek-products {
  padding: 8px 40px 36px;
}

.uneek-products--mains {
  padding-top: 0;
}

.uneek-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.uneek-products__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.uneek-products__type-badge {
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.uneek-products__type-badge img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.uneek-products__type-badge svg {
  display: none;
}

.uneek-products__type-badge--solar {
  background: none;
  border: none;
  box-shadow: none;
}

.uneek-products__type-badge--mains {
  background: none;
  border: none;
  box-shadow: none;
}

.uneek-products__heading {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0;
  color: var(--uneek-navy);
}

.uneek-products__type-tag {
  border-radius: var(--uneek-radius-xs);
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uneek-products__type-tag--solar {
  background: rgba(6, 144, 244, 0.1);
  border: 1px solid rgba(6, 144, 244, 0.2);
  color: #0570C4;
}

.uneek-products__type-tag--mains {
  background: rgba(14, 28, 77, 0.08);
  border: 1px solid rgba(14, 28, 77, 0.15);
  color: var(--uneek-navy);
}

.uneek-products__count {
  font-size: 13px;
  color: var(--uneek-grey-muted);
  font-weight: 500;
  display: none;
}

.uneek-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.uneek-products__grid--mains {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}


/* ---- PRODUCT CARDS ---- */

.uneek-product-card {
  background: var(--uneek-white);
  border-radius: var(--uneek-radius);
  padding: 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--uneek-card-shadow);
  outline: 1px solid var(--uneek-grey-light);
  display: block;
}

.uneek-product-card:hover {
  border-color: var(--uneek-logo);
  box-shadow: var(--uneek-card-shadow-hover);
  outline: none;
}

.uneek-product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--uneek-logo);
  color: var(--uneek-white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.uneek-product-card__badge--sale {
  background: #E8443A;
}

.uneek-product-card__badge--recommended {
  background: #16a34a;
}

.uneek-product-card__badge--clearance {
  background: #F59E0B;
  color: #111;
}

.uneek-product-card__image {
  width: 100%;
  height: 160px;
  border-radius: var(--uneek-radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--uneek-bg), #e4e6ed);
  border: 1px solid #eaecf1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uneek-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.uneek-product-card:hover .uneek-product-card__image img {
  transform: scale(1.05);
}

.uneek-product-card__placeholder {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(14, 28, 77, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.uneek-product-card__title {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--uneek-navy);
  letter-spacing: -0.2px;
}

.uneek-product-card__use {
  font-size: 13px;
  color: var(--uneek-grey-text);
  margin: 0 0 14px 0;
  line-height: 1.4;
}

.uneek-product-card__specs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.uneek-product-card__spec {
  background: var(--uneek-bg);
  border-radius: var(--uneek-radius-xs);
  padding: 4px 10px;
  font-size: 11px;
  border: 1px solid var(--uneek-border);
}

.uneek-product-card__spec-label {
  color: var(--uneek-grey-muted);
}

.uneek-product-card__spec-value {
  font-weight: 700;
  color: var(--uneek-navy);
}

.uneek-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eef0f4;
  padding-top: 14px;
}

.uneek-product-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--uneek-logo);
}

.uneek-product-card__link {
  font-size: 12.5px;
  font-weight: 600;
  color: #b8bac4;
  transition: color 0.2s ease;
}

.uneek-product-card:hover .uneek-product-card__link {
  color: var(--uneek-logo);
}


/* ---- DIVIDER ---- */

.uneek-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 32px;
  padding: 0;
}

.uneek-divider__line {
  flex: 1;
  height: 2px;
  background: var(--uneek-grey-light);
}

.uneek-divider__text {
  font-size: 14px;
  color: var(--uneek-white);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 28px;
  background: var(--uneek-navy);
  border: none;
  border-radius: 8px;
}


/* ---- HELPER NOTE ---- */

.uneek-helper-note {
  margin-top: 14px;
  padding: 14px 20px;
  background: #f8f8fa;
  border-radius: var(--uneek-radius-sm);
  border: 1px solid #e8eaef;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 900px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.uneek-helper-note strong {
  color: var(--uneek-navy);
}

.uneek-helper-note p {
  margin: 0;
}


/* ---- CTA BANNER ---- */

.uneek-cta {
  margin: 0 40px 32px;
  background: var(--uneek-navy);
  border-radius: var(--uneek-radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.uneek-cta__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 144, 244, 0.07);
  pointer-events: none;
}

.uneek-cta__bg-circle--1 {
  right: 180px;
  top: -50px;
  width: 220px;
  height: 220px;
}

.uneek-cta__bg-circle--2 {
  right: 80px;
  bottom: -30px;
  width: 100px;
  height: 100px;
}

.uneek-cta__content {
  position: relative;
}

.uneek-cta__title {
  font-size: 21px;
  font-weight: 800;
  color: var(--uneek-white);
  margin: 0 0 5px 0;
}

.uneek-cta__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.uneek-cta__button {
  background: var(--uneek-logo);
  color: var(--uneek-white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 4px 18px rgba(6, 144, 244, 0.3);
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uneek-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(6, 144, 244, 0.4);
}


/* ---- TESTIMONIALS ---- */

.uneek-testimonials {
  padding: 0 40px 36px;
}

.uneek-testimonials__heading {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 16px 0;
  color: var(--uneek-navy);
}

.uneek-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.uneek-testimonial-card {
  background: var(--uneek-white);
  border-radius: var(--uneek-radius);
  padding: 26px;
  border: 1px solid var(--uneek-grey-light);
  box-shadow: 0 1px 3px rgba(14, 28, 77, 0.04);
}

.uneek-testimonial-card__stars {
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 2px;
  color: #F5A623;
}

.uneek-testimonial-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #5a5e6b;
  margin: 0 0 14px 0;
  font-style: italic;
}

.uneek-testimonial-card__author {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--uneek-navy);
}


/* ---- TRUST BAR ---- */

.uneek-trust {
  padding: 32px 40px;
  text-align: center;
  background: var(--uneek-white);
  border-top: 1px solid var(--uneek-grey-light);
}

.uneek-trust__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--uneek-bg);
  border-radius: var(--uneek-radius);
  padding: 20px 34px;
  border: 1px solid var(--uneek-grey-light);
}

.uneek-trust__text {
  text-align: center;
}

.uneek-trust__text strong {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--uneek-navy);
}

.uneek-trust__text span {
  font-size: 13px;
  color: var(--uneek-grey-text);
  margin-top: 2px;
  display: block;
}


/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .uneek-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .uneek-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uneek-products__grid--mains {
    grid-template-columns: repeat(2, 1fr);
  }

  .uneek-products__header-left {
    flex-wrap: wrap;
  }

  .uneek-products__type-tag {
    display: none;
  }
}

@media (max-width: 768px) {
  .uneek-hero {
    padding: 32px 20px 24px;
  }

  .uneek-benefits {
    padding: 0 20px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .uneek-products {
    padding: 8px 20px 28px;
  }

  .uneek-products__grid,
  .uneek-products__grid--mains {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .uneek-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .uneek-cta {
    margin: 0 20px 24px;
    padding: 28px 24px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .uneek-testimonials {
    padding: 0 20px 28px;
  }

  .uneek-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .uneek-trust {
    padding: 24px 20px;
  }

  .uneek-trust__badge {
    padding: 16px 20px;
  }
}

  .uneek-helper-note {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .uneek-benefits {
    grid-template-columns: 1fr;
  }

  .uneek-hero__title {
    font-size: 28px;
  }
}
