/** Shopify CDN: Minification failed

Line 206:0 Unexpected "}"

**/
/* =========================================================
   Hero video — pełnoekranowa sekcja wideo z autoodtwarzaniem
   Używana przez sections/hero-video.liquid
   ========================================================= */

.section-hero-video {
  margin-top: 0 !important;
}

.hero-video-section {
  position: relative;
  display: flex;
  width: 100%;
  height: var(--hero-video-height, 100vh);
  min-height: 40rem;
  overflow: hidden;
  isolation: isolate;
  color: rgb(var(--color-foreground));
}

@supports (height: 100dvh) {
  .hero-video-section {
    height: var(--hero-video-height-dvh, 100dvh);
  }
}

/* Tryb "Pełna szerokość bez przycinania" — wysokość z proporcji filmu */
.hero-video-section--ratio {
  height: auto;
  min-height: 0;
  aspect-ratio: var(--hero-video-ratio, 1.777);
}

@supports (height: 100dvh) {
  .hero-video-section--ratio {
    height: auto;
  }
}

/* Telefon — osobna wysokość */
@media screen and (max-width: 749px) {
  .hero-video-section,
  .hero-video-section--ratio {
    height: var(--hero-video-height-mobile, 85vh);
    min-height: 32rem;
    aspect-ratio: auto;
  }

  @supports (height: 100dvh) {
    .hero-video-section,
    .hero-video-section--ratio {
      height: var(--hero-video-height-mobile-dvh, 85dvh);
    }
  }
}

/* ---------- Warstwa mediów ---------- */

.hero-video-section__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgb(var(--color-background));
}

.hero-video-section__media video,
.hero-video-section__video,
.hero-video-section__image,
.hero-video-section__media img,
.hero-video-section__media svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--hero-video-fit, cover);
  object-position: var(--hero-video-position, center center);
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

/* Kadrowanie na telefonie */
@media screen and (max-width: 749px) {
  .hero-video-section__media {
    background-color: rgb(var(--color-background));
  }

  .hero-video-section__media video,
  .hero-video-section__video,
  .hero-video-section__image,
  .hero-video-section__media img,
  .hero-video-section__media svg {
    object-fit: var(--hero-video-fit-mobile, cover);
    object-position: var(--hero-video-position-mobile, center center);
  }
}

/* Wideo przykrywa poster po wczytaniu */
.hero-video-section__media video {
  z-index: 1;
}

.hero-video-section__overlay {
  z-index: 2;
}

/* Twarde ukrycie natywnych kontrolek odtwarzacza */
.hero-video-section__media video::-webkit-media-controls,
.hero-video-section__media video::-webkit-media-controls-enclosure,
.hero-video-section__media video::-webkit-media-controls-panel,
.hero-video-section__media video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

.hero-video-section__media video::-moz-media-controls {
  display: none !important;
}

.hero-video-section__media video {
  pointer-events: none;
}

/* Przyciemnienie dla czytelności tekstu */
.hero-video-section__overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: var(--hero-video-overlay-opacity, 0.2);
  pointer-events: none;
}

/* ---------- Warstwa treści ---------- */

.hero-video-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

@media screen and (min-width: 750px) {
  .hero-video-section__content {
    padding: 5rem;
  }
}

/* Pozycja pionowa */
.hero-video-section__content--pos-top {
  align-items: flex-start;
  padding-top: calc(var(--header-height, 6rem) + 3rem);
}

.hero-video-section__content--pos-center {
  align-items: center;
}

.hero-video-section__content--pos-bottom {
  align-items: flex-end;
}

/* Wyrównanie poziome */
.hero-video-section__content--align-left {
  justify-content: flex-start;
  text-align: left;
}

.hero-video-section__content--align-center {
  justify-content: center;
  text-align: center;
}

.hero-video-section__content--align-right {
  justify-content: flex-end;
  text-align: right;
}

.hero-video-section__text-wrapper {
  width: 100%;
  max-width: var(--hero-video-content-width, 45%);
  min-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translate(-220px, 10px);
}

@media screen and (max-width: 749px) {
  .hero-video-section__text-wrapper {
    max-width: 100%;
    min-width: 0;
    transform: scale(0.8);
    transform-origin: top left;
  }
}
}

/* Kierunkowe przyciemnienie — ciemniej tylko tam, gdzie leży tekst */
.hero-video-section--scrim-left .hero-video-section__media::after,
.hero-video-section--scrim-right .hero-video-section__media::after,
.hero-video-section--scrim-bottom .hero-video-section__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-video-section--scrim-left .hero-video-section__media::after {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, var(--hero-video-scrim-opacity, 0.6)) 0%,
    rgba(0, 0, 0, 0) 65%
  );
}

.hero-video-section--scrim-right .hero-video-section__media::after {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, var(--hero-video-scrim-opacity, 0.6)) 0%,
    rgba(0, 0, 0, 0) 65%
  );
}

.hero-video-section--scrim-bottom .hero-video-section__media::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, var(--hero-video-scrim-opacity, 0.6)) 0%,
    rgba(0, 0, 0, 0) 65%
  );
}

@media screen and (max-width: 749px) {
  .hero-video-section--scrim-left .hero-video-section__media::after,
  .hero-video-section--scrim-right .hero-video-section__media::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, var(--hero-video-scrim-opacity, 0.6)) 0%,
      rgba(0, 0, 0, 0) 75%
    );
  }
}

.hero-video-section__content--align-center .hero-video-section__text-wrapper {
  align-items: center;
}

.hero-video-section__content--align-right .hero-video-section__text-wrapper {
  align-items: flex-end;
}

.hero-video-section__heading {
  margin: 0;
  color: rgb(var(--color-foreground));
  text-shadow: 0 0.1rem 3rem rgba(0, 0, 0, 0.70);
  transform: translate(0px, 0px);
}

@media screen and (max-width: 749px) {
  .hero-video-section__heading {
    font-size: 2.3rem;
  }

  .hero-video-section__subheading { 
    font-size: 1rem !important;
    margin-top: -10px !important;
  }

  .hero-video-section__buttons .button {
    font-size: 0.8rem;
    padding: 0.6em 1.4em;
    margin-top: 20px;
  }
  .hero-video-section__text-wrapper {
    max-width: 100%;
    min-width: 0;
    margin-top: 110px;
    transform: scale(0.7) translateX(20px);
    transform-origin: top left;
    gap: 0.15rem;
  }
}

.hero-video-section__subheading {
  margin: 0;
  color: rgb(var(--color-foreground));
  font-size: 1.8rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  text-shadow: 0 0.1rem 2rem rgba(0, 0, 0, 0.35);
  transform: translate(0px, 0px);
}

.hero-video-section__subheading > *:first-child {
  margin-top: 0;
}

.hero-video-section__subheading > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .hero-video-section__subheading {
    font-size: 2rem;
  }
}

.hero-video-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  transform: translate(0px, 0px);
}

.hero-video-section__content--align-center .hero-video-section__buttons {
  justify-content: center;
}

.hero-video-section__content--align-right .hero-video-section__buttons {
  justify-content: flex-end;
}

.hero-video-section__buttons .button {
  margin: 0;
  letter-spacing: 0.12rem;
}

/* Podkładka pod przyciskiem — czytelność bez ściemniania całego filmu */
.hero-video-section__buttons .button--secondary,
.hero-video-section__buttons .button--primary {
  background-color: rgba(0, 0, 0, var(--hero-video-button-backdrop, 0));
  transition: background-color 0.2s ease;
}

/* Wyraźne obramowanie w kolorze przycisku konspektu */
.hero-video-section__buttons .button--secondary::after {
  box-shadow: 0 0 0 0.2rem rgb(var(--color-button-text));
}

.hero-video-section__buttons .button--secondary:not([disabled]):hover::after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-button-text));
}

/* Napis odcina się od ruchomego tła */
.hero-video-section__buttons .button--secondary {
  text-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.8);
}

.hero-video-section--button-blur .hero-video-section__buttons .button--secondary {
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
}

/* Przy pełnym przycisku tło ze schematu ma pierwszeństwo */
.hero-video-section__buttons .button--primary {
  background-color: rgb(var(--color-button));
  text-shadow: none;
}

.hero-video-section--button-blur .hero-video-section__buttons .button--primary {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.hero-video-section__buttons .button {
  color: rgba(201, 169, 97, 0.75) !important;
  border: 2px solid rgba(201, 169, 97, 0.5) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}