@import url('./blocks/custom_select.css');

.lux-home-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.lux-home-hero-frame {
  position: relative;
  overflow: hidden;
}

.lux-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 600px;
  height: 700px;
}

.lux-hero-tile {
  overflow: hidden;
}

.lux-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-hero-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 450px;
  padding: 50px 48px 42px;
  color: var(--lux-burgundy);
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 6px solid var(--lux-burgundy);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.lux-hero-mark {
  width: 64px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 8px;
}

.lux-hero-badge h1 {
  display: flex;
  flex-direction: column;
  margin: 0 0 14px;
  font-family: 'Segoe Print', 'Segoe Script', cursive;
  font-size: 44px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.lux-hero-badge h1 span {
  display: block;
}

.lux-hero-badge p {
  margin: 0 0 6px;
  color: var(--lux-ink);
  font-family: 'Segoe Print', 'Segoe Script', cursive;
  font-size: 15px;
  line-height: 1.35;
}

.lux-hero-badge:hover,
.lux-hero-badge:focus {
  color: var(--lux-burgundy);
  text-decoration: none;
}

.lux-hero-badge:focus-visible {
  outline: 3px solid rgba(128, 0, 32, 0.32);
  outline-offset: 6px;
}

.lux-hero-badge .btn {
  margin-top: 8px;
  min-width: 150px;
  padding: 12px 22px;
  font-size: 14px;
}

.lux-home-tagline {
  padding: 56px 0 28px;
  background: #fff;
}

.lux-home-tagline h2 {
  font-size: 34px;
  line-height: 1.25;
}

.lux-shop-categories {
  padding: 0 0 64px;
  background: #fff;
}

.lux-shop-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: var(--lux-ink);
  text-align: center;
  text-transform: uppercase;
}

.lux-shop-card img {
  width: 100%;
  aspect-ratio: 1.13;
  object-fit: cover;
}

.lux-shop-card span {
  font-size: 15px;
  line-height: 1.2;
}

.lux-collections-section {
  padding: 52px 0 56px;
  overflow: hidden;
  background: var(--lux-cream);
}

.lux-collections-section h2 {
  margin: 0 0 36px;
  font-size: 34px;
  line-height: 1.25;
}

.lux-collections-rail {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 0 0 34px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.lux-collections-rail::-webkit-scrollbar {
  display: none;
}

.lux-collections-rail.owl-loaded {
  display: block;
  overflow: visible;
  padding-right: 52px;
  padding-left: 52px;
}

.lux-collections-rail .owl-stage {
  display: flex;
}

.lux-collections-rail .owl-item {
  display: flex;
  justify-content: center;
}

.lux-collections-rail .owl-item > .lux-collection-card {
  width: 100%;
  max-width: 350px;
}

.lux-collection-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  text-align: center;
}

.lux-collection-image {
  display: block;
  overflow: hidden;
  background: #fff;
}

.lux-collection-image img,
.lux-collection-image .nopict {
  width: 100%;
  aspect-ratio: 1.13;
  object-fit: cover;
}

.lux-collection-link {
  display: block;
  margin-top: 24px;
  color: var(--lux-ink);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.lux-collections-rail .owl-nav {
  position: absolute;
  top: calc(50% - 42px);
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lux-collections-rail .owl-nav button.owl-prev,
.lux-collections-rail .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-content: center;
  color: var(--lux-burgundy);
  background: #fff;
  border: 1px solid rgba(128, 0, 32, 0.28);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(35, 35, 35, 0.08);
  pointer-events: auto;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.lux-collections-rail .owl-nav button.owl-prev:hover,
.lux-collections-rail .owl-nav button.owl-next:hover,
.lux-collections-rail .owl-nav button.owl-prev:focus,
.lux-collections-rail .owl-nav button.owl-next:focus {
  color: #fff;
  background: var(--lux-burgundy);
  border-color: var(--lux-burgundy);
  outline: 0;
}

.lux-collections-rail .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.lux-collections-rail button.owl-dot {
  width: 8px;
  height: 8px;
  padding: 0 !important;
  border-radius: 50%;
  background: rgba(128, 0, 32, 0.35);
}

.lux-collections-rail button.owl-dot span {
  display: none;
}

.lux-collections-rail button.owl-dot.active,
.lux-collections-rail button.owl-dot:hover,
.lux-collections-rail button.owl-dot:focus {
  background: var(--lux-burgundy);
  outline: 0;
}

.lux-instagram-section {
  padding: 28px 0 0;
  background: var(--lux-cream);
}

.lux-instagram-title {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.lux-instagram-strip {
  display: block;
  overflow: hidden;
}

.lux-instagram-strip img {
  width: 100%;
  min-height: 190px;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .lux-hero-grid {
    min-height: 560px;
    height: 640px;
  }

  .lux-hero-badge {
    width: 450px;
    height: 450px;
    padding: 50px 48px 42px;
  }

  .lux-home-tagline h2,
  .lux-collections-section h2 {
    font-size: 30px;
  }

}

@media (max-width: 991.98px) {
  .lux-hero-grid {
    min-height: 500px;
    height: 560px;
  }

  .lux-hero-badge {
    width: 340px;
    height: 340px;
    padding: 36px 28px 28px;
  }

  .lux-hero-mark {
    width: 48px;
    height: 62px;
    margin-bottom: 8px;
  }

  .lux-hero-badge h1 {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .lux-hero-badge p {
    font-size: 11px;
  }

  .lux-hero-badge .btn {
    min-width: 150px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .lux-home-tagline {
    padding-top: 42px;
  }

  .lux-collections-rail {
    padding-right: 16px;
    padding-left: 16px;
  }

  .lux-collections-rail.owl-loaded {
    padding-right: 40px;
    padding-left: 40px;
  }

  .lux-collection-card {
    flex-basis: 300px;
  }

  .lux-collections-rail .owl-item > .lux-collection-card {
    max-width: 300px;
  }

}

@media (max-width: 575.98px) {
  .lux-hero-grid {
    min-height: 450px;
    height: 450px;
  }

  .lux-hero-badge {
    width: 280px;
    height: 280px;
    border-width: 4px;
    padding: 30px 24px 24px;
  }

  .lux-hero-mark {
    width: 34px;
    height: 44px;
    margin-bottom: 6px;
  }

  .lux-hero-badge h1 {
    font-size: 22px;
  }

  .lux-hero-badge p {
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.35;
  }

  .lux-hero-badge .btn {
    min-width: 126px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .lux-home-tagline h2,
  .lux-collections-section h2 {
    font-size: 28px;
  }

  .lux-shop-card {
    gap: 16px;
  }

  .lux-collection-card {
    flex-basis: 78vw;
  }

  .lux-collections-rail .owl-item > .lux-collection-card {
    max-width: 320px;
  }

  .lux-collections-rail.owl-loaded {
    padding-right: 0;
    padding-left: 0;
  }

}
