/** Shopify CDN: Minification failed

Line 205:0 Expected "}" to go with "{"

**/
/* File: assets/pr-hero-slider.css */

/* FULL-WIDTH SECTION BACKGROUND (changes per slide via JS) */
.pr-hero {
  position: relative;
  padding: 120px 0;
  min-height: 800px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* Section overlay (uses section CSS vars) */
.pr-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--pr-hero-overlay-color, transparent);
  opacity: var(--pr-hero-overlay-opacity, 0);
  pointer-events: none;
  z-index: 1;
}

/* Content wrapper */
.pr-hero__slider {
  position: relative;
  z-index: 2;
}

.pr-hero__nav img {
  width: 12px;
}
/* Hide non-active slides */
.pr-hero__slide:not([data-active="true"]) {
  display: none;
}

/* Layout */
.pr-hero__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.pr-hero__left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 60px;
}

.pr-hero__right {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* Typography */
h1.pr-hero__heading {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;
}

p.pr-hero__text {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #ffffff;
}

@media (min-width: 751px) {
  p.pr-hero__text {
    text-align: justify;
  }
}

/* Buttons row */
.pr-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 0;
}

/* Product image */
.pr-hero__img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 760px;
}

/* NAV ARROWS (no dots)
   ✅ Updated: vertically aligned to content area (not full section height)
*/
.pr-hero__nav {
  position: absolute;
  z-index: 5;

  width: 60px;
  height: 60px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.18);

  display: grid;
  place-items: center;
  cursor: pointer;

  /* stop centering to whole hero */
  top: auto;
  transform: none;
}

/* Desktop: align around text block (tweak if needed) */
@media (min-width: 750px) {
  .pr-hero__nav {
    top: 220px; /* content-aligned position */
  }
}

/* Mobile: align to content */
@media (max-width: 749px) {
  .pr-hero__nav {
    top: 185px; /* content-aligned position for stacked layout */
  }
}

.pr-hero__nav svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

.pr-hero__nav--prev {
  left: -20px;
}

.pr-hero__nav--next {
  right: -20px;
}

/* MOBILE */
@media (max-width: 749px) {
  .pr-hero {
    padding: 120px 15px 60px 15px;
    min-height: auto;
  }

  .pr-hero__grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .pr-hero__left {
    padding-top: 0;
    align-items: center;
  }

  /* Hide right image on mobile (same as your old hero) */
  .pr-hero__right {
    display: none;
  }

  .pr-hero__buttons .button {
    width: 80%;
  }

  h1.pr-hero__heading {
    font-size: 40px;
    line-height: 50px;
  }

  .pr-hero__nav--prev {
    left: -10px;
  }

  .pr-hero__nav--next {
    right: -10px;
  }
  .pr-hero__nav svg {
  width: 20px;
  height: 20px;
}
.pr-hero__nav {
  width: 40px;
  height: 40px;
}
