.laborClosure {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #111;
  color: #fff;
}
.laborClosure[hidden] { display: none; }

.laborClosure img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.laborClosure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.82) 34%, rgba(0,0,0,.32) 70%, rgba(0,0,0,.12) 100%);
}

.laborClosureCopy {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 46px clamp(24px, 7vw, 110px);
  min-height: 270px;
  display: grid;
  align-content: center;
}

.laborClosure h2 {
  max-width: 760px;
  margin: 14px 0 12px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .9;
  letter-spacing: .01em;
}
.laborClosure h2 span { white-space: nowrap; }

.laborClosure h2 em { color: var(--red); font-style: normal; }
.laborClosureCopy > p:last-child {
  max-width: 560px;
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
}

.shopCarousel { position: relative; }
.shopCarouselViewport { overflow: hidden; }
.shopCarousel .productGrid {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.shopCarousel .productCard {
  flex: 0 0 calc((100% - 36px) / 3);
}
.shopCarouselControls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
}
.shopCarouselControls button {
  width: 48px;
  height: 48px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.shopCarouselControls button:hover,
.shopCarouselControls button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}
.shopCarouselStatus {
  min-width: 58px;
  color: #999;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
}

@media (max-width: 900px) {
  .shopCarousel .productCard { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 640px) {
  .laborClosure { min-height: 360px; align-items: flex-end; }
  .laborClosure img { object-position: 62% center; }
  .laborClosure::after { background: linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.72) 58%, rgba(0,0,0,.18) 100%); }
  .laborClosureCopy { padding: 44px 24px; }
  .laborClosure h2 span { white-space: normal; }
  .shopCarousel .productGrid { display: flex; }
  .shopCarousel .productCard { flex-basis: 100%; }
  .shopCarouselControls { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .shopCarousel .productGrid { transition: none; }
}
