/* =============================================================
   HOMEPAGE HERO SLIDER — PHOTO-FIRST / MINIMAL OVERLAY
   ============================================================= */

.pq-hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  background: var(--pq-sand);
  overflow: hidden;
}

.pq-hero-slider {
  isolation: isolate;
}

.pq-hero-slider__track {
  position: relative;
  min-height: inherit;
}

.pq-hero-slide {
  position: absolute;
  inset: 0;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .65s ease, visibility .65s ease;
}

.pq-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.pq-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  transform: none;
}

.pq-hero__bg--placeholder {
  background:
    radial-gradient(circle at 72% 36%, rgba(122, 188, 214, .22), transparent 34%),
    linear-gradient(135deg, var(--pq-sage) 0%, var(--pq-blue) 100%);
}

.pq-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(242, 237, 228, .28) 0%,
      rgba(242, 237, 228, .18) 25%,
      rgba(242, 237, 228, .07) 43%,
      rgba(242, 237, 228, .02) 62%,
      rgba(242, 237, 228, 0) 100%
    );
}

.pq-hero__panel {
  position: relative;
  z-index: 2;
  width: min(500px, 42%);
  min-height: inherit;
  margin-left: max(var(--pq-gutter), calc((100vw - var(--pq-max)) / 1 + 48px));
  padding: clamp(54px, 6vw, 88px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: pqHeroTextIn .65s ease both;
}

.pq-hero-slide:not(.is-active) .pq-hero__panel {
  animation: none;
}

@keyframes pqHeroTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}


.pq-hero-product {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content;
  max-width: min(100%, 360px);
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 37, 41, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
  color: var(--pq-ink);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(16, 37, 41, .10);
  backdrop-filter: blur(8px);
}

.pq-hero-product:hover {
  background: rgba(255, 255, 255, .86);
  transform: translateY(-1px);
}

.pq-hero-product__eyebrow {
  color: var(--pq-green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.pq-hero-product__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f4a62a;
  font-size: .86rem;
  letter-spacing: .04em;
  line-height: 1;
}

.pq-hero-product__rating em {
  color: rgba(16, 37, 41, .58);
  font-size: .76rem;
  font-style: normal;
  letter-spacing: 0;
}

.pq-hero-product__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-weight: 850;
}

.pq-hero-product__prices del {
  color: rgba(16, 37, 41, .46);
  font-size: .9rem;
  font-weight: 650;
}

.pq-hero-product__prices ins {
  color: var(--pq-ink);
  font-size: 1.08rem;
  text-decoration: none;
}

.pq-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 7px 13px 7px 10px;
  margin-bottom: 15px;
  border-radius: 999px;
  border: 1px solid rgba(16, 37, 41, .10);
  background: rgba(255, 255, 255, .58);
  color: var(--pq-ink);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.pq-hero h1 {
  max-width: 500px;
  margin: 0 0 16px;
  color: white;
  font-size: clamp(2.55rem, 4.35vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 640;
    text-shadow: 1px 1px 2px black;
}

.pq-hero p {
  max-width: 360px;
  margin: 0 0 24px;
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: .96rem;
  line-height: 1.55;
  font-weight: 400;
}

.pq-hero .pq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 0;
}

.pq-hero .pq-btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: .9rem;
}

.pq-hero__trust {
  display: none;
}

.pq-hero-slider__arrow {
    padding-bottom:5px;
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 37, 41, .10);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: var(--pq-ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(16, 37, 41, .10);
  backdrop-filter: blur(7px);
  transition: transform .2s ease, background .2s ease;
}

.pq-hero-slider__arrow:hover {
  background: rgba(255, 255, 255, .95);
  transform: translateY(-50%) scale(1.05);
}

.pq-hero-slider__arrow--prev { left: max(18px, calc((100vw - var(--pq-max)) / 2 + 6px)); }
.pq-hero-slider__arrow--next { right: max(18px, calc((100vw - var(--pq-max)) / 2 + 6px)); }

@media (min-width: 1200px) {
  .pq-hero-slider__arrow--prev { left: max(20px, calc((100vw - var(--pq-max)) / 2 + 6px)); }
  .pq-hero-slider__arrow--next { right: max(20px, calc((100vw - var(--pq-max)) / 2 + 6px)); }
}

.pq-hero-slider__dots {
  position: absolute;
  z-index: 5;
  left: max(var(--pq-gutter), calc((100vw - var(--pq-max)) / 2 + 48px));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pq-hero-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 0 0 1px rgba(16, 37, 41, .18);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.pq-hero-slider__dot.is-active {
  width: 28px;
  background: var(--pq-green);
}

@media (max-width: 900px) {
  .pq-hero { min-height: 680px; }
  .pq-hero__bg { object-position: center center; }
  .pq-hero-slide::after {
    background:
      linear-gradient(
        to bottom,
        rgba(242, 237, 228, .58) 0%,
        rgba(242, 237, 228, .36) 38%,
        rgba(242, 237, 228, .12) 68%,
        rgba(242, 237, 228, 0) 100%
      );
  }
  .pq-hero__panel {
    width: auto;
    min-height: 680px;
    margin: 0;
    padding: 58px var(--pq-gutter) 96px;
    justify-content: flex-start;
  }
  .pq-hero h1 {
    max-width: 92%;
    font-size: clamp(2.35rem, 10.5vw, 3.55rem);
    font-weight: 780;
  }
  .pq-hero p { max-width: 88%; }
  .pq-hero-slider__arrow { display: none; }
  .pq-hero-slider__dots { left: var(--pq-gutter); bottom: 28px; }
}

@media (max-width: 560px) {
  .pq-hero { min-height: 640px; }
  .pq-hero__panel { min-height: 640px; padding-top: 46px; }
  
.pq-hero-product {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content;
  max-width: min(100%, 360px);
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 37, 41, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
  color: var(--pq-ink);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(16, 37, 41, .10);
  backdrop-filter: blur(8px);
}

.pq-hero-product:hover {
  background: rgba(255, 255, 255, .86);
  transform: translateY(-1px);
}

.pq-hero-product__eyebrow {
  color: var(--pq-green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.pq-hero-product__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f4a62a;
  font-size: .86rem;
  letter-spacing: .04em;
  line-height: 1;
}

.pq-hero-product__rating em {
  color: rgba(16, 37, 41, .58);
  font-size: .76rem;
  font-style: normal;
  letter-spacing: 0;
}

.pq-hero-product__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-weight: 850;
}

.pq-hero-product__prices del {
  color: rgba(16, 37, 41, .46);
  font-size: .9rem;
  font-weight: 650;
}

.pq-hero-product__prices ins {
  color: var(--pq-ink);
  font-size: 1.08rem;
  text-decoration: none;
}

.pq-hero__kicker { font-size: .64rem; max-width: 92%; }
  .pq-hero h1 {
    max-width: 96%;
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1.04;
  }
  .pq-hero p { max-width: 94%; font-size: .94rem; }
  .pq-hero .pq-buttons { gap: 9px; }
  .pq-hero .pq-btn { min-height: 46px; padding: 0 18px; }
}
