/* =========================================
   CTA
========================================= */

.lux-home-products__cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.lux-home-products__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 250px;
  min-height: 52px;
  padding: 0 30px;

  border: 1px solid rgba(0, 0, 0, .75);
  border-radius: 0;
  background: transparent;

  color: #111;
  text-decoration: none;

  font-family: var(--lux-font-ui, Inter, system-ui, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;

  transition:
    transform .22s ease,
    background .22s ease,
    color .22s ease;
}

.lux-home-products__btn:hover {
  transform: translateY(-2px);
  background: #111;
  color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

/* 3 cards */
@media (max-width: 1180px) {
  .lux-home-products--carousel .lux-home-products__grid ul.products li.product {
    flex-basis: calc((100% - 48px) / 3);
  }
}

/* 2 cards */
@media (max-width: 760px) {
  .lux-home-products {
    padding: 64px 0 78px;
  }

  .lux-home-products__inner {
    width: min(1380px, calc(100% - 36px));
  }

  .lux-home-products__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .lux-home-products__head h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .lux-home-products__head p {
    font-size: 14px;
  }

  .lux-home-products__controls {
    display: none;
  }

  .lux-home-products--carousel .lux-home-products__grid ul.products {
    gap: 14px !important;
    scroll-snap-type: x proximity;
  }

  .lux-home-products--carousel .lux-home-products__grid ul.products li.product {
    flex-basis: calc((100% - 14px) / 2);
  }

  .lux-home-products__dots {
    display: none;
  }
}

/* 1 large card on very small screens */
@media (max-width: 520px) {
  .lux-home-products {
    padding: 56px 0 72px;
  }

  .lux-home-products__inner {
    width: min(1380px, calc(100% - 28px));
  }

  .lux-home-products--carousel .lux-home-products__grid ul.products li.product {
    flex-basis: 80vw;
  }

  .lux-home-products__btn {
    width: 100%;
  }
}

/* =========================================
   LUX TRUST — ELARA FINAL
========================================= */

.lux-trust {
  padding: clamp(34px, 4vw, 56px) 0;
  background: #fff;
  color: #111;
}

.lux-trust__inner {
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
}

.lux-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);

  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);

  justify-items: center;
  text-align: center;
}

.lux-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  max-width: 240px;
}

.lux-trust__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #111;
  opacity: .86;
}

.lux-trust__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lux-trust__title {
  margin: 0 0 8px;

  font-family: var(--lux-font-ui);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;

  color: #111;
}

.lux-trust__text {
  max-width: 210px;

  font-family: var(--lux-font-body);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;

  color: rgba(0,0,0,.68);
}

.lux-trust__links {
  display: flex;
  gap: 8px;
  align-items: center;

  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,.68);
}

.lux-trust__links a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 2px;
}

.lux-trust__links a:hover {
  border-bottom-color: #111;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .lux-trust__inner {
    width: min(1380px, calc(100% - 48px));
  }

  .lux-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }
}

@media (max-width: 520px) {
  .lux-trust {
    padding: 28px 0;
  }

  .lux-trust__inner {
    width: min(1380px, calc(100% - 32px));
  }

  .lux-trust__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .lux-trust__item {
    gap: 16px;
  }

  .lux-trust__text {
    max-width: none;
  }
}

