/* ==========================================================================
   Luxéora Hero Slider — Commercial style (primor / my-origines)
   ========================================================================== */

.lxr-hero {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: #0A0A0A;
}

/* ---- Slides ---- */
.lxr-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.lxr-hero__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.lxr-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.lxr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* ---- Inner / Content wrapper ---- */
.lxr-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
}

.lxr-hero__content {
  max-width: 720px;
  color: #fff;
  text-align: left;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.lxr-hero__slide.active .lxr-hero__content {
  opacity: 1;
  transform: translateY(0);
}

/* Badge */
.lxr-hero__badge {
  display: inline-block;
  background: #C9A96E;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 1.2rem;
}

/* Label */
.lxr-hero__label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1rem;
}

/* Title */
.lxr-hero__title {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.2rem;
  white-space: nowrap;
}

/* Text */
.lxr-hero__text {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  max-width: 460px;
}

/* Button */
.lxr-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #C9A96E;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lxr-hero__btn:hover {
  background: #B8944F;
  color: #fff;
  transform: translateX(4px);
}

.lxr-hero__btn svg {
  transition: transform 0.25s ease;
}

.lxr-hero__btn:hover svg {
  transform: translateX(4px);
}

/* ---- Arrows ---- */
.lxr-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.lxr-hero__arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.lxr-hero__arrow:hover,
.lxr-hero__arrow:focus,
.lxr-hero__arrow:active {
  background: #C9A96E !important;
  border-color: #C9A96E !important;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
}

.lxr-hero__arrow:hover svg,
.lxr-hero__arrow:focus svg,
.lxr-hero__arrow:active svg {
  stroke: #fff !important;
}

.lxr-hero__arrow--prev { left: 2rem; }
.lxr-hero__arrow--next { right: 2rem; }

/* ---- Dots ---- */
.lxr-hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.lxr-hero__dot {
  width: 32px;
  height: 3px;
  border: none !important;
  background: rgba(255, 255, 255, 0.35) !important;
  cursor: pointer;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: background 0.25s ease, width 0.25s ease;
}

.lxr-hero__dot:hover,
.lxr-hero__dot:focus,
.lxr-hero__dot:active {
  background: rgba(255, 255, 255, 0.6) !important;
  outline: none !important;
  box-shadow: none !important;
}

.lxr-hero__dot.active,
.lxr-hero__dot.active:hover,
.lxr-hero__dot.active:focus {
  background: #C9A96E !important;
  width: 48px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .lxr-hero {
    height: 480px;
  }

  .lxr-hero__inner {
    padding: 0 3rem;
  }

  .lxr-hero__arrow--prev { left: 1rem; }
  .lxr-hero__arrow--next { right: 1rem; }
}

@media (max-width: 768px) {
  .lxr-hero {
    height: 440px;
  }

  .lxr-hero__inner {
    padding: 0 1.5rem;
  }

  .lxr-hero__content {
    max-width: 100%;
  }

  .lxr-hero__badge {
    font-size: 0.62rem;
    padding: 5px 12px;
    margin-bottom: 0.8rem;
  }

  .lxr-hero__label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.6rem;
  }

  .lxr-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 0.8rem;
    white-space: normal;
  }

  .lxr-hero__text {
    font-size: 0.85rem;
    margin-bottom: 1.4rem;
  }

  .lxr-hero__btn {
    padding: 12px 26px;
    font-size: 0.7rem;
  }

  .lxr-hero__arrow {
    width: 38px;
    height: 38px;
  }

  .lxr-hero__arrow--prev { left: 0.8rem; }
  .lxr-hero__arrow--next { right: 0.8rem; }

  .lxr-hero__dots {
    bottom: 1.2rem;
  }

  .lxr-hero__dot { width: 24px; }
  .lxr-hero__dot.active { width: 36px; }
}

@media (max-width: 480px) {
  .lxr-hero {
    height: 400px;
  }

  .lxr-hero__arrow {
    display: none;
  }
}
