/**
 * Zóna Zločinu — brand přepisy nad šablonou Dagency.
 * Font-family se nemění (ponechány Barlow / Big Shoulders z Dagency).
 */

:root {
  --zz-bg: #0B0E1D;          /* navy-dark base (posun od fialové k modré detektivní) */
  --zz-bg-elevated: #14182E; /* navy-dark elevated (~1.7× světlejší než bg, ladí s --zz-bg) */
  --zz-text: #fcfcfc;
  --zz-muted: #e7e7e7;
  --zz-primary: #1e9ad1;
  --zz-accent: #9128d1;
  --zz-border-subtle: rgba(231, 231, 231, 0.12);
  --zz-glow-primary: 0 0 24px rgba(30, 154, 209, 0.35);
  --zz-glow-accent: 0 0 32px rgba(145, 40, 209, 0.28);
}

/* Základní plochy */
html,
body {
  background-color: var(--zz-bg) !important;
}

body,
body p {
  color: var(--zz-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--zz-text) !important;
}

/* Výběr textu */
::selection {
  background: rgba(30, 154, 209, 0.35);
  color: var(--zz-text);
}

::-moz-selection {
  background: rgba(30, 154, 209, 0.35);
  color: var(--zz-text);
}

/* Odkazy v obsahu (ne hlavička / patička) */
.page-content.zz-cms-content a:not(.btn):not(.button-3):not(.view-more-btn):not(.zz-social-link) {
  color: var(--zz-primary);
}

.page-content.zz-cms-content a:not(.btn):not(.button-3):not(.view-more-btn):not(.zz-social-link):hover {
  color: var(--zz-accent);
}

/* --- Hlavička Zóna Zločinu (.zz-header) --- */

.zz-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  /*background: rgba(11, 14, 29, 0.88);*/
  background: #0B0E1D;
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.zz-header.zz-header--scrolled {
  background: rgba(20, 24, 46, 0.96);
  border-bottom-color: rgba(252, 252, 252, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.zz-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 88px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.zz-header a.zz-header__logo {
  display: flex;
}

.zz-header a.zz-header__cart {
  display: inline-flex;
}

.zz-header__logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(220px, 52vw);
  text-decoration: none;
  line-height: 0;
}

.zz-header__logo img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 220px;
  min-width: 120px;
  min-height: 32px;
  object-fit: contain;
  object-position: left center;
  transition: height 0.25s ease, max-width 0.25s ease, min-height 0.25s ease;
}

.zz-header.zz-header--scrolled .zz-header__inner {
  min-height: 80px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.zz-header.zz-header--scrolled .zz-header__logo img {
  height: 50px;
  min-height: 50px;
  max-width: min(200px, 40vw);
}

.zz-header__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.zz-header__cart {
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  color: var(--zz-text);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(252, 252, 252, 0.12);
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  transform: none;
}

.zz-header__cart i {
  display: block;
  width: 1em;
  line-height: 1;
  text-align: center;
}

.zz-header__cart:hover,
.zz-header__cart.is-active {
  color: var(--zz-primary);
  border-color: rgba(30, 154, 209, 0.45);
  background: rgba(30, 154, 209, 0.1);
  transform: none;
}

.zz-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--zz-text);
  font-size: 1.15rem;
  line-height: 1;
  background: transparent;
  border: 1px solid rgba(252, 252, 252, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.zz-header__toggle:hover,
.zz-header__toggle:focus {
  color: var(--zz-primary);
  border-color: rgba(30, 154, 209, 0.45);
  background: rgba(30, 154, 209, 0.08);
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(30, 154, 209, 0.3);
}

.zz-header__collapse {
  flex: 1 1 100%;
  width: 100%;
}

.zz-header__nav {
  width: 100%;
}

.zz-header__menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0.5rem 0 0;
  list-style: none;
}

.zz-header__item {
  margin: 0;
  padding: 0;
}

.zz-header__link {
  display: block;
  padding: 0.65rem 0.25rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.305rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--zz-text);
  transition: color 0.2s ease;
}

.zz-header__link:hover,
.zz-header__link.is-active {
  color: var(--zz-primary);
}

@media (min-width: 992px) {
  .zz-header__inner {
    flex-wrap: nowrap;
    min-height: 120px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .zz-header__logo {
    max-width: min(380px, 36vw);
  }

  .zz-header__logo img {
    height: 100px;
    max-width: min(380px, 36vw);
    min-height: 80px;
  }

  .zz-header__tools {
    order: 3;
    margin-left: 0.75rem;
  }

  .zz-header__toggle {
    display: none;
  }

  .zz-header__collapse {
    display: flex !important;
    flex: 1 1 auto;
    width: auto;
    height: auto !important;
    visibility: visible !important;
    order: 2;
    margin-left: auto;
  }

  .zz-header__collapse.collapsing {
    height: auto !important;
    transition: none;
  }

  .zz-header__menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.15rem 0.35rem;
    padding: 0;
  }

  .zz-header__link {
    padding: 0.5rem 0.75rem;
    font-size: 1.305rem;
  }

  .zz-header.zz-header--scrolled .zz-header__inner {
    min-height: 80px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .zz-header.zz-header--scrolled .zz-header__logo {
    max-width: min(240px, 28vw);
  }

  .zz-header.zz-header--scrolled .zz-header__logo img {
    height: 50px;
    min-height: 50px;
    max-width: min(240px, 28vw);
  }
}

@media (max-width: 991.98px) {
  .zz-header__inner {
    min-height: 72px;
  }

  .zz-header__logo {
    max-width: min(180px, calc(100% - 7rem));
  }

  .zz-header__logo img {
    height: 44px;
    max-width: 180px;
    min-width: 100px;
    min-height: 28px;
  }

  .zz-header__collapse {
    border-top: 1px solid rgba(252, 252, 252, 0.08);
    padding-bottom: 0.5rem;
  }

  .zz-header.zz-header--scrolled .zz-header__logo {
    max-width: min(160px, calc(100% - 7rem));
  }

  .zz-header.zz-header--scrolled .zz-header__logo img {
    height: 50px;
    min-height: 50px;
    max-width: 160px;
  }
}

/* Tlačítka Dagency — modrá výchozí, fialová hover/active */
.button-1 {
  border-color: var(--zz-primary) !important;
  background-color: var(--zz-primary) !important;
  color: var(--zz-text) !important;
}

.button-1 span,
.button-1 i {
  color: var(--zz-text) !important;
}

.button-1:hover {
  border-color: var(--zz-accent) !important;
  background-color: var(--zz-accent) !important;
  color: var(--zz-text) !important;
  box-shadow: var(--zz-glow-accent);
}

.button-2:hover,
.button-3:hover,
.button-4:hover {
  border-color: var(--zz-accent) !important;
  background-color: var(--zz-accent) !important;
  color: var(--zz-text) !important;
  box-shadow: var(--zz-glow-accent);
}

.button-2:hover span,
.button-3:hover span,
.button-4:hover span,
.button-2:hover i,
.button-3:hover i,
.button-4:hover i {
  color: var(--zz-text) !important;
}

.button-3,
.button-4 {
  border-color: var(--zz-primary) !important;
}

.button-3:hover i {
  color: var(--zz-text) !important;
}

/* Sekce / nadpisy — accent tečky a span */
.section-title span,
.section-subtitle:not(.icon-white):after,
.header .caption h1 span,
.header .caption h6:after,
.banner-header h1 span,
.banner-header h2 span,
.parallax-header h1 span,
.parallax-header h2 span,
.video-fullscreen-wrap h1 span,
.video-fullscreen-wrap h2 span,
.kenburns-inner .caption h1 span {
  color: var(--zz-primary) !important;
}

.section-subtitle:not(.icon-white):after,
.header .caption h6:after,
.banner-header h6:after,
.banner-header[data-overlay-dark] h6:after,
.parallax-header h6:after,
.parallax-header[data-overlay-dark] h6:after,
.video-fullscreen-wrap h6:after,
.video-fullscreen-wrap[data-overlay-dark] h6:after {
  background: var(--zz-primary) !important;
}

/* Oddělovač sekcí */
.line-vr-section {
  border-color: var(--zz-primary) !important;
}

/* Owl — tečky a šipky */
.owl-theme .owl-dots .owl-dot span {
  border-color: var(--zz-primary) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.slider-fade .owl-theme .owl-dots .owl-dot.active span,
.slider-fade .owl-theme .owl-dots .owl-dot:hover span,
.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span,
.testimonials .owl-theme .owl-dots .owl-dot.active span,
.testimonials .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--zz-accent) !important;
  border-color: var(--zz-accent) !important;
  box-shadow: var(--zz-glow-accent);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--zz-primary) !important;
  color: var(--zz-text) !important;
}

/* --- Patička Zóna Zločinu (.zz-footer) --- */

.zz-footer {
  background: var(--zz-bg-elevated);
  color: var(--zz-text);
  border-top: 1px solid rgba(252, 252, 252, 0.1);
}

.zz-footer a.zz-footer__logo {
  display: flex;
}

.zz-footer a.zz-footer__link {
  display: inline-block;
  text-decoration: none;
  color: var(--zz-text);
  transition: color 0.25s ease;
}

.zz-footer a.zz-footer__social-link,
.zz-footer a.zz-footer__contact-link {
  display: inline-flex;
  text-decoration: none;
  color: var(--zz-text);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.zz-footer a.zz-footer__link:hover,
.zz-footer a.zz-footer__social-link:hover,
.zz-footer a.zz-footer__contact-link:hover {
  color: var(--zz-primary);
}

.zz-footer__top {
  padding: 3rem 0 2.25rem;
}

.zz-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.zz-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 22rem;
}

.zz-footer__logo {
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.zz-footer__logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(280px, 70vw);
  min-width: 120px;
  min-height: 36px;
  object-fit: contain;
  object-position: center center;
}

.zz-footer__nav {
  width: 100%;
}

.zz-footer__menu,
.zz-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zz-footer__brand .zz-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zz-footer__link {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.zz-footer__contacts {
  width: auto;
  max-width: 20rem;
  margin-left: auto;
  text-align: left;
}

.zz-footer__contacts-title {
  margin: 0 0 0.65rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--zz-text);
}

.zz-footer__contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zz-footer__contact-list li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.zz-footer__contact-link,
.zz-footer__contact-hours {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--zz-muted);
  text-align: left;
}

.zz-footer__contact-link i,
.zz-footer__contact-hours i {
  flex-shrink: 0;
  width: 1.25rem;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--zz-primary);
  text-align: left;
}

.zz-footer__contact-link:hover i {
  color: var(--zz-primary);
}


.zz-footer__text {
  max-width: 36rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--zz-muted);
}

.zz-footer__social-link {
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid rgba(252, 252, 252, 0.14);
  border-radius: 50%;
}

.zz-footer__social-link:hover {
  border-color: rgba(30, 154, 209, 0.5);
  background: rgba(30, 154, 209, 0.12);
}

.zz-footer__social-link:hover i {
  color: var(--zz-primary);
}

.zz-footer__bottom {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(252, 252, 252, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.zz-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.zz-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--zz-muted);
}

.zz-footer__legal .zz-footer__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: "Barlow", sans-serif;
}

@media (min-width: 992px) {
  .zz-footer__top {
    padding: 3.5rem 0 2.75rem;
  }

  .zz-footer__inner {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 1.5rem 2rem;
    text-align: left;
  }

  .zz-footer__brand {
    grid-column: 1;
    grid-row: 1 / 3;
    align-items: flex-start;
    align-self: start;
    max-width: 20rem;
  }

  .zz-footer__logo img {
    height: 80px;
    max-width: 280px;
    min-height: 56px;
    object-position: left center;
  }

  .zz-footer__brand .zz-footer__social {
    justify-content: flex-start;
  }

  .zz-footer__contacts {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: start;
    width: auto;
    max-width: 20rem;
    margin-left: auto;
    text-align: left;
  }

  .zz-footer__contacts-title {
    text-align: left;
  }

  .zz-footer__contact-list {
    align-items: flex-start;
  }

  .zz-footer__nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: auto;
  }

  .zz-footer__menu {
    justify-content: center;
    gap: 0.35rem 1.5rem;
  }

  .zz-footer__link {
    font-size: 1.2rem;
  }

  .zz-footer__text {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    text-align: center;
    max-width: 28rem;
  }

  .zz-footer__bottom-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1rem 2rem;
  }

  .zz-footer__copy {
    flex: 1 1 auto;
  }

  .zz-footer__legal {
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 0.5rem 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .zz-footer__top {
    padding: 2.5rem 0 2rem;
  }

  .zz-footer__brand {
    align-items: center;
    text-align: center;
  }

  .zz-footer__brand .zz-footer__social {
    justify-content: center;
  }

  .zz-footer__contacts {
    width: auto;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .zz-footer__contacts-title {
    text-align: center;
  }

  .zz-footer__contact-list {
    align-items: center;
  }

  .zz-footer__contact-list li {
    width: auto;
  }

  .zz-footer__contact-link,
  .zz-footer__contact-hours {
    justify-content: center;
  }

  .zz-footer__menu {
    flex-direction: column;
    gap: 0.35rem;
  }

  .zz-footer__link {
    display: inline-block;
    padding: 0.35rem 0.5rem;
  }

  .zz-footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Scroll-to-top kruh (Dagency progress-wrap) */
.progress-wrap svg.progress-circle path {
  stroke: var(--zz-primary) !important;
}

.progress-wrap::after {
  color: var(--zz-primary) !important;
}

.progress-wrap.active-progress {
  box-shadow: var(--zz-glow-primary);
}

/* Legacy CMS homepage (DexZone markup) — nerenderovat bílý blok, mapovat akcent */
.page-content.zz-cms-content {
  background: transparent !important;
}

.page-content.zz-cms-content .text-primary {
  color: var(--zz-primary) !important;
}

.page-content.zz-cms-content .btn-primary,
.page-content.zz-cms-content .shadow-primary.btn-primary {
  background-color: var(--zz-primary) !important;
  border-color: var(--zz-primary) !important;
  color: var(--zz-text) !important;
}

.page-content.zz-cms-content .btn-primary:hover {
  background-color: var(--zz-accent) !important;
  border-color: var(--zz-accent) !important;
}

.page-content.zz-cms-content .bg-primary {
  background-color: var(--zz-primary) !important;
}

/* Sekce starého layoutu na home (DexZone utility třídy) */
.page-content.zz-cms-content .bg-white {
  background-color: var(--zz-bg-elevated) !important;
}

.page-content.zz-cms-content .bg-gray {
  background-color: rgba(252, 252, 252, 0.04) !important;
}

/* --- Homepage Zóna Zločinu (Dagency + zz-home) --- */

.zz-home .zz-hero-lead,
.zz-home .video-fullscreen-wrap .zz-hero-lead {
  max-width: 36rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(252, 252, 252, 0.92);
}

.zz-home .video-fullscreen-wrap h1 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.zz-home .video-fullscreen-wrap h1 span,
.zz-home .video-fullscreen-wrap[data-overlay-dark] h1 span {
  color: var(--zz-primary) !important;
}

.zz-home .video-fullscreen-wrap h6:after,
.zz-home .video-fullscreen-wrap[data-overlay-dark] h6:after {
  background: var(--zz-primary) !important;
}

.zz-home .video-fullscreen-wrap .rotatex .rotate-box .icon {
  border-color: var(--zz-primary) !important;
  color: var(--zz-primary) !important;
}

.zz-home .video-fullscreen-wrap .rotatex .rotate-box:hover .icon {
  color: var(--zz-text) !important;
  background-color: var(--zz-accent) !important;
  border-color: var(--zz-accent) !important;
  box-shadow: var(--zz-glow-accent);
}

@media (max-width: 991.98px) {
  #zz-hero.zz-hero-video .v-middle .rotatex,
  .zz-home .video-fullscreen-wrap.zz-hero-video .rotatex {
    display: flex !important;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0 !important;
    overflow: visible;
  }

  #zz-hero.zz-hero-video .v-middle .rotatex .rotate-box,
  .zz-home .video-fullscreen-wrap.zz-hero-video .rotatex .rotate-box {
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
}

/* (legacy) Video sekce pod hero — nahrazeno fullscreen hero */
.zz-home-video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--zz-bg) 0%, #0F1326 45%, var(--zz-bg-elevated) 100%);
}

.zz-home-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(30, 154, 209, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(145, 40, 209, 0.12), transparent 50%);
  pointer-events: none;
}

.zz-home-video > .container {
  position: relative;
  z-index: 1;
}

.zz-home-video__intro {
  margin-bottom: 0.5rem;
}

.zz-home-video__lead {
  max-width: 34rem;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--zz-muted);
}

.zz-home-video__preview {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.12);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(30, 154, 209, 0.08),
    0 0 48px rgba(30, 154, 209, 0.12);
}

.zz-home-video__media {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 42vw, 520px);
  background-color: #111529;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.zz-home-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 29, 0.25) 0%,
    rgba(11, 14, 29, 0.55) 55%,
    rgba(11, 14, 29, 0.82) 100%
  );
  pointer-events: none;
}

.zz-home a.zz-home-video__play {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.zz-home-video__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(30, 154, 209, 0.55);
  box-shadow:
    0 0 0 8px rgba(30, 154, 209, 0.08),
    0 0 32px rgba(30, 154, 209, 0.35),
    0 0 64px rgba(145, 40, 209, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.zz-home-video__play-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  font-size: 1.35rem;
  color: var(--zz-text);
  background: linear-gradient(135deg, rgba(30, 154, 209, 0.95), rgba(145, 40, 209, 0.85));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zz-home-video__play-icon i {
  margin-left: 0.15rem;
}

.zz-home a.zz-home-video__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  color: var(--zz-text);
}

.zz-home a.zz-home-video__play:hover .zz-home-video__play-ring {
  border-color: rgba(252, 252, 252, 0.65);
  box-shadow:
    0 0 0 10px rgba(30, 154, 209, 0.14),
    0 0 40px rgba(30, 154, 209, 0.5),
    0 0 72px rgba(145, 40, 209, 0.35);
}

.zz-home a.zz-home-video__play:hover .zz-home-video__play-icon {
  box-shadow: 0 16px 48px rgba(30, 154, 209, 0.45);
}

@media (max-width: 991.98px) {
  .zz-home-video {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .zz-home-video__media {
    min-height: clamp(200px, 56vw, 320px);
  }

  .zz-home a.zz-home-video__play {
    width: 4.75rem;
    height: 4.75rem;
  }

  .zz-home-video__play-icon {
    width: 3.65rem;
    height: 3.65rem;
    font-size: 1.1rem;
  }
}

.zz-case-specs {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border: 1px solid rgba(252, 252, 252, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(20, 24, 46, 0.6);
}

.zz-case-specs li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(252, 252, 252, 0.08);
}

.zz-case-specs li:last-child {
  border-bottom: none;
}

.zz-spec-label {
  color: var(--zz-muted);
  font-weight: 500;
}

.zz-spec-val {
  color: var(--zz-text);
  font-weight: 600;
  text-align: right;
}

.zz-case .item.zz-case-visual {
  position: relative;
}

/* Benefit položky — otisk prstu jako dominantní vizuál */
.zz-benefits-grid {
  row-gap: 2.5rem;
  column-gap: 0;
}

.zz-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.zz-benefit__print {
  width: clamp(90px, 10vw, 120px);
  height: clamp(90px, 10vw, 120px);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  filter:
    drop-shadow(0 0 14px rgba(30, 154, 209, 0.45))
    drop-shadow(0 0 28px rgba(30, 154, 209, 0.22));
}

.zz-benefit__print img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.zz-benefit__title {
  margin: 0 0 0.85rem;
  color: var(--zz-primary);
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.2;
}

.zz-benefit__text {
  margin: 0 auto;
  max-width: 280px;
  color: rgba(252, 252, 252, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.zz-quote-block {
  background: linear-gradient(90deg, rgba(145, 40, 209, 0.12), rgba(30, 154, 209, 0.08));
}

.zz-quote {
  margin: 0;
  padding: 0 1rem;
  border-left: 4px solid var(--zz-accent);
}

.zz-quote p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--zz-text);
}

.zz-showcase-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.1);
}

.zz-showcase-tag {
  position: absolute;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zz-bg);
  background: var(--zz-primary);
  border-radius: 6px;
  pointer-events: none;
}

.zz-showcase-tag-1 {
  top: 12%;
  left: 8%;
}

.zz-showcase-tag-2 {
  bottom: 28%;
  right: 10%;
  background: var(--zz-accent);
}

.zz-showcase-tag-3 {
  top: 42%;
  right: 14%;
}

/* Sociální sítě — velké ústřední ikony nad textem */
.zz-home-social .zz-social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .zz-home-social .zz-social-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;   /* nikdy nere-centrovat — text nesmí na hover poskočit */
    gap: 2.5rem 3.25rem;
  }
}

.zz-social-link {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  box-sizing: border-box;
  width: 11rem;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 0;
  background: transparent;
  color: var(--zz-text);
  text-align: center;
  text-decoration: none;
  line-height: 1.25;
}

/* Každá vrstva (ikona, label, handle) je vlastní blok přes celou šířku položky,
   aby se na hover nikdy nepřeřadily vedle sebe. `display: block` přebíjí
   globální `span, a { display: inline-block }` z theme stylu. */
.zz-social-link > * {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  max-width: 100%;
}

.zz-social-link > i,
.zz-social-link > .zz-social-link__icon {
  display: flex; /* ikona si drží svůj flex pro centrování glyphu */
}

.zz-social-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(3.5rem, 5vw, 4.5rem);
  margin-bottom: 0.15rem;
  font-size: clamp(3.5rem, 5vw, 4.5rem); /* ≈ 56–72 px */
  line-height: 1;
  color: #fcfcfc;
  filter: drop-shadow(0 0 14px rgba(252, 252, 252, 0.10));
  transition:
    color 0.32s ease,
    filter 0.4s ease;
}

.zz-social-link__icon::before {
  display: inline-block;
  line-height: 1;
  transition: background 0.4s ease, -webkit-text-fill-color 0.4s ease, color 0.32s ease;
}

.zz-social-link__label {
  display: block;
  min-height: 1.5rem;          /* pevný řádek — text při hoveru nemůže poskočit */
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(252, 252, 252, 0.92);
  transition: color 0.32s ease;
}

.zz-social-link__handle {
  display: block;
  min-height: 1.4rem;          /* pevný řádek — text při hoveru nemůže poskočit */
  font-size: 0.85rem;
  line-height: 1.4rem;
  color: rgba(252, 252, 252, 0.55);
  transition: color 0.32s ease;
}

.zz-social-link:hover,
.zz-social-link:focus,
.zz-social-link:focus-visible {
  /* Themové pravidlo `a:hover { display: inline-block }` v sablona/css/style.css
     má vyšší specificitu než `.zz-social-link` (0,1,1 vs 0,1,0) a v hover stavu
     by zrušilo flex layout — proto sem explicitně držíme inline-flex zpět. */
  display: inline-flex;
  outline: none;
}

/* Instagram — přirozený značkový gradient (žlutá/oranžová → růžová → fialová) */
.zz-social-ig:hover .zz-social-link__icon,
.zz-social-ig:focus-visible .zz-social-link__icon {
  filter:
    drop-shadow(0 0 10px rgba(220, 39, 67, 0.35))
    drop-shadow(0 0 16px rgba(188, 24, 136, 0.18));
}

.zz-social-ig:hover .zz-social-link__icon::before,
.zz-social-ig:focus-visible .zz-social-link__icon::before {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.zz-social-ig:hover .zz-social-link__label,
.zz-social-ig:focus-visible .zz-social-link__label {
  color: #e6683c;
}

.zz-social-ig:hover .zz-social-link__handle,
.zz-social-ig:focus-visible .zz-social-link__handle {
  color: rgba(230, 104, 60, 0.85);
}

/* Facebook — přirozená modrá */
.zz-social-fb:hover .zz-social-link__icon,
.zz-social-fb:focus-visible .zz-social-link__icon {
  color: #1877f2;
  filter:
    drop-shadow(0 0 10px rgba(24, 119, 242, 0.4))
    drop-shadow(0 0 16px rgba(24, 119, 242, 0.18));
}

.zz-social-fb:hover .zz-social-link__label,
.zz-social-fb:focus-visible .zz-social-link__label {
  color: #1877f2;
}

.zz-social-fb:hover .zz-social-link__handle,
.zz-social-fb:focus-visible .zz-social-link__handle {
  color: rgba(24, 119, 242, 0.85);
}

/* YouTube — přirozená červená */
.zz-social-yt:hover .zz-social-link__icon,
.zz-social-yt:focus-visible .zz-social-link__icon {
  color: #ff0000;
  filter:
    drop-shadow(0 0 10px rgba(255, 0, 0, 0.35))
    drop-shadow(0 0 16px rgba(255, 0, 0, 0.18));
}

.zz-social-yt:hover .zz-social-link__label,
.zz-social-yt:focus-visible .zz-social-link__label {
  color: #ff0000;
}

.zz-social-yt:hover .zz-social-link__handle,
.zz-social-yt:focus-visible .zz-social-link__handle {
  color: rgba(255, 0, 0, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .zz-social-link__icon,
  .zz-social-link__icon::before {
    transition: none;
  }
}

.zz-home-reviews .shap-left-top svg path,
.zz-home-reviews .shap-right-bottom svg path {
  fill: var(--zz-primary) !important;
}

.zz-home-newsletter {
  background: rgba(20, 24, 46, 0.5);
  border-top: 1px solid rgba(252, 252, 252, 0.06);
  border-bottom: 1px solid rgba(252, 252, 252, 0.06);
}

.zz-newsletter-inline {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.zz-newsletter-inline form {
  position: relative;
}

.zz-newsletter-inline input {
  height: 60px;
  width: 100%;
  border: none;
  background: var(--zz-bg-elevated);
  font-size: 17px;
  font-weight: 400;
  color: var(--zz-text);
  outline: none;
  padding: 0 90px 0 20px;
  border: 1px solid rgba(252, 252, 252, 0.1);
  border-radius: 30px;
}

.zz-newsletter-inline input::placeholder {
  color: rgba(231, 231, 231, 0.55);
}

.zz-newsletter-inline button {
  height: 50px;
  width: 50px;
  border: none;
  background: var(--zz-primary);
  font-size: 15px;
  color: var(--zz-text);
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100%;
  line-height: 55px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.zz-newsletter-inline button:hover {
  background: var(--zz-accent);
  transform: rotate(45deg);
}

.page-content.zz-cms-content.zz-home .zz-case .content a.button-3,
.page-content.zz-cms-content.zz-home .video-fullscreen-wrap a.button-3 {
  color: #fff;
}

/* --- Vnitřní stránky CMS (zz-page + Dagency banner-header) --- */

.page-content.zz-page {
  background: transparent !important;
}

/* Kompaktní banner podstránek (přepis Dagency 80–90vh) */
.page-content.zz-page .banner-header,
.page-content.zz-cms-content.zz-page .banner-header {
  height: auto !important;
  min-height: 320px;
  max-height: 360px;
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.page-content.zz-page .banner-header.middle-height,
.page-content.zz-cms-content.zz-page .banner-header.middle-height {
  height: auto !important;
  min-height: 320px;
  max-height: 360px;
}

.page-content.zz-page .banner-header .v-middle,
.page-content.zz-cms-content.zz-page .banner-header .v-middle {
  position: relative;
  top: auto;
  transform: none;
  padding: 0.5rem 0;
}

.page-content.zz-page .banner-header .mt-30,
.page-content.zz-cms-content.zz-page .banner-header .mt-30 {
  margin-top: 0 !important;
}

.page-content.zz-page .banner-header h6,
.page-content.zz-cms-content.zz-page .banner-header h6 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.page-content.zz-page .banner-header h6::after,
.page-content.zz-cms-content.zz-page .banner-header h6::after {
  background: var(--zz-primary) !important;
}

.page-content.zz-page .banner-header h1,
.page-content.zz-cms-content.zz-page .banner-header h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.page-content.zz-page .banner-header h1 span,
.page-content.zz-cms-content.zz-page .banner-header h1 span {
  color: var(--zz-primary) !important;
}

.page-content.zz-page .banner-header .zz-product-hero-sub,
.page-content.zz-cms-content.zz-page .banner-header .zz-product-hero-sub {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: rgba(252, 252, 252, 0.85);
}

.zz-page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.zz-page-breadcrumb .breadcrumb,
.zz-page-breadcrumb ul.zz-breadcrumb {
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}

.zz-page-breadcrumb .zz-breadcrumb,
.zz-page-breadcrumb .breadcrumb.zz-breadcrumb {
  --bs-breadcrumb-divider: "/";
  --bs-breadcrumb-divider-color: rgba(252, 252, 252, 0.35);
  font-size: 0.8125rem;
  line-height: 1.4;
  gap: 0.15rem;
}

.zz-page-breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.page-content.zz-page .zz-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: none;
  padding-right: 0.5rem;
  padding-left: 0.35rem;
  color: rgba(252, 252, 252, 0.35) !important;
  content: "/" !important;
}

.page-content.zz-page .zz-breadcrumb a,
.page-content.zz-page .breadcrumb.zz-breadcrumb a {
  color: rgba(252, 252, 252, 0.72) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-content.zz-page .zz-breadcrumb a:hover,
.page-content.zz-page .breadcrumb.zz-breadcrumb a:hover {
  color: var(--zz-primary) !important;
}

.page-content.zz-page .zz-breadcrumb .breadcrumb-item.active,
.page-content.zz-page .breadcrumb.zz-breadcrumb .breadcrumb-item.active {
  color: var(--zz-text) !important;
}

@media (max-width: 991.98px) {
  .page-content.zz-page .banner-header,
  .page-content.zz-cms-content.zz-page .banner-header,
  .page-content.zz-page .banner-header.middle-height,
  .page-content.zz-cms-content.zz-page .banner-header.middle-height {
    min-height: 260px;
    max-height: 300px;
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .page-content.zz-page .banner-header h1,
  .page-content.zz-cms-content.zz-page .banner-header h1 {
    font-size: clamp(2rem, 7vw, 2.85rem);
  }
}

@media (max-width: 767.98px) {
  .page-content.zz-page .banner-header,
  .page-content.zz-cms-content.zz-page .banner-header,
  .page-content.zz-page .banner-header.middle-height,
  .page-content.zz-cms-content.zz-page .banner-header.middle-height {
    min-height: 200px;
    max-height: 240px;
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .page-content.zz-page .banner-header h1,
  .page-content.zz-cms-content.zz-page .banner-header h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }

  .zz-page-breadcrumb .zz-breadcrumb {
    font-size: 0.75rem;
  }
}

.zz-page-content {
  background: transparent;
}

/* Textové CMS stránky (detail.tpl) */
.zz-textpage {
  background: #0B0E1D;
  color: #fcfcfc;
  overflow-x: hidden;
}

.zz-textpage-hero {
  position: relative;
  padding: 1.15rem 0 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0B0E1D 0%, rgba(11, 14, 29, 0.92) 100%);
}

.zz-textpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 68% 50% at 10% 18%, rgba(30, 154, 209, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 42% at 90% 82%, rgba(145, 40, 209, 0.08), transparent 52%);
}

.zz-textpage-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-textpage-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.zz-textpage-hero__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
}

.zz-textpage-hero__deco--otisky {
  left: -5%;
  bottom: 0;
  max-width: 200px;
  opacity: 0.06;
}

.zz-textpage-hero__deco--fp {
  right: 2%;
  top: 8%;
  max-width: 105px;
  opacity: 0.08;
}

.zz-textpage-hero__deco--stopy {
  right: 8%;
  bottom: -8%;
  max-width: 160px;
  opacity: 0.05;
}

.zz-textpage-hero__deco--fb {
  left: 6%;
  top: 18%;
  max-width: 90px;
  opacity: 0.06;
}

.zz-textpage-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.zz-textpage-hero__breadcrumb,
.zz-textpage-breadcrumb {
  margin-bottom: 0.65rem;
}

.zz-textpage-hero__breadcrumb .breadcrumb,
.zz-textpage-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zz-textpage .zz-textpage-hero__breadcrumb a,
.zz-textpage .zz-textpage-breadcrumb a {
  color: rgba(231, 231, 231, 0.65);
  text-decoration: none;
}

.zz-textpage .zz-textpage-hero__breadcrumb a:hover,
.zz-textpage .zz-textpage-breadcrumb a:hover {
  color: #1e9ad1;
}

.zz-textpage .zz-textpage-hero__breadcrumb .breadcrumb-item.active,
.zz-textpage .zz-textpage-breadcrumb .breadcrumb-item.active {
  color: #e7e7e7;
}

.zz-textpage .zz-textpage-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.zz-textpage .zz-textpage-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(231, 231, 231, 0.35);
}

.zz-textpage-hero__label {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-textpage-hero__title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Hlavní obsah textových stránek */
.zz-textpage-main {
  position: relative;
  padding: 1.25rem 0 2.5rem;
  overflow: hidden;
}

.zz-textpage-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(30, 154, 209, 0.08), transparent 58%),
    radial-gradient(ellipse 60% 50% at 88% 75%, rgba(145, 40, 209, 0.06), transparent 55%);
}

.zz-textpage-main__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-textpage-main__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}

.zz-textpage-main__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
}

.zz-textpage-main__deco--stopy {
  right: -2%;
  top: 8%;
  max-width: 200px;
  opacity: 0.04;
}

.zz-textpage-main__deco--fp {
  left: 4%;
  bottom: 12%;
  max-width: 120px;
  opacity: 0.05;
}

.zz-textpage-main__deco--fb {
  right: 10%;
  bottom: 6%;
  max-width: 95px;
  opacity: 0.05;
}

.zz-textpage-main__container {
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.zz-textpage .zz-text-content {
  max-width: none;
  margin: 0;
  padding: 2rem 2.35rem 2.25rem;
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(231, 231, 231, 0.88);
  background:
    linear-gradient(155deg, rgba(30, 154, 209, 0.06) 0%, rgba(11, 14, 29, 0.72) 42%, rgba(145, 40, 209, 0.05) 100%);
  border: 1px solid rgba(30, 154, 209, 0.14);
  border-radius: 16px;
  box-shadow:
    0 0 40px rgba(30, 154, 209, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.35);
}

.zz-textpage .zz-text-content > *:first-child {
  margin-top: 0;
}

.zz-textpage .zz-text-content p {
  margin-bottom: 1.15rem;
}

.zz-textpage .zz-text-content strong {
  color: #fcfcfc;
  font-weight: 600;
}

.zz-textpage .zz-text-content a {
  color: #1e9ad1;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.zz-textpage .zz-text-content a:hover {
  color: #fcfcfc;
}

/* Sekce — H2 */
.zz-textpage .zz-text-content h2,
.zz-textpage .zz-text-section h2 {
  position: relative;
  margin: 2.75rem 0 1.15rem;
  padding: 0 0 0.85rem 1.15rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fcfcfc !important;
  border: none;
}

.zz-textpage .zz-text-content > h2:first-of-type,
.zz-textpage .zz-text-section:first-child h2 {
  margin-top: 0;
}

.zz-textpage .zz-text-content h2::before,
.zz-textpage .zz-text-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #1e9ad1 0%, #9128d1 100%);
  box-shadow: 0 0 14px rgba(30, 154, 209, 0.45);
}

.zz-textpage .zz-text-content h2::after,
.zz-textpage .zz-text-section h2::after {
  content: "";
  display: block;
  width: min(5rem, 40%);
  height: 2px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, rgba(30, 154, 209, 0.85), transparent);
  box-shadow: 0 0 10px rgba(30, 154, 209, 0.35);
}

.zz-textpage .zz-text-content h3,
.zz-textpage .zz-text-content h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  color: #fcfcfc !important;
  font-family: "Big Shoulders", sans-serif;
}

/* Obsahové bloky mezi H2 */
.zz-textpage .zz-text-content > h2:not(:last-of-type) {
  margin-top: 2.5rem;
  padding: 1.35rem 1.35rem 0.75rem 1.5rem;
  background: linear-gradient(145deg, rgba(30, 154, 209, 0.07) 0%, rgba(11, 14, 29, 0.5) 55%, rgba(145, 40, 209, 0.05) 100%);
  border: 1px solid rgba(30, 154, 209, 0.12);
  border-radius: 14px 14px 0 0;
  border-bottom: none;
  margin-bottom: 0;
}

.zz-textpage .zz-text-content > h2:not(:last-of-type)::before {
  top: 1.45rem;
  bottom: auto;
  height: calc(100% - 2.2rem);
}

.zz-textpage .zz-text-content > h2:not(:last-of-type)::after {
  margin-top: 0.55rem;
}

.zz-textpage .zz-text-content > h2:not(:last-of-type) + p,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ul,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ol,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + div {
  margin-top: 0;
  padding: 0 1.35rem 0.35rem 1.5rem;
  background: linear-gradient(145deg, rgba(30, 154, 209, 0.04) 0%, rgba(11, 14, 29, 0.45) 100%);
  border-left: 1px solid rgba(30, 154, 209, 0.12);
  border-right: 1px solid rgba(30, 154, 209, 0.12);
}

.zz-textpage .zz-text-content > h2:not(:last-of-type) + p + p,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + p + ul,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + p + ol,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ul + p,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ul + ul,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ol + p {
  margin-top: 0;
  padding: 0 1.35rem 0.35rem 1.5rem;
  background: linear-gradient(145deg, rgba(30, 154, 209, 0.04) 0%, rgba(11, 14, 29, 0.45) 100%);
  border-left: 1px solid rgba(30, 154, 209, 0.12);
  border-right: 1px solid rgba(30, 154, 209, 0.12);
}

.zz-textpage .zz-text-content > h2:not(:last-of-type) + p:last-of-type,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ul:last-of-type,
.zz-textpage .zz-text-content > h2:not(:last-of-type) + ol:last-of-type {
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(30, 154, 209, 0.12);
  border-radius: 0 0 14px 14px;
}

/* Skrýt legacy CTA z editoru, pokud obsahuje mailto (nahrazeno .zz-text-cta) */
.zz-textpage .zz-text-content > h2:last-of-type:has(~ a[href^="mailto:"]),
.zz-textpage .zz-text-content > h2:last-of-type:has(~ a[href^="mailto:"]) ~ * {
  display: none !important;
}

/* Seznamy */
.zz-textpage .zz-text-content ul,
.zz-textpage .zz-text-content ol,
.zz-textpage .zz-text-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.zz-textpage .zz-text-content ul li,
.zz-textpage .zz-text-list li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.45rem;
}

.zz-textpage .zz-text-content ul li::before,
.zz-textpage .zz-text-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e9ad1;
  box-shadow: 0 0 10px rgba(30, 154, 209, 0.55);
}

.zz-textpage .zz-text-content ol {
  counter-reset: zz-text-ol;
  padding-left: 0;
}

.zz-textpage .zz-text-content ol li {
  counter-increment: zz-text-ol;
  padding-left: 1.85rem;
}

.zz-textpage .zz-text-content ol li::before {
  content: counter(zz-text-ol);
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9128d1;
  text-align: center;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* CTA dole */
.zz-text-cta {
  position: relative;
  padding: 0 0 4rem;
  overflow: hidden;
}

.zz-text-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zz-text-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.zz-text-cta__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.06;
}

.zz-text-cta__deco--fp {
  left: 8%;
  top: 20%;
  max-width: 130px;
}

.zz-text-cta__deco--fb {
  right: 6%;
  bottom: 15%;
  max-width: 100px;
  opacity: 0.07;
}

.zz-text-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(30, 154, 209, 0.28);
  background:
    linear-gradient(155deg, rgba(30, 154, 209, 0.12) 0%, rgba(11, 14, 29, 0.88) 48%, rgba(145, 40, 209, 0.1) 100%);
  box-shadow:
    0 0 56px rgba(30, 154, 209, 0.14),
    0 0 72px rgba(145, 40, 209, 0.1),
    0 24px 56px rgba(0, 0, 0, 0.45);
}

.zz-text-cta__label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-text-cta__title {
  margin: 0 0 1rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fcfcfc;
}

.zz-text-cta__title span {
  color: #1e9ad1;
}

.zz-text-cta__text {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(231, 231, 231, 0.82);
}

.zz-text-cta__mail {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fcfcfc !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.zz-text-cta__mail:hover {
  color: #1e9ad1 !important;
  text-shadow: 0 0 20px rgba(30, 154, 209, 0.45);
}

.zz-text-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.zz-text-cta__actions .button-3 {
  margin: 0 !important;
  padding: 13px 30px !important;
  font-size: 16px !important;
  box-shadow:
    0 0 0 1px rgba(30, 154, 209, 0.35),
    0 10px 32px rgba(30, 154, 209, 0.28);
}

@media (max-width: 767.98px) {
  .zz-textpage-hero {
    padding: 1rem 0 1.1rem;
  }

  .zz-textpage-hero__deco--otisky {
    max-width: 140px;
  }

  .zz-textpage-hero__deco--fp {
    max-width: 80px;
  }

  .zz-textpage-hero__deco--stopy,
  .zz-textpage-hero__deco--fb {
    display: none;
  }

  .zz-textpage-hero__title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .zz-textpage-breadcrumb .breadcrumb-item.active {
    display: inline-block;
    max-width: min(100%, 14rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
  }

  .zz-textpage-main {
    padding: 1rem 0 2rem;
  }

  .zz-textpage .zz-text-content {
    padding: 1.35rem 1.15rem 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
  }

  .zz-textpage .zz-text-content > h2:not(:last-of-type) {
    padding: 1.15rem 1rem 0.65rem 1.15rem;
  }

  .zz-textpage .zz-text-content > h2:not(:last-of-type) + p,
  .zz-textpage .zz-text-content > h2:not(:last-of-type) + ul,
  .zz-textpage .zz-text-content > h2:not(:last-of-type) + ol,
  .zz-textpage .zz-text-content > h2:not(:last-of-type) + p + p,
  .zz-textpage .zz-text-content > h2:not(:last-of-type) + p + ul {
    padding-left: 1.15rem;
    padding-right: 1rem;
  }

  .zz-textpage-main__deco--stopy,
  .zz-textpage-main__deco--fb {
    display: none;
  }

  .zz-text-cta {
    padding-bottom: 3rem;
  }

  .zz-text-cta__inner {
    padding: 1.75rem 1.15rem;
  }

  .zz-text-cta__mail {
    font-size: 1.05rem;
    word-break: break-word;
  }

  .zz-text-cta__actions .button-3 {
    width: 100%;
    justify-content: center;
  }
}

/* Košík — kompaktní hero */
.zz-cart {
  background: #0B0E1D;
  color: #fcfcfc;
  overflow-x: hidden;
}

.zz-cart-hero {
  position: relative;
  padding: 1.15rem 0 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0B0E1D 0%, rgba(11, 14, 29, 0.92) 100%);
}

.zz-cart-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 68% 50% at 10% 18%, rgba(30, 154, 209, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 42% at 90% 82%, rgba(145, 40, 209, 0.08), transparent 52%);
}

.zz-cart-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-cart-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.zz-cart-hero__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
}

.zz-cart-hero__deco--stopy {
  right: 6%;
  bottom: -10%;
  max-width: 155px;
  opacity: 0.05;
}

.zz-cart-hero__deco--fp {
  right: 3%;
  top: 10%;
  max-width: 100px;
  opacity: 0.08;
}

.zz-cart-hero__deco--fb {
  left: 5%;
  top: 16%;
  max-width: 88px;
  opacity: 0.06;
}

.zz-cart-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.zz-cart-hero__breadcrumb,
.zz-cart-breadcrumb {
  margin-bottom: 0.65rem;
}

.zz-cart-hero__breadcrumb .breadcrumb,
.zz-cart-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zz-cart .zz-cart-hero__breadcrumb a,
.zz-cart .zz-cart-breadcrumb a {
  color: rgba(231, 231, 231, 0.65);
  text-decoration: none;
}

.zz-cart .zz-cart-hero__breadcrumb a:hover,
.zz-cart .zz-cart-breadcrumb a:hover {
  color: #1e9ad1;
}

.zz-cart .zz-cart-hero__breadcrumb .breadcrumb-item.active,
.zz-cart .zz-cart-breadcrumb .breadcrumb-item.active {
  color: #e7e7e7;
}

.zz-cart .zz-cart-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.zz-cart .zz-cart-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(231, 231, 231, 0.35);
}

.zz-cart-hero__label {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-cart-hero__title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zz-cart-main {
  padding-top: 1rem !important;
}

.zz-cart-main > .container {
  padding-top: 0;
}

.zz-cart-main .row.pb-4.mb-5 {
  padding-bottom: 1.25rem !important;
  margin-bottom: 1.75rem !important;
}

@media (max-width: 767.98px) {
  .zz-cart-hero {
    padding: 1rem 0 1.1rem;
  }

  .zz-cart-hero__deco--stopy,
  .zz-cart-hero__deco--fb {
    display: none;
  }

  .zz-cart-hero__title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .zz-cart-main {
    padding-top: 0.75rem !important;
  }
}

/* Typografie obsahu z editoru */
.zz-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--zz-muted);
}

.zz-content > *:first-child {
  margin-top: 0 !important;
}

.zz-content h1,
.zz-content h2,
.zz-content h3,
.zz-content h4 {
  color: var(--zz-text) !important;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.zz-content h1 {
  font-size: 2.25rem;
}

.zz-content h2 {
  font-size: 1.85rem;
}

.zz-content h3 {
  font-size: 1.45rem;
}

.zz-content h4 {
  font-size: 1.2rem;
}

.zz-content p {
  margin-bottom: 1rem;
}

.zz-content ul,
.zz-content ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--zz-muted);
}

.zz-content li {
  margin-bottom: 0.35rem;
}

.zz-content blockquote {
  margin: 1.25rem 0;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  border-left: 4px solid var(--zz-accent);
  background: rgba(145, 40, 209, 0.08);
  color: var(--zz-text);
  font-style: italic;
}

.zz-content img,
.zz-content video,
.zz-content iframe {
  max-width: 100%;
  height: auto;
}

.zz-content table {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.zz-content th,
.zz-content td {
  border: 1px solid rgba(252, 252, 252, 0.12);
  padding: 0.5rem 0.65rem;
  text-align: left;
}

.zz-content th {
  background: rgba(20, 24, 46, 0.85);
  color: var(--zz-text);
}

.zz-content a:not(.button-3) {
  color: var(--zz-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zz-content a:not(.button-3):hover {
  color: var(--zz-accent);
}

.zz-content pre {
  overflow-x: auto;
  padding: 1rem;
  border-radius: 8px;
  background: var(--zz-bg-elevated);
  border: 1px solid rgba(252, 252, 252, 0.08);
  color: var(--zz-muted);
  font-size: 0.9rem;
}

.zz-content hr {
  border: none;
  border-top: 1px solid rgba(252, 252, 252, 0.12);
  margin: 2rem 0;
}

.zz-content-compact p:last-child {
  margin-bottom: 0;
}

/* Blog */
.zz-blog-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.zz-blog-hero-breadcrumb {
  justify-content: flex-start;
}

.zz-blog-hero-breadcrumb .breadcrumb {
  justify-content: flex-start;
}

.zz-blog-hero-meta {
  margin-top: 0.5rem;
  color: rgba(252, 252, 252, 0.85);
  font-size: 1rem;
}

.zz-blog-hero-meta .ti-calendar {
  margin-right: 0.35rem;
}

.zz-blog-featured {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.1);
}

.zz-blog-card {
  padding-bottom: 0.5rem;
}

.zz-blog-gallery .lightimg {
  cursor: pointer;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.08);
}

/* Sidebar */
.zz-sidebar {
  top: 6.5rem;
}

.zz-sidebar-widget {
  padding: 1.5rem;
  border: 1px solid rgba(252, 252, 252, 0.1);
  border-radius: 12px;
  background: rgba(20, 24, 46, 0.5);
}

.zz-sidebar-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
  color: var(--zz-text) !important;
}

.zz-sidebar-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.zz-sidebar-post:last-child {
  margin-bottom: 0;
}

.zz-sidebar-post-media {
  flex: 0 0 88px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.08);
}

.zz-sidebar-post-media img {
  width: 100%;
  height: auto;
  display: block;
}

.zz-sidebar-post-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.3;
}

.zz-sidebar-post-title a {
  color: var(--zz-text);
  text-decoration: none;
}

.zz-sidebar-post-title a:hover {
  color: var(--zz-primary);
}

.zz-sidebar-post-date {
  font-size: 0.85rem;
  color: rgba(231, 231, 231, 0.55);
}

.zz-sidebar-empty {
  margin: 0;
  color: rgba(231, 231, 231, 0.55);
  font-size: 0.95rem;
}

/* --- O nás (cinematic) --- */

.zz-about {
  background: #0B0E1D;
  color: #fcfcfc;
  overflow-x: hidden;
}

.zz-about-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-about-heading {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.15rem;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zz-about-heading span {
  color: #1e9ad1;
}

.zz-about-cta {
  margin-top: 0.5rem !important;
}

/* Hero */
.zz-about-hero {
  position: relative;
  padding: 1.25rem 0 1.75rem;
  overflow: hidden;
}

.zz-about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-about-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.zz-about-hero__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.08;
}

.zz-about-hero__deco--otisky {
  left: -5%;
  bottom: 0;
  max-width: 220px;
}

.zz-about-hero__deco--fp {
  right: 2%;
  top: 10%;
  max-width: 120px;
  opacity: 0.1;
}

.zz-about-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.zz-about-hero__breadcrumb {
  margin-bottom: 0.75rem;
}

.zz-about-hero__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zz-about .zz-about-hero__breadcrumb a {
  color: rgba(231, 231, 231, 0.65);
  text-decoration: none;
}

.zz-about .zz-about-hero__breadcrumb a:hover {
  color: #1e9ad1;
}

.zz-about .zz-about-hero__breadcrumb .breadcrumb-item.active {
  color: #e7e7e7;
}

.zz-about .zz-about-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(231, 231, 231, 0.35);
}

.zz-about-hero__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-about-hero__title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Spravedlnost */
.zz-about-justice {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.zz-about-justice__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-about-justice__deco-img {
  position: absolute;
  right: 5%;
  top: 15%;
  max-width: 140px;
  opacity: 0.05;
  object-fit: contain;
}

.zz-about-justice__deco-fp {
  position: absolute;
  left: 0;
  bottom: 10%;
  max-width: 100px;
  opacity: 0.07;
  object-fit: contain;
}

.zz-about-justice .container {
  position: relative;
  z-index: 1;
}

.zz-about-justice__content p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(231, 231, 231, 0.88);
  max-width: 34rem;
}

.zz-about-justice__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.zz-about-justice__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.zz-about-justice__img--spis {
  object-fit: contain;
  max-height: min(48vh, 420px);
  box-shadow: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* CMS blok */
.zz-about-cms {
  padding: 0 0 2.5rem;
}

.zz-about-cms__body {
  padding: 1.5rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(252, 252, 252, 0.08);
  background: rgba(20, 24, 46, 0.45);
  color: rgba(231, 231, 231, 0.88);
}

/* Pilíře */
.zz-about-pillars {
  position: relative;
  padding: 3rem 0 4rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(30, 154, 209, 0.04) 50%, transparent 100%);
}

.zz-about-pillars__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.zz-about-pillars__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.zz-about-pillars__lead {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(231, 231, 231, 0.82);
}

.zz-about-pillars__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.zz-about-pillars__item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.zz-about-pillars__item:last-child {
  margin-bottom: 0;
}

.zz-about-pillars__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #1e9ad1;
  background: rgba(30, 154, 209, 0.12);
  box-shadow: 0 0 20px rgba(30, 154, 209, 0.08);
}

.zz-about-pillars__body strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #fcfcfc;
}

.zz-about-pillars__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(231, 231, 231, 0.72);
}

/* Tým */
.zz-about-team {
  position: relative;
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.zz-about-team__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-about-team__deco {
  position: absolute;
  right: -3%;
  bottom: 5%;
  max-width: 260px;
  opacity: 0.05;
  object-fit: contain;
}

.zz-about-team .container {
  position: relative;
  z-index: 1;
}

.zz-about-team__intro p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(231, 231, 231, 0.82);
}

.zz-about-team__card {
  height: 100%;
  padding: 1.35rem 1.15rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(30, 154, 209, 0.2);
  background: rgba(20, 24, 46, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.zz-about-team__card:hover {
  border-color: rgba(145, 40, 209, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(30, 154, 209, 0.1);
  transform: translateY(-2px);
}

.zz-about-team__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(30, 154, 209, 0.4);
  background: rgba(11, 14, 29, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zz-about-team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zz-about-team__avatar-fallback,
.zz-about-team__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e9ad1;
  letter-spacing: 0.04em;
}

.zz-about-team__avatar-fallback {
  font-size: 1.5rem;
  color: #9128d1;
}

.zz-about-team__name {
  margin: 0 0 0.35rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fcfcfc;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transform: none;
  writing-mode: horizontal-tb;
}

.zz-about-team__role {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e9ad1;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.zz-about-team__role::before,
.zz-about-team__role::after {
  display: none !important;
}

.zz-about-team__contact {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(231, 231, 231, 0.6);
}

.zz-about-team__contact a {
  color: #1e9ad1;
  text-decoration: none;
  word-break: break-word;
}

.zz-about-team__contact a:hover {
  color: #9128d1;
  text-decoration: underline;
}

.zz-about-team__contact::before {
  display: none;
}

@media (max-width: 991.98px) {
  .zz-about-justice {
    padding-top: 1.5rem;
  }

  .zz-about-justice__media {
    min-height: 200px;
    margin-bottom: 0.5rem;
  }

  .zz-about-pillars {
    padding-top: 2rem;
  }

  .zz-about-team__intro {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .zz-about-hero {
    padding: 1rem 0 1.25rem;
  }

  .zz-about-justice__content p {
    font-size: 0.92rem;
  }

  .zz-about-team__card {
    padding: 1.15rem 1rem;
  }
}

/* --- Kontakt (cinematic) --- */

.zz-contact {
  background: #0B0E1D;
  color: #fcfcfc;
  overflow-x: hidden;
}

/* Hero */
.zz-contact-hero {
  position: relative;
  padding: 1.25rem 0 1.5rem;
  overflow: hidden;
}

.zz-contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-contact-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.zz-contact-hero__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.08;
}

.zz-contact-hero__deco--otisky {
  left: -4%;
  bottom: 0;
  max-width: 200px;
}

.zz-contact-hero__deco--fp {
  right: 3%;
  top: 12%;
  max-width: 110px;
  opacity: 0.1;
}

.zz-contact-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.zz-contact-hero__breadcrumb {
  margin-bottom: 0.75rem;
}

.zz-contact-hero__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zz-contact .zz-contact-hero__breadcrumb a {
  color: rgba(231, 231, 231, 0.65);
  text-decoration: none;
}

.zz-contact .zz-contact-hero__breadcrumb a:hover {
  color: #1e9ad1;
}

.zz-contact .zz-contact-hero__breadcrumb .breadcrumb-item.active {
  color: #e7e7e7;
}

.zz-contact .zz-contact-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(231, 231, 231, 0.35);
}

.zz-contact-hero__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-contact-hero__title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Kontaktní karty */
.zz-contact-cards {
  position: relative;
  padding: 0.5rem 0 2.5rem;
  margin-top: -0.5rem;
}

.zz-contact-card {
  height: 100%;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(30, 154, 209, 0.25);
  background: rgba(20, 24, 46, 0.55);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(252, 252, 252, 0.04);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.zz-contact-card:hover {
  border-color: rgba(30, 154, 209, 0.5);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(30, 154, 209, 0.12);
  transform: translateY(-2px);
}

.zz-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-size: 1.15rem;
  color: #1e9ad1;
  background: rgba(30, 154, 209, 0.12);
  box-shadow: 0 0 20px rgba(30, 154, 209, 0.1);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.zz-contact-card:hover .zz-contact-card__icon {
  color: #fcfcfc;
  background: rgba(30, 154, 209, 0.22);
  box-shadow: 0 0 24px rgba(30, 154, 209, 0.2);
}

.zz-contact-card__icon--accent {
  color: #9128d1;
  background: rgba(145, 40, 209, 0.12);
  box-shadow: 0 0 20px rgba(145, 40, 209, 0.1);
}

.zz-contact-card:hover .zz-contact-card__icon--accent {
  background: rgba(145, 40, 209, 0.22);
  box-shadow: 0 0 24px rgba(145, 40, 209, 0.18);
}

.zz-contact-card__title {
  margin: 0 0 0.5rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fcfcfc;
}

.zz-contact-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(231, 231, 231, 0.85);
}

.zz-contact-card__text a {
  color: #1e9ad1;
  text-decoration: none;
  word-break: break-word;
}

.zz-contact-card__text a:hover {
  color: #9128d1;
  text-decoration: underline;
}

.zz-contact-intro {
  padding: 0 0 1.5rem;
}

.zz-contact-intro .zz-content {
  color: rgba(231, 231, 231, 0.85);
}

/* Formulář + fakturace */
.zz-contact-main {
  position: relative;
  padding: 0 0 5rem;
}

.zz-contact-main__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zz-contact-main__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.05;
}

.zz-contact-main__deco--stopy {
  right: 0;
  top: 10%;
  max-width: 160px;
}

.zz-contact-main__deco--fb {
  left: 0;
  bottom: 20%;
  max-width: 100px;
  opacity: 0.06;
}

.zz-contact-main .container {
  position: relative;
  z-index: 1;
}

.zz-contact-form {
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(30, 154, 209, 0.28);
  background: rgba(20, 24, 46, 0.55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.zz-contact-form__title,
.zz-contact-billing__title {
  margin: 0 0 1.25rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fcfcfc;
}

.zz-contact-form__input {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fcfcfc;
  background: rgba(11, 14, 29, 0.85) !important;
  border: 1px solid rgba(231, 231, 231, 0.15) !important;
  border-radius: 8px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.zz-contact-form__input::placeholder {
  color: rgba(231, 231, 231, 0.45);
}

.zz-contact-form__input:focus {
  outline: none;
  border-color: #1e9ad1 !important;
  box-shadow: 0 0 0 0.15rem rgba(30, 154, 209, 0.28) !important;
  background: rgba(11, 14, 29, 0.95) !important;
}

.zz-contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.zz-contact-form__check .form-check-label {
  font-size: 0.88rem;
  color: rgba(231, 231, 231, 0.8);
  line-height: 1.45;
}

.zz-contact-form__check .form-check-input {
  border-color: rgba(231, 231, 231, 0.3);
  background-color: rgba(11, 14, 29, 0.8);
}

.zz-contact-form__check .form-check-input:checked {
  background-color: #9128d1 !important;
  border-color: #9128d1 !important;
}

.zz-contact-form__check .form-check-input:focus {
  border-color: #1e9ad1 !important;
  box-shadow: 0 0 0 0.15rem rgba(145, 40, 209, 0.3) !important;
}

.zz-contact-form__captcha {
  overflow-x: auto;
  max-width: 100%;
}

.zz-contact-form__captcha .g-recaptcha {
  transform-origin: left top;
}

.zz-contact-form__submit {
  width: 100%;
  margin: 0.25rem 0 0 !important;
  padding: 13px 28px !important;
  font-size: 16px !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(30, 154, 209, 0.3);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.zz-contact-form__submit:hover {
  background: #9128d1 !important;
  box-shadow: 0 12px 36px rgba(145, 40, 209, 0.4);
  transform: translateY(-1px);
}

/* Fakturační údaje */
.zz-contact-billing {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(145, 40, 209, 0.28);
  background: rgba(20, 24, 46, 0.55);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(145, 40, 209, 0.06);
}

.zz-contact-billing__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.zz-contact-billing__row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.06);
}

.zz-contact-billing__row:last-child {
  border-bottom: none;
}

.zz-contact-billing__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1e9ad1;
  background: rgba(30, 154, 209, 0.12);
}

.zz-contact-billing__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(231, 231, 231, 0.88);
}

.zz-contact-billing__text a {
  color: #1e9ad1;
  text-decoration: none;
}

.zz-contact-billing__text a:hover {
  color: #9128d1;
  text-decoration: underline;
}

.zz-contact-billing__note {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(252, 252, 252, 0.08);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(231, 231, 231, 0.55);
  font-style: italic;
}

@media (max-width: 991.98px) {
  .zz-contact-billing {
    margin-top: 0.25rem;
  }
}

@media (max-width: 767.98px) {
  .zz-contact-hero {
    padding: 1rem 0 1.25rem;
  }

  .zz-contact-cards {
    padding-bottom: 2rem;
  }

  .zz-contact-form,
  .zz-contact-billing {
    padding: 1.35rem 1.15rem;
  }

  .zz-contact-form__captcha {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .zz-contact-form__captcha .g-recaptcha > div {
    max-width: 100%;
  }
}

/* --- FAQ (cinematic) --- */

.zz-faq {
  background: #0B0E1D;
  color: #fcfcfc;
  overflow-x: hidden;
}

/* Hero */
.zz-faq-hero {
  position: relative;
  padding: 1.25rem 0 1.5rem;
  overflow: hidden;
}

.zz-faq-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-faq-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.zz-faq-hero__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.08;
}

.zz-faq-hero__deco--otisky {
  left: -4%;
  bottom: 0;
  max-width: 200px;
}

.zz-faq-hero__deco--fp {
  right: 3%;
  top: 12%;
  max-width: 110px;
  opacity: 0.1;
}

.zz-faq-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.zz-faq-hero__breadcrumb {
  margin-bottom: 0.75rem;
}

.zz-faq-hero__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zz-faq .zz-faq-hero__breadcrumb a {
  color: rgba(231, 231, 231, 0.65);
  text-decoration: none;
}

.zz-faq .zz-faq-hero__breadcrumb a:hover {
  color: #1e9ad1;
}

.zz-faq .zz-faq-hero__breadcrumb .breadcrumb-item.active {
  color: #e7e7e7;
}

.zz-faq .zz-faq-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(231, 231, 231, 0.35);
}

.zz-faq-hero__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-faq-hero__title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Main + accordion */
.zz-faq-main {
  position: relative;
  padding: 0.5rem 0 3.5rem;
}

.zz-faq-main__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zz-faq-main__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: 0.05;
}

.zz-faq-main__deco--stopy {
  right: 0;
  top: 8%;
  max-width: 150px;
}

.zz-faq-main__deco--fb {
  left: 0;
  bottom: 15%;
  max-width: 100px;
  opacity: 0.06;
}

.zz-faq-main .container {
  position: relative;
  z-index: 1;
}

.zz-faq-intro {
  margin: 0 auto 2rem;
  max-width: 38rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(231, 231, 231, 0.85);
}

.zz-faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1.1rem;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1.15rem;
}

.zz-faq-accordion__item {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(30, 154, 209, 0.22) !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: rgba(20, 24, 46, 0.5);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(252, 252, 252, 0.04);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.zz-faq-accordion__item:hover {
  border-color: rgba(30, 154, 209, 0.45) !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(30, 154, 209, 0.08);
}

.zz-faq-accordion__item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(145, 40, 209, 0.5) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(145, 40, 209, 0.12),
    inset 3px 0 0 #9128d1;
}

.zz-faq-accordion .accordion-button {
  background: rgba(11, 14, 29, 0.75) !important;
  color: #fcfcfc !important;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  box-shadow: none !important;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    padding 0.2s ease;
}

.zz-faq-accordion .accordion-button:hover {
  background: rgba(30, 154, 209, 0.1) !important;
  color: #fcfcfc !important;
}

.zz-faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(145, 40, 209, 0.18) 0%, rgba(30, 154, 209, 0.1) 100%) !important;
  color: #fcfcfc !important;
  box-shadow: none !important;
}

.zz-faq-accordion .accordion-button::after {
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
  filter: brightness(0) saturate(100%) invert(56%) sepia(79%) saturate(2476%) hue-rotate(167deg) brightness(93%) contrast(90%);
  opacity: 0.95;
  transition: transform 0.35s ease, filter 0.3s ease;
}

.zz-faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(37%) sepia(56%) saturate(2878%) hue-rotate(256deg) brightness(91%) contrast(92%);
  transform: rotate(-180deg);
}

.zz-faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(30, 154, 209, 0.35) !important;
  border-color: transparent;
  z-index: 1;
}

.zz-faq-accordion__body {
  background: rgba(11, 14, 29, 0.55) !important;
  border-top: 1px solid rgba(252, 252, 252, 0.08);
  color: rgba(231, 231, 231, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.zz-faq-accordion__body p {
  margin-bottom: 0.75rem;
}

.zz-faq-accordion__body p:last-child {
  margin-bottom: 0;
}

.zz-faq-accordion__body a {
  color: #1e9ad1;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.zz-faq-accordion__body a:hover {
  color: #9128d1;
}

/* CTA */
.zz-faq-cta {
  position: relative;
  padding: 3.5rem 0 5rem;
  overflow: hidden;
}

.zz-faq-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zz-faq-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.zz-faq-cta__deco {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 200px;
  opacity: 0.08;
  pointer-events: none;
  object-fit: contain;
}

.zz-faq-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(30, 154, 209, 0.3);
  background: rgba(11, 14, 29, 0.72);
  box-shadow:
    0 0 48px rgba(30, 154, 209, 0.12),
    0 0 64px rgba(145, 40, 209, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.4);
}

.zz-faq-cta__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-faq-cta__title {
  margin: 0 0 1.5rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fcfcfc;
}

.zz-faq-cta__title span {
  color: #1e9ad1;
}

.zz-faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.zz-faq-cta__actions .button-3,
.zz-faq-cta__actions .button-4 {
  margin: 0 !important;
  padding: 12px 26px !important;
  font-size: 16px !important;
}

.zz-faq-cta__actions .button-3 {
  box-shadow: 0 8px 28px rgba(30, 154, 209, 0.3);
}

@media (max-width: 767.98px) {
  .zz-faq-hero {
    padding: 1rem 0 1.25rem;
  }

  .zz-faq-intro {
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
  }

  .zz-faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem 1.1rem !important;
  }

  .zz-faq-cta {
    padding: 2.5rem 0 4rem;
  }

  .zz-faq-cta__inner {
    padding: 2rem 1.15rem;
  }

  .zz-faq-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .zz-faq-cta__actions .button-3,
  .zz-faq-cta__actions .button-4 {
    width: 100%;
    justify-content: center;
  }
}

/* --- Výpis her (Naše hry) — cinematic polish --- */

.zz-page-games {
  padding-top: 0.25rem;
}

.zz-games-page-head {
  max-width: 38rem;
  margin: 0 auto 1.15rem;
  text-align: center;
}

.zz-games-page-head__breadcrumb {
  justify-content: center;
  margin: 0 0 0.65rem;
}

.zz-games-page-head__breadcrumb .breadcrumb {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.zz-games-page-head__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-games-page-head__eyebrow::after {
  display: none;
}

.zz-games-page-head__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #e7e7e7;
  opacity: 0.85;
}

.zz-games-catalog {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.zz-games-catalog--cinematic {
  background:
    linear-gradient(180deg, rgba(11, 14, 29, 0.35) 0%, rgba(11, 14, 29, 0.92) 18%, rgba(11, 14, 29, 0.98) 100%);
}

.zz-games-catalog--cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.zz-games-catalog__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zz-games-catalog__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.zz-games-catalog__glow--blue {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  left: -8%;
  top: 12%;
  background: #1e9ad1;
}

.zz-games-catalog__glow--violet {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  right: -5%;
  bottom: 8%;
  background: #9128d1;
}

.zz-games-catalog__deco {
  position: absolute;
  opacity: 0.06;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
}

.zz-games-catalog__deco--stopy {
  left: 2%;
  bottom: 10%;
  transform: rotate(-12deg);
}

.zz-games-catalog__deco--otisky {
  right: 4%;
  top: 18%;
  max-width: 160px;
  transform: rotate(8deg);
}

.zz-games-catalog__inner {
  position: relative;
  z-index: 1;
}

.zz-games-intro {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.zz-games-intro__text {
  margin: 0.5rem 0 0;
  color: #e7e7e7;
  opacity: 0.82;
  font-size: 1rem;
  line-height: 1.55;
}

.zz-case-featured {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 20px;
  /*background:
    linear-gradient(152deg, rgba(11, 14, 29, 0.98) 0%, rgba(20, 24, 46, 0.94) 48%, rgba(11, 14, 29, 0.99) 100%);*/
  border: 1px solid rgba(30, 154, 209, 0.45);
  box-shadow:
    0 0 0 1px rgba(145, 40, 209, 0.18),
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 28px 72px rgba(0, 0, 0, 0.5),
    0 0 64px rgba(30, 154, 209, 0.12),
    inset 0 1px 0 rgba(252, 252, 252, 0.06);
  overflow: visible;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.zz-case-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  /*background:
    radial-gradient(ellipse 70% 55% at 18% 45%, rgba(30, 154, 209, 0.2), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 25%, rgba(145, 40, 209, 0.16), transparent 52%);*/
  z-index: 0;
}

.zz-case-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(11, 14, 29, 0.5);
  z-index: 0;
}

.zz-case-featured:hover {
  border-color: rgba(145, 40, 209, 0.55);
  box-shadow:
    0 0 0 1px rgba(30, 154, 209, 0.35),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(30, 154, 209, 0.18),
    0 0 48px rgba(145, 40, 209, 0.1);
  transform: translateY(-2px);
}

.zz-case-featured--solo {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.zz-case-featured__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: inherit;
  overflow: hidden;
}

@media (min-width: 992px) {
  .zz-case-featured__inner {
    flex-direction: row;
    min-height: min(72vh, 520px);
  }
}

.zz-case-featured__visual {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 0.75rem;
  background:
    radial-gradient(ellipse 90% 80% at 50% 55%, rgba(30, 154, 209, 0.1), transparent 65%),
    rgba(11, 14, 29, 0.65);
  border-bottom: 1px solid rgba(231, 231, 231, 0.08);
  overflow: visible;
}

@media (min-width: 992px) {
  .zz-case-featured__visual {
    flex: 0 0 46%;
    max-width: 46%;
    padding: 1.5rem 1.25rem;
    border-bottom: none;
    border-right: 1px solid rgba(231, 231, 231, 0.08);
  }
}

.zz-case-featured__visual-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 154, 209, 0.28) 0%, rgba(145, 40, 209, 0.08) 45%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.zz-case-featured__hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 460px);
  height: auto;
  max-height: min(58vh, 480px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.55));
  transform: translateY(4px) scale(1.06);
  animation: zz-spis-float 5.5s ease-in-out infinite;
}

@keyframes zz-spis-float {
  0%,
  100% {
    transform: translateY(6px) scale(1.06);
  }
  50% {
    transform: translateY(-6px) scale(1.08);
  }
}

.zz-case-featured__thumb {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  width: 72px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(30, 154, 209, 0.55);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  opacity: 0.95;
}

.zz-case-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .zz-case-featured__thumb {
    right: 1rem;
    bottom: 1rem;
  }

  .zz-case-featured__hero-img {
    max-width: 100%;
    transform: translateY(8px) scale(1.1);
    max-height: min(64vh, 500px);
  }
}

.zz-case-featured__content {
  flex: 1;
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .zz-case-featured__content {
    padding: 2rem 2.5rem 2rem 2rem;
  }
}

.zz-case-featured__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.zz-case-featured__title {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.1;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.zz-case-featured__title a {
  color: #fcfcfc;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.zz-case-featured__title a:hover {
  color: #1e9ad1;
  text-shadow: 0 0 24px rgba(30, 154, 209, 0.35);
}

.zz-case-featured__teaser {
  margin: 0 0 0.85rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(145, 40, 209, 0.65);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #e7e7e7;
  opacity: 0.92;
  max-width: 34rem;
}

.zz-case-featured__excerpt {
  color: #e7e7e7;
  opacity: 0.78;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.zz-case-featured__price {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #fcfcfc;
  margin: 0 0 1rem;
}

.zz-case-featured__price span {
  color: #1e9ad1;
}

.zz-case-featured__badges {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
}

.zz-case-featured__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: rgba(11, 14, 29, 0.45);
  border: none;
  color: #fcfcfc;
  letter-spacing: 0.03em;
  box-shadow: none;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.zz-case-featured__badges .zz-spec-icon {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.78rem;
  border-radius: 6px;
  margin: 0;
  border: none;
  box-shadow: none;
}

.zz-case-featured__badge-text {
  line-height: 1.2;
  white-space: nowrap;
}

.zz-case-featured__badges li:hover {
  background: rgba(30, 154, 209, 0.12);
  box-shadow: none;
  transform: translateY(-1px);
}

.zz-case-featured__badges li:hover .zz-spec-icon {
  border: none;
  background: rgba(145, 40, 209, 0.14);
  color: #9128d1;
  box-shadow: none;
}

.zz-case-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.zz-case-featured__actions .button-4 {
  margin: 0;
  padding: 11px 22px;
  font-size: 15px;
}

.zz-btn-case-primary {
  margin: 0 !important;
  padding: 14px 30px !important;
  font-size: 17px !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 0 1px rgba(30, 154, 209, 0.35),
    0 8px 28px rgba(30, 154, 209, 0.25),
    0 0 32px rgba(145, 40, 209, 0.12);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease !important;
}

.zz-btn-case-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(252, 252, 252, 0.2),
    0 12px 36px rgba(30, 154, 209, 0.4),
    0 0 48px rgba(145, 40, 209, 0.22);
}

.zz-btn-case-primary span.ti-arrow-top-right {
  display: inline-block;
  transition: transform 0.28s ease;
}

.zz-btn-case-primary:hover span.ti-arrow-top-right {
  transform: translate(3px, -3px);
}

.zz-games-grid-head {
  margin: 0.25rem 0 1.5rem;
}

.zz-games-grid {
  --bs-gutter-x: 1.5rem;
}

.zz-games-grid .zz-game-card-media--spis img {
  object-fit: contain;
  padding: 1rem;
  background: rgba(11, 14, 29, 0.6);
}

.zz-games-empty-state {
  max-width: 36rem;
  margin: 1rem auto 0;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: rgba(11, 14, 29, 0.55);
  border: 1px solid rgba(231, 231, 231, 0.1);
  box-shadow: 0 0 40px rgba(145, 40, 209, 0.06);
}

.zz-games-empty-state__title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
  color: #fcfcfc;
}

.zz-games-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.zz-games-empty-state__actions .button-3,
.zz-games-empty-state__actions .button-4 {
  margin: 0;
}

.zz-page-games .zz-games-catalog.section-padding {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

@media (max-width: 991.98px) {
  .zz-games-page-head {
    margin-bottom: 1rem;
  }

  .zz-case-featured__hero-img {
    max-height: min(42vh, 360px);
    transform: translateY(0) scale(1.04);
  }

  .zz-games-catalog__deco {
    opacity: 0.035;
  }
}

@media (max-width: 767.98px) {
  .zz-games-page-head {
    margin-bottom: 0.85rem;
  }

  .zz-games-page-head__text {
    font-size: 0.9rem;
  }

  .zz-case-featured {
    border-radius: 16px;
  }

  .zz-case-featured__hero-img {
    max-height: 280px;
    animation: none;
    transform: none;
  }

  .zz-case-featured__teaser {
    font-size: 0.95rem;
  }

  .zz-btn-case-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .zz-case-featured__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .zz-case-featured__actions .button-4 {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zz-case-featured__hero-img {
    animation: none;
  }

  .zz-case-featured:hover,
  .zz-btn-case-primary:hover {
    transform: none;
  }
}

.zz-game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(252, 252, 252, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(20, 24, 46, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.zz-game-card:hover {
  border-color: rgba(30, 154, 209, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.zz-game-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 400 / 555;
}

.zz-game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zz-game-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.zz-game-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zz-primary);
  margin: 0 0 0.35rem;
}

.zz-game-card-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.zz-game-card-title a {
  color: var(--zz-text);
  text-decoration: none;
}

.zz-game-card-title a:hover {
  color: var(--zz-primary);
}

.zz-game-card-text {
  font-size: 0.95rem;
  flex: 1;
}

.zz-game-card-text p {
  margin-bottom: 0;
  color: var(--zz-muted);
}

.zz-game-card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(252, 252, 252, 0.08);
}

.zz-game-price {
  display: block;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--zz-text);
  margin-bottom: 1rem;
}

.zz-game-price--muted {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(231, 231, 231, 0.55);
}

.zz-game-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.zz-game-card-actions .button-3,
.zz-game-card-actions .button-4 {
  margin: 0;
  padding: 10px 22px;
  font-size: 16px;
}

.zz-games-empty {
  color: var(--zz-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Detail produktu / hry (katalog) --- */

.zz-product-page .zz-product-hero-sub {
  margin: 0.5rem auto 0;
  max-width: 42rem;
  font-size: 1.05rem;
  color: rgba(252, 252, 252, 0.85);
}

.zz-product-detail {
  --zz-pd-radius: 14px;
}

.zz-product-gallery {
  position: sticky;
  top: 5.5rem;
}

.zz-product-gallery-main {
  border-radius: var(--zz-pd-radius);
  overflow: hidden;
  background: rgba(20, 24, 46, 0.55);
  border: 1px solid rgba(252, 252, 252, 0.08);
}

.zz-product-gallery-main-link,
.zz-product-gallery-main-inner {
  display: block;
  line-height: 0;
}

.zz-product-gallery-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.zz-product-gallery-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 14, 29, 0.5);
  color: rgba(231, 231, 231, 0.45);
  font-size: 0.95rem;
}

.zz-product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.zz-product-gallery-thumb {
  flex: 0 0 auto;
  width: calc(33.333% - 0.45rem);
  max-width: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.1);
  background: rgba(20, 24, 46, 0.45);
  line-height: 0;
  transition: border-color 0.2s ease;
}

@media (max-width: 575.98px) {
  .zz-product-gallery-thumb {
    width: calc(50% - 0.35rem);
    max-width: none;
  }
}

.zz-product-gallery-thumb:hover,
.zz-product-gallery-thumb:focus-within {
  border-color: rgba(30, 154, 209, 0.45);
}

.zz-product-gallery-thumb-link,
.zz-product-gallery-thumb-inner {
  display: block;
}

.zz-product-gallery-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 500 / 333;
}

.zz-product-summary {
  padding: 0.25rem 0 0;
}

.zz-product-heading {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: var(--zz-text) !important;
}

.zz-product-brand-line {
  margin: 0 0 1rem;
}

.zz-product-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.zz-product-brand-logo {
  border-radius: 8px;
  object-fit: contain;
}

.zz-product-brand-text {
  color: var(--zz-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.zz-product-price {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--zz-text);
  margin: 0 0 1rem;
}

.zz-product-price-amount {
  color: var(--zz-text);
}

.zz-product-meta {
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
}

.zz-product-meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.06);
}

.zz-product-meta-item:last-child {
  border-bottom: none;
}

.zz-product-meta-label {
  color: rgba(231, 231, 231, 0.55);
  min-width: 7rem;
}

.zz-product-meta-value {
  color: var(--zz-muted);
}

.zz-product-lead {
  font-size: 1.05rem;
  color: var(--zz-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.zz-product-popis {
  margin-bottom: 1.5rem;
}

.zz-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.zz-product-actions .button-2,
.zz-product-actions .button-3 {
  margin: 0;
}

.zz-product-body-row {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(252, 252, 252, 0.08);
}

.zz-product-body {
  margin: 0;
}

.zz-product-params-row {
  margin-top: 2.5rem;
}

.zz-product-params {
  padding: 1.5rem 1.35rem;
  border-radius: var(--zz-pd-radius);
  border: 1px solid rgba(252, 252, 252, 0.1);
  background: rgba(20, 24, 46, 0.35);
}

.zz-product-params-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--zz-text) !important;
}

.zz-product-params-list {
  margin: 0;
}

.zz-product-param {
  display: grid;
  grid-template-columns: minmax(0, 10rem) 1fr;
  gap: 0.35rem 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.06);
}

@media (max-width: 575.98px) {
  .zz-product-param {
    grid-template-columns: 1fr;
  }
}

.zz-product-param:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.zz-product-param-name {
  margin: 0;
  font-weight: 600;
  color: var(--zz-text);
  font-size: 0.9rem;
}

.zz-product-param-values {
  margin: 0;
  color: var(--zz-muted);
  font-size: 0.95rem;
}

.zz-product-cta-row {
  margin-top: 2.5rem;
}

@media (max-width: 991.98px) {
  .zz-product-gallery {
    position: static;
  }
}

/* Detail hry — hero jako portfolio-details.html (velký obrázek, middle-height) */
.page-content.zz-product-page .banner-header.zz-product-hero {
  height: 70vh !important;
  min-height: 400px !important;
  max-height: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-position: center center;
  background-size: cover;
}

.page-content.zz-product-page .banner-header.zz-product-hero .v-middle {
  position: absolute !important;
  top: 50% !important;
  width: 100%;
  transform: translate(0%, -50%) !important;
  padding: 0;
}

.page-content.zz-product-page .banner-header.zz-product-hero .mt-30 {
  margin-top: 1.5rem !important;
}

.page-content.zz-product-page .banner-header.zz-product-hero h6 {
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.page-content.zz-product-page .banner-header.zz-product-hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.page-content.zz-product-page .banner-header.zz-product-hero .zz-product-hero-breadcrumb {
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.page-content.zz-product-page .banner-header.zz-product-hero .zz-product-hero-breadcrumb .breadcrumb,
.page-content.zz-product-page .banner-header.zz-product-hero .zz-product-hero-breadcrumb ul.zz-breadcrumb {
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .page-content.zz-product-page .banner-header.zz-product-hero {
    height: 80vh !important;
    min-height: 520px !important;
  }
}

@media (max-width: 767.98px) {
  .page-content.zz-product-page .banner-header.zz-product-hero {
    height: 55vh !important;
    min-height: 320px !important;
  }

  .page-content.zz-product-page .banner-header.zz-product-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
}

/* Detail hry — Dagency portfolio-details */
.zz-product-page .portfolio-details .sidebar-car .features p strong {
  color: var(--zz-text);
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.35rem;
}

.zz-product-page .portfolio-details .zz-product-sidebar-actions .button-2,
.zz-product-page .portfolio-details .zz-product-sidebar-actions .button-3 {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.zz-product-page .portfolio-details .zz-params-temp p {
  color: rgba(231, 231, 231, 0.45);
  font-style: italic;
}

.zz-product-page .portfolio-details .zz-product-lead-block {
  font-size: 17px;
  line-height: 1.75;
  color: var(--zz-muted);
}

/* =============================================================================
   Globální přemapování Dagency #b6ef00 → paleta Zóna Zločinu
   (override v zz-brand.css — vendor style.css se nemění)
   ============================================================================= */

/* Legacy navbar (pokud se někde vykreslí) */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:hover i,
.navbar .navbar-nav .active,
.navbar .navbar-nav .active i,
.nav-scroll .navbar-nav .active,
.nav-scroll .navbar-nav .active i,
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu li:hover {
  color: var(--zz-primary) !important;
}

/* Odkazy mimo vlastní header/footer */
a:hover {
  color: var(--zz-primary);
}

.breadcrumb a:not(.zz-breadcrumb a) {
  color: rgba(252, 252, 252, 0.72) !important;
}

.breadcrumb a:not(.zz-breadcrumb a):hover {
  color: var(--zz-primary) !important;
}

/* Ikony / seznamy / utility */
.list-icon span {
  color: var(--zz-primary) !important;
}

.services .item .icon,
.about .content .list-icon span,
.contact .icon,
.contact-box .item .icon {
  color: var(--zz-primary) !important;
}

/* Portfolio & hover glow */
.portfolio .item .title h4 a:hover,
.portfolio .item:hover .icon,
.video-gallery .item:hover .curv-butn .icon {
  color: var(--zz-primary) !important;
}

.portfolio .item:hover {
  box-shadow: var(--zz-glow-primary);
}

/* Testimonials / recenze */
.testimonials .item > i,
.testimonials .item .text:before {
  color: var(--zz-primary) !important;
}

.testimonials .img-curv .shap-left-top svg path,
.testimonials .img-curv .shap-right-bottom svg path {
  fill: var(--zz-primary) !important;
}

/* Paginace */
.pagination-wrap li a:hover,
.pagination-wrap li.active a {
  background: var(--zz-primary) !important;
  border-color: var(--zz-primary) !important;
  color: var(--zz-text) !important;
}

/* Video play / rotate box (všechny stránky) */
.rotatex .rotate-box .icon,
.video-wrapper .rotate-box .icon,
.video-fullscreen-wrap .rotatex .rotate-box .icon {
  border-color: var(--zz-primary) !important;
  color: var(--zz-primary) !important;
}

.rotatex .rotate-box:hover .icon,
.video-wrapper .rotate-box:hover .icon,
.video-fullscreen-wrap .rotatex .rotate-box:hover .icon {
  background-color: var(--zz-accent) !important;
  border-color: var(--zz-accent) !important;
  color: var(--zz-text) !important;
  box-shadow: var(--zz-glow-accent);
}

/* Lets-talk CTA sekce */
.lets-talk .section-subtitle,
.lets-talk .wrap a:hover,
.lets-talk .wrap a:hover i.icon-right {
  color: var(--zz-primary) !important;
}

.lets-talk .wrap a:hover {
  text-shadow: var(--zz-glow-primary);
}

/* Footer newsletter (Dagency .footer) */
.footer .top .item .newsletter button {
  background: var(--zz-primary) !important;
  border-color: var(--zz-primary) !important;
}

.footer .top .item .newsletter:hover button {
  background: var(--zz-accent) !important;
  border-color: var(--zz-accent) !important;
  color: var(--zz-text) !important;
}

.footer .top .social-icons li:hover,
.footer .bottom p a:hover {
  color: var(--zz-primary) !important;
}

/* Formuláře — focus modrá / fialová */
.form-control:focus,
.form-select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus {
  border-color: var(--zz-primary) !important;
  box-shadow: 0 0 0 0.15rem rgba(30, 154, 209, 0.28) !important;
}

.form-check-input:checked {
  background-color: var(--zz-accent) !important;
  border-color: var(--zz-accent) !important;
}

.form-check-input:focus {
  border-color: var(--zz-primary) !important;
  box-shadow: 0 0 0 0.15rem rgba(145, 40, 209, 0.3) !important;
}

/* Dagency FAQ accordion (mimo .zz-faq-accordion) */
.faqs .accordion-button:not(.collapsed),
.accordion-button:not(.collapsed) {
  background-color: rgba(145, 40, 209, 0.12) !important;
  color: var(--zz-text) !important;
}

.faqs .accordion-button:focus,
.accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(145, 40, 209, 0.32) !important;
  border-color: transparent;
}

/* Blog / post / citace */
.post .quote-icon,
.blog2 .post-cont .category a:hover,
.blog2 .post-cont .calendar a:hover,
.post-prev-next a:hover i {
  color: var(--zz-primary) !important;
}

blockquote {
  border-left-color: var(--zz-accent) !important;
}

/* Modální okno */
.modal-box .head-box h6 {
  color: var(--zz-primary) !important;
}

/* Scrolling ticker (pokud se použije) */
.scrolling span {
  color: var(--zz-muted);
}

/* Kontakt — odeslání */
.contact form button,
.contact-box + .contact form button,
.page-content .contact .button-3 {
  border-color: var(--zz-primary) !important;
}

/* Produktová galerie zoom */
.img-zoom:hover {
  box-shadow: var(--zz-glow-primary);
}

/* View-more / odkazy v portfoliu */
.view-more-btn:hover {
  color: var(--zz-primary) !important;
}

/* Preloader accent (pokud viditelný) */
.preloader .loader-circle-border {
  border-top-color: var(--zz-primary) !important;
}

/* =============================================================================
   ZZ CINEMATIC ATMOSPHERE — Polishing Layer
   Prefixes: .zz-  |  Čistě CSS, žádné těžké libs, pouze GPU-friendly přechody
   ============================================================================= */

/* --- Doplňkové CSS proměnné --- */
:root {
  --zz-grain-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)'/%3E%3C/svg%3E");
  --zz-glow-line: linear-gradient(90deg, transparent 0%, var(--zz-primary) 35%, var(--zz-accent) 65%, transparent 100%);
}

/* =============================================================================
   1. HERO — Cinematic hloubka a asset overlays
   ============================================================================= */

#zz-hero.zz-hero-video {
  overflow: hidden;
}

/* Ambient glow vrstva — modrá vlevo nahoře, fialová vpravo dole */
#zz-hero.zz-hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 4% 6%, rgba(30, 154, 209, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 48% at 96% 92%, rgba(145, 40, 209, 0.18), transparent 52%);
}

/* Spodní přechod do pozadí stránky */
#zz-hero.zz-hero-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, var(--zz-bg) 0%, transparent 100%);
}

/* Obsah (texty, tlačítka) — vertikální centrování v hero */
#zz-hero.zz-hero-video .v-middle {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 6;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

#zz-hero.zz-hero-video .v-middle .row {
  align-items: center;
}

#zz-hero.zz-hero-video .v-middle .rotatex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Dekorativní overlaye */
.zz-hero-overlays {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.zz-hero-deco {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

/* stopy.png — levý dolní roh */
.zz-hero-deco--tracks {
  bottom: 0;
  left: 0;
  width: 320px;
  height: 420px;
  background-image: url('/pics/stopy.png');
  background-position: left bottom;
  opacity: 0.07;
}

/* otisk-modry.png — vpravo nahoře, jemný float */
.zz-hero-deco--prints {
  top: 12%;
  right: 6%;
  width: 160px;
  height: 160px;
  background-image: url('/pics/otisk-modry.png');
  background-position: center;
  opacity: 0.11;
  animation: zz-float-soft 9s ease-in-out infinite;
}

/* otisky.png — vpravo dole */
.zz-hero-deco--otisky {
  bottom: 14%;
  right: 18%;
  width: 200px;
  height: 200px;
  background-image: url('/pics/otisky.png');
  background-position: center;
  opacity: 0.05;
  animation: zz-float-soft 13s ease-in-out infinite reverse;
}

/* Hero H1 — filmové tracking a line-height */
.zz-home .video-fullscreen-wrap h1 {
  line-height: 1.0;
  letter-spacing: 0.04em;
}

/* =============================================================================
   2. SEKČNÍ POZADÍ — Atmosféra, grain, glow
   ============================================================================= */

/* Sekce musí mít position: relative pro pseudoelementy */
.zz-case,
.zz-benefits,
.zz-quote-block,
.zz-showcase,
.zz-home-reviews,
.zz-home-social,
.zz-home-newsletter {
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay — všechny hlavní sekce */
.zz-case::before,
.zz-benefits::before,
.zz-showcase::before,
.zz-home-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--zz-grain-url);
  background-size: 200px 200px;
  opacity: 0.028;
  mix-blend-mode: overlay;
}

/* Obsah sekcí zůstává nad pseudoelementy */
.zz-case > .container,
.zz-benefits > .container,
.zz-showcase > .container,
.zz-home-reviews > .container,
.zz-home-social > .container,
.zz-home-newsletter > .container {
  position: relative;
  z-index: 1;
}

/* Ambient glow — zz-case */
.zz-case::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 7% 12%, rgba(30, 154, 209, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 93% 88%, rgba(145, 40, 209, 0.07), transparent 52%);
}

/* Ambient glow — benefits */
.zz-benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(145, 40, 209, 0.07), transparent 60%);
}

/* Ambient glow — reviews */
.zz-home-reviews::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 50% at 12% 50%, rgba(30, 154, 209, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 48% at 88% 50%, rgba(145, 40, 209, 0.08), transparent 52%);
}

/* Sekční gradient přechody */
.zz-case {
  background: linear-gradient(180deg, var(--zz-bg) 0%, rgba(20, 24, 46, 0.55) 50%, var(--zz-bg) 100%);
}

.zz-benefits {
  background: linear-gradient(180deg, rgba(20, 24, 46, 0.3) 0%, rgba(11, 14, 29, 0.55) 100%);
}

/* pozadi.png jako jemná opakující se textura pozadí */
.zz-home {
  background-image: url('/pics/pozadi.png');
  background-size: 380px auto;
  background-repeat: repeat;
  background-position: top left;
}

/* =============================================================================
   3. PARAMETRY HRY — Ikonické neon outline rozvržení
   ============================================================================= */

/* Nové grid rozvržení řádků s ikonou vlevo */
.zz-case-specs li {
  display: grid;
  grid-template-columns: 2.75rem 1fr auto;
  align-items: center;
  gap: 0 0.85rem;
  transition: background 0.2s ease;
}

.zz-case-specs li:hover {
  background: rgba(30, 154, 209, 0.04);
}

/* Neon outline ikona */
.zz-spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(30, 154, 209, 0.45);
  border-radius: 8px;
  color: var(--zz-primary);
  font-size: 0.9rem;
  background: rgba(30, 154, 209, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.zz-case-specs li:hover .zz-spec-icon {
  border-color: rgba(145, 40, 209, 0.65);
  background: rgba(145, 40, 209, 0.12);
  color: var(--zz-accent);
  box-shadow: 0 0 14px rgba(145, 40, 209, 0.28);
}

/* Vylepšená karta spec listu */
.zz-case-specs {
  border: 1px solid rgba(30, 154, 209, 0.22);
  background: linear-gradient(135deg, rgba(20, 24, 46, 0.82) 0%, rgba(11, 14, 29, 0.62) 100%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(30, 154, 209, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =============================================================================
   4. SEKČNÍ DEKORACE — Asset overlays
   ============================================================================= */

/* spis.png — ambient accent v pravém dolním rohu .zz-case-visual */
.item.zz-case-visual {
  position: relative;
}

.item.zz-case-visual::after {
  content: "";
  position: absolute;
  bottom: -6%;
  right: -8%;
  width: 240px;
  height: 300px;
  background: url('/pics/spis.png') no-repeat center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-6deg);
}

/* nastenka.png — ambient v sekci benefits */
.zz-benefits::before {
  background-image: url('/pics/nastenka.png'), var(--zz-grain-url);
  background-size: cover, 200px 200px;
  background-position: center, top left;
  background-repeat: no-repeat, repeat;
  opacity: 0.025;
}

/* stopy.png — rohová dekorace v sekci showcase */
.zz-showcase::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 200px;
  background: url('/pics/stopy.png') no-repeat right bottom;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* -------------------------------------------------------------------------
   Homepage atmosférické vrstvy
   - světelné akcenty v sekci „První případ" (princip ze zz-games-catalog)
   - dekorativní mlhovina v sekci „Ukázka obsahu hry" (princip ze zz-game-hero__bg)
   Obě jsou pozadí: pointer-events: none, z-index: 0 (obsah sekce má z-index 1).
   ------------------------------------------------------------------------- */

/* První případ — boční světelné kruhy (light leak) */
.zz-case__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zz-case__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.zz-case__glow--blue {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  left: -10%;
  top: 6%;
  background: #1e9ad1;
  opacity: 0.18;
}

.zz-case__glow--violet {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  right: -8%;
  bottom: 4%;
  background: #9128d1;
  opacity: 0.14;
}

/* Co tě v hře čeká — boční světelné kruhy doplňující modré glow otisků */
.zz-benefits__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zz-benefits__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.zz-benefits__glow--blue {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  left: -8%;
  bottom: 8%;
  background: #1e9ad1;
  opacity: 0.14;
}

.zz-benefits__glow--violet {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  right: -8%;
  top: 18%;
  background: #9128d1;
  opacity: 0.16;
}

/* Ukázka obsahu hry — dekorativní mlhovina (pozadi.png přes celou sekci) */
.zz-showcase__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zz-showcase__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.7) brightness(0.85);
}

/* Mobil — efekty zjemnit (čitelnost + performance) */
@media (max-width: 767.98px) {
  .zz-case__glow,
  .zz-benefits__glow {
    filter: blur(60px);
  }

  .zz-case__glow--blue {
    width: min(70vw, 260px);
    height: min(70vw, 260px);
    opacity: 0.12;
  }

  .zz-case__glow--violet {
    width: min(60vw, 220px);
    height: min(60vw, 220px);
    opacity: 0.08;
  }

  .zz-benefits__glow--blue {
    width: min(70vw, 240px);
    height: min(70vw, 240px);
    opacity: 0.10;
  }

  .zz-benefits__glow--violet {
    width: min(70vw, 240px);
    height: min(70vw, 240px);
    opacity: 0.10;
  }

  .zz-showcase__bg-img {
    opacity: 0.12;
  }
}

/* Sekční oddělovač — gradient glow linka */
.line-vr-section {
  position: relative;
  overflow: visible;
}

.line-vr-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 2px;
  background: var(--zz-glow-line);
  box-shadow: 0 0 12px rgba(30, 154, 209, 0.45);
  border-radius: 2px;
  pointer-events: none;
}

/* =============================================================================
   5. KARTY A BLOKY — Depth, glow, hover
   ============================================================================= */

/* Obrázek v sekci prvního případu */
.item.zz-case-visual img {
  border-radius: 14px;
  border: 1px solid rgba(252, 252, 252, 0.1);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(30, 154, 209, 0.08);
  transition: box-shadow 0.4s ease;
}

.item.zz-case-visual img:hover {
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.52),
    0 0 40px rgba(30, 154, 209, 0.18);
}

/* =============================================================================
   6. TYPOGRAFIE — Cinematic hierarchy
   ============================================================================= */

/* Homepage section titles */
.zz-home .section-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: 0.025em;
  margin-bottom: 0.4rem;
}

/* Section subtitle — tight uppercase tracking */
.zz-home .section-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* První případ — dvouřádkový title s důrazem na konkrétní název případu.
   První řádek (set-up) je mírně menší než výchozí section-title,
   druhý řádek (název případu) je dominantní brand-modrý. */
.zz-home .section-title.zz-case-title {
  display: block;
  margin-bottom: 0.6rem;
  /* container neřídí velikost — každý řádek má svoji */
  line-height: 1;
}

.zz-case-title-main,
.zz-case-title-name {
  display: block;
  font-family: "Big Shoulders", sans-serif;
  text-transform: uppercase;
}

.zz-case-title-main {
  font-weight: 500;
  font-size: clamp(1.4rem, 2.55vw, 2.05rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

/* Theme má `.section-title span { color: #1e9ad1 }` — krom scopování přes
   .section-title (zvedá specificitu na (0,2,1)) navíc !important pojistí,
   že nikdo další nepřebije bílou na prvním řádku. */
.section-title .zz-case-title-main {
  color: #fff !important;
}

.zz-case-title-name {
  font-weight: 700;
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  letter-spacing: 0.025em;
  line-height: 1;
  color: var(--zz-primary);
}

/* Mobil — sjednotit, ať nadpis nezabírá moc výšky */
@media (max-width: 767.98px) {
  .zz-case-title-main {
    font-size: clamp(1.2rem, 5.4vw, 1.6rem);
  }

  .zz-case-title-name {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }
}

/* Tělo textu */
.zz-home .about .content p,
.zz-home section > .container p {
  line-height: 1.78;
}

/* =============================================================================
   7. CTA TLAČÍTKA — Glow hover, pohyb
   ============================================================================= */

.zz-home .button-3,
.zz-home .video-fullscreen-wrap .button-3 {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.07em;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.22s ease;
}

.zz-home .button-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, transparent 58%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.zz-home .button-3:hover::before {
  opacity: 1;
}

.zz-home .button-3:hover {
  transform: translateY(-2px);
  border-color: var(--zz-accent) !important;
  background-color: var(--zz-accent) !important;
  box-shadow:
    var(--zz-glow-accent),
    0 0 28px rgba(30, 154, 209, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.zz-home .button-3:active {
  transform: translateY(0);
  box-shadow: none !important;
}

/* =============================================================================
   8. SHOWCASE — Cinematic framing
   ============================================================================= */

.zz-showcase-frame {
  border: 1px solid rgba(30, 154, 209, 0.26);
  border-radius: 16px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(145, 40, 209, 0.10),
    0 0 60px rgba(30, 154, 209, 0.14);
  transition: box-shadow 0.4s ease;
}

.zz-showcase-frame:hover {
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(30, 154, 209, 0.22),
    0 0 80px rgba(30, 154, 209, 0.20);
}

/* Filmové rohové linky */
.zz-showcase-frame::before,
.zz-showcase-frame::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 2;
  pointer-events: none;
}

.zz-showcase-frame::before {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--zz-primary);
  border-left: 2px solid var(--zz-primary);
  border-radius: 2px 0 0 0;
  box-shadow: -2px -2px 10px rgba(30, 154, 209, 0.4);
}

.zz-showcase-frame::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--zz-accent);
  border-right: 2px solid var(--zz-accent);
  border-radius: 0 0 2px 0;
  box-shadow: 2px 2px 10px rgba(145, 40, 209, 0.4);
}

/* Obrázek v showcase — lehká desaturace výchozí */
.zz-showcase-frame img {
  filter: saturate(0.82) contrast(1.06);
  transition: filter 0.4s ease;
}

.zz-showcase-frame:hover img {
  filter: saturate(1.0) contrast(1.0);
}

/* =============================================================================
   9. RECENZE — Hloubka, avatary, hover
   ============================================================================= */

.zz-home-reviews .testimonials .item {
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, rgba(20, 24, 46, 0.88) 0%, rgba(11, 14, 29, 0.72) 100%);
  border: 1px solid rgba(252, 252, 252, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.zz-home-reviews .testimonials .item:hover {
  border-color: rgba(30, 154, 209, 0.32);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(30, 154, 209, 0.10);
  transform: translateY(-3px);
}

/* Uvozovky */
.zz-home-reviews .testimonials .item > i.fa-quote-left {
  font-size: 1.65rem;
  color: var(--zz-primary);
  opacity: 0.55;
  margin-bottom: 0.65rem;
  display: block;
}

/* Text recenze */
.zz-home-reviews .testimonials .item .text p {
  font-size: 1rem;
  line-height: 1.78;
  font-style: italic;
  color: rgba(252, 252, 252, 0.88);
}

/* Avatar kruh */
.zz-home-reviews .testimonials .img-curv .img {
  border: 2px solid rgba(30, 154, 209, 0.38);
  box-shadow: 0 0 16px rgba(30, 154, 209, 0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background: var(--zz-bg-elevated);
}

.zz-home-reviews .testimonials .img-curv .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.zz-home-reviews .testimonials .item:hover .img-curv .img {
  border-color: rgba(30, 154, 209, 0.65);
  box-shadow: 0 0 24px rgba(30, 154, 209, 0.3);
}

/* Jméno recenzenta */
.zz-home-reviews .testimonials .info .ml-30 h6 {
  font-family: "Big Shoulders", sans-serif !important;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--zz-text) !important;
  margin-bottom: 0.15rem;
}

/* Role recenzenta */
.zz-home-reviews .testimonials .info .ml-30 p {
  font-size: 0.78rem;
  color: var(--zz-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

/* =============================================================================
   10. FOOTER — Premium spacing a glow akcenty
   ============================================================================= */

.zz-footer {
  position: relative;
  overflow: hidden;
}

/* Gradient glow linka nahoře */
.zz-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--zz-glow-line);
  box-shadow: 0 0 16px rgba(30, 154, 209, 0.4);
  pointer-events: none;
  z-index: 1;
}

/* Jemný ambient glow ve spodku footeru */
.zz-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 180px;
  background: radial-gradient(ellipse 80% 65% at 50% 100%, rgba(145, 40, 209, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Premium spacing */
.zz-footer__top {
  padding: 4.5rem 0 3.25rem;
}

/* Footer social link hover glow */
.zz-footer a.zz-footer__social-link:hover {
  box-shadow: 0 0 16px rgba(30, 154, 209, 0.28);
}

/* =============================================================================
   11. CITÁT — Filmová karta
   ============================================================================= */

.zz-quote-block {
  background: linear-gradient(135deg, rgba(145, 40, 209, 0.09) 0%, rgba(30, 154, 209, 0.06) 100%);
}

/* otisky.png ambient v pravém rohu bloku */
.zz-quote-block::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: url('/pics/otisky.png') no-repeat center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.zz-quote-block > .container {
  position: relative;
  z-index: 1;
}

.zz-quote {
  border-left: 3px solid var(--zz-accent);
  padding: 1.75rem 2.25rem;
  background: rgba(20, 24, 46, 0.35);
  border-radius: 0 14px 14px 0;
  box-shadow:
    inset 4px 0 0 var(--zz-accent),
    0 8px 32px rgba(0, 0, 0, 0.22);
}

.zz-quote p {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   Brand statement — varianta .zz-quote bez karty, jen se svislou fialovou linkou.
   Používá se pro hero-style sdělení (ne klasický citát s uvozovkami).
   ------------------------------------------------------------------------- */

.zz-quote.zz-statement {
  margin: 0 auto;
  max-width: 56rem;
  padding: 0.75rem 1.25rem 0.75rem 1.75rem;
  background: transparent;
  border-left: 5px solid var(--zz-accent);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.zz-quote.zz-statement .zz-statement__lead {
  margin: 0 0 1rem;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--zz-accent);
  font-style: normal;
}

.zz-quote.zz-statement .zz-statement__body {
  margin: 0;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.55rem); /* desktop max ≈ 25 px (+2.6 px) */
  line-height: 1.55;
  color: var(--zz-text);
}

.zz-quote.zz-statement .zz-statement__accent {
  color: var(--zz-accent);
  font-style: italic;
  font-weight: 600;
}

/* Mobil — zmenšit, ať se text vleze, linka zůstává vlevo */
@media (max-width: 767.98px) {
  .zz-quote.zz-statement {
    padding: 0.5rem 0.75rem 0.5rem 1.15rem;
    border-left-width: 4px;
  }

  .zz-quote.zz-statement .zz-statement__lead {
    font-size: clamp(1.1rem, 5.8vw, 1.55rem);
    margin-bottom: 0.6rem;
  }

  .zz-quote.zz-statement .zz-statement__body {
    font-size: clamp(0.95rem, 4.2vw, 1.1rem);
    line-height: 1.5;
  }
}

/* =============================================================================
   12. NEWSLETTER — Vylepšení
   ============================================================================= */

.zz-home-newsletter {
  background: linear-gradient(135deg, rgba(20, 24, 46, 0.72) 0%, rgba(11, 14, 29, 0.52) 100%);
  border-top: 1px solid rgba(30, 154, 209, 0.12);
  border-bottom: 1px solid rgba(145, 40, 209, 0.10);
}

.zz-newsletter-inline input:focus {
  border-color: rgba(30, 154, 209, 0.58) !important;
  box-shadow:
    0 0 0 3px rgba(30, 154, 209, 0.12),
    0 0 20px rgba(30, 154, 209, 0.14) !important;
}

/* =============================================================================
   13. SOCIÁLNÍ SÍTĚ — Ambient glow
   ============================================================================= */

.zz-home-social::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(30, 154, 209, 0.07), transparent 65%);
}

/* =============================================================================
   14. KEYFRAMES
   ============================================================================= */

@keyframes zz-float-soft {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-7px) rotate(1deg);
  }
  66% {
    transform: translateY(-3px) rotate(-0.5deg);
  }
}

@keyframes zz-glow-pulse {
  0%, 100% {
    opacity: 0.38;
  }
  50% {
    opacity: 0.65;
  }
}

/* =============================================================================
   15. RESPONSIVITA — Bezpečnostní override
   ============================================================================= */

@media (max-width: 991.98px) {
  #zz-hero.zz-hero-video .v-middle {
    top: 50%;
    transform: translateY(-50%);
  }

  #zz-hero.zz-hero-video .v-middle .row > [class*="col-"]:first-child {
    text-align: center;
  }

  #zz-hero.zz-hero-video .v-middle .zz-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .zz-hero-deco--tracks {
    width: 220px;
    height: 300px;
    opacity: 0.05;
  }

  .zz-hero-deco--prints {
    width: 120px;
    height: 120px;
  }

  .zz-hero-deco--otisky {
    display: none;
  }

  .item.zz-case-visual::after {
    display: none;
  }

  .zz-home-social .zz-social-links {
    gap: 2rem 2.25rem;
  }
}

@media (max-width: 767.98px) {
  .zz-hero-deco--tracks {
    width: 150px;
    height: 200px;
    opacity: 0.04;
  }

  .zz-hero-deco--prints {
    display: none;
  }

  .zz-showcase::after,
  .zz-quote-block::after {
    display: none;
  }

  .zz-case-specs li {
    grid-template-columns: 2.25rem 1fr auto;
    gap: 0 0.6rem;
  }

  .zz-spec-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.82rem;
  }

  .zz-home .section-title {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }

  .zz-quote {
    padding: 1.25rem 1.35rem;
  }

  .zz-footer__top {
    padding: 3rem 0 2.5rem;
  }

  .item.zz-case-visual img {
    width: 100%;
    max-height: min(68vh, 400px);
    object-fit: contain;
    object-position: center bottom;
  }

  .zz-showcase-frame img {
    width: 100%;
    max-height: min(52vh, 320px);
    object-fit: cover;
    object-position: center top;
  }

  .zz-showcase-tag {
    font-size: 0.68rem;
    padding: 0.3rem 0.55rem;
  }

  .zz-home-social .zz-social-link {
    width: 10rem;
    padding: 0.5rem 0.75rem;
  }

  .zz-home-social .zz-social-link__icon {
    height: clamp(3rem, 14vw, 3.75rem);
    font-size: clamp(3rem, 14vw, 3.75rem);
  }

  .zz-home-reviews .testimonials .item {
    padding: 1.5rem 1.25rem;
  }

  .zz-home-reviews .testimonials .item .text p {
    font-size: 0.95rem;
  }
}

/* Respektuje preferenci bez animací */
@media (prefers-reduced-motion: reduce) {
  .zz-hero-deco--prints,
  .zz-hero-deco--otisky {
    animation: none;
  }

  .zz-home-reviews .testimonials .item:hover,
  .zz-home .button-3:hover,
  .item.zz-case-visual img:hover {
    transform: none;
  }

  .zz-game-hero__spis {
    animation: none;
  }
}

/* --- Detail hry (cinematic) --- */

.zz-game-detail-page {
  background: #0B0E1D;
  color: #fcfcfc;
  overflow-x: hidden;
}

.zz-game-section-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zz-game-section-title span {
  color: #1e9ad1;
}

.zz-game-section-title--center {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Hero */
.zz-game-hero {
  position: relative;
  padding: 1.5rem 0 3rem;
  overflow: hidden;
}

.zz-game-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.zz-game-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.zz-game-hero__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.zz-game-hero__deco--otisky {
  left: 0;
  bottom: 5%;
  max-width: 280px;
}

.zz-game-hero__deco--stopy {
  right: 8%;
  top: 20%;
  max-width: 160px;
}

.zz-game-hero__deco--fp {
  right: -2%;
  top: 8%;
  max-width: 140px;
  opacity: 0.12;
}

.zz-game-hero__deco--fb {
  left: 35%;
  bottom: 0;
  max-width: 120px;
  opacity: 0.1;
}

.zz-game-hero__inner {
  position: relative;
  z-index: 1;
}

.zz-game-hero__breadcrumb {
  margin-bottom: 1rem;
}

.zz-game-hero__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zz-game-detail-page .zz-game-hero__breadcrumb a {
  color: rgba(231, 231, 231, 0.65);
  text-decoration: none;
}

.zz-game-detail-page .zz-game-hero__breadcrumb a:hover {
  color: #1e9ad1;
}

.zz-game-detail-page .zz-game-hero__breadcrumb .breadcrumb-item.active {
  color: #e7e7e7;
}

.zz-game-detail-page .zz-game-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(231, 231, 231, 0.35);
}

.zz-game-hero__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e9ad1;
}

.zz-game-hero__title {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zz-game-hero__teaser {
  margin: 0 0 1rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(145, 40, 209, 0.65);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: #e7e7e7;
}

.zz-game-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(231, 231, 231, 0.88);
  max-width: 34rem;
}

.zz-game-hero__lead p:last-child {
  margin-bottom: 0;
}

.zz-game-hero__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 0.25rem;
}

.zz-game-detail-page .zz-game-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: rgba(11, 14, 29, 0.78);
  border: 1px solid rgba(30, 154, 209, 0.35);
  box-shadow:
    0 0 0 1px rgba(145, 40, 209, 0.12),
    0 10px 32px rgba(30, 154, 209, 0.18),
    0 4px 20px rgba(145, 40, 209, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.zz-game-detail-page .zz-game-price__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1e9ad1;
  line-height: 1.3;
}

.zz-game-detail-page .zz-game-price__value {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: #fcfcfc;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.zz-game-detail-page .zz-game-price__value--pending {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: rgba(231, 231, 231, 0.82);
  white-space: normal;
  line-height: 1.25;
}

.zz-game-detail-page .zz-game-price--hero {
  flex-shrink: 0;
  min-width: min(100%, 11.5rem);
  padding: 0.85rem 1.15rem;
  gap: 0.1rem;
}

.zz-game-detail-page .zz-game-price--hero .zz-game-price__label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.zz-game-detail-page .zz-game-price--hero .zz-game-price__value {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

.zz-game-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  align-items: center;
  align-self: center;
  flex: 1 1 auto;
  min-width: 0;
}

.zz-game-params-price {
  margin: 0.25rem 0 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(30, 154, 209, 0.22);
}

.zz-game-detail-page .zz-game-price--params {
  text-align: center;
  padding: 1rem 1.1rem;
  background:
    linear-gradient(145deg, rgba(30, 154, 209, 0.1) 0%, rgba(11, 14, 29, 0.92) 45%, rgba(145, 40, 209, 0.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(252, 252, 252, 0.06),
    0 12px 36px rgba(30, 154, 209, 0.2),
    0 0 24px rgba(145, 40, 209, 0.15);
}

.zz-game-detail-page .zz-game-price--params .zz-game-price__value {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.zz-game-modal__intro strong {
  color: #fcfcfc;
  font-weight: 600;
}

.zz-game-btn-preorder,
.zz-game-btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 !important;
  padding: 13px 28px !important;
  font-size: 16px !important;
  border: none;
  cursor: pointer;
}

.zz-game-btn-preorder {
  box-shadow:
    0 0 0 1px rgba(30, 154, 209, 0.35),
    0 8px 28px rgba(30, 154, 209, 0.3);
}

.zz-game-btn-preorder:hover {
  box-shadow:
    0 0 0 1px rgba(252, 252, 252, 0.15),
    0 12px 36px rgba(30, 154, 209, 0.45);
}

.zz-game-btn-demo {
  background: transparent !important;
  border: 1px solid rgba(30, 154, 209, 0.55) !important;
  color: #fcfcfc !important;
}

.zz-game-btn-demo:hover {
  border-color: #9128d1 !important;
  color: #fcfcfc !important;
  background: rgba(145, 40, 209, 0.12) !important;
}

.zz-game-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: visible;
}

.zz-game-hero__visual-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 80%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 154, 209, 0.25) 0%, rgba(145, 40, 209, 0.08) 45%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
}

.zz-game-hero__spis {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 520px);
  height: auto;
  max-height: min(58vh, 520px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.55));
  animation: zz-game-spis-float 5.5s ease-in-out infinite;
}

@keyframes zz-game-spis-float {
  0%,
  100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* O hře */
.zz-game-about {
  position: relative;
  padding: 3rem 0 4rem;
}

.zz-game-about__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.zz-game-about__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom:15px;
}

.zz-game-about__text {
  margin-bottom: 1.5rem;
  color: rgba(231, 231, 231, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.zz-game-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zz-game-features__item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.zz-game-features__item:last-child {
  margin-bottom: 0;
}

.zz-game-features__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  color: #1e9ad1;
  font-size: 0.95rem;
  background: rgba(30, 154, 209, 0.1);
}

.zz-game-features__body strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  color: #fcfcfc;
}

.zz-game-features__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(231, 231, 231, 0.75);
}

/* Parametry */
.zz-game-params {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(11, 14, 29, 0.85);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.zz-game-params__head {
  padding: 0.85rem 1rem;
  background: #1e9ad1;
}

.zz-game-params__title {
  margin: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0B0E1D;
  text-align: center;
}

.zz-game-params__body {
  padding: 1.15rem 1rem 1.25rem;
}

.zz-game-params__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.zz-game-params__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.06);
}

.zz-game-params__row:last-child {
  border-bottom: none;
}

.zz-game-params .zz-spec-icon {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 0.78rem;
  border: none;
  box-shadow: none;
  background: rgba(30, 154, 209, 0.12);
}

.zz-game-params__label {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(231, 231, 231, 0.65);
}

.zz-game-params__val {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fcfcfc;
  text-align: right;
}

.zz-game-params__cta {
  width: 100%;
  background: #9128d1 !important;
  box-shadow: 0 8px 24px rgba(145, 40, 209, 0.35) !important;
}

.zz-game-params__cta:hover {
  box-shadow: 0 12px 32px rgba(145, 40, 209, 0.45) !important;
}

/* Co je v krabici */
.zz-game-box {
  position: relative;
  padding: 2rem 0 4rem;
}

.zz-game-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(30, 154, 209, 0.08), transparent 60%);
}

.zz-game-box__item {
  height: 100%;
  padding: 1.35rem 1rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(20, 24, 46, 0.55);
  transition: background 0.25s ease, transform 0.25s ease;
}

.zz-game-box__item:hover {
  background: rgba(30, 154, 209, 0.08);
  transform: translateY(-2px);
}

.zz-game-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #1e9ad1;
  background: rgba(30, 154, 209, 0.12);
}

.zz-game-box__name {
  margin: 0 0 0.35rem;
  font-family: "Big Shoulders", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fcfcfc;
}

.zz-game-box__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(231, 231, 231, 0.7);
}

/* Závěrečná CTA */
.zz-game-cta-final {
  padding: 1rem 0 5rem;
  text-align: center;
}

.zz-game-cta-final__deco {
  display: block;
  margin: 0 auto 1rem;
  pointer-events: none;
}

.zz-game-cta-final__deco img {
  width: 100px;
  height: auto;
  opacity: 0.35;
  object-fit: contain;
  margin-bottom: -15px;
}

.zz-game-cta-final__title {
  font-family: "Big Shoulders", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 1.5rem;
  color: #fcfcfc;
}

.zz-game-cta-final__title span {
  color: #1e9ad1;
}

/* Modal předobjednávky */
.zz-game-modal .modal-content {
  border: 1px solid rgba(30, 154, 209, 0.35);
  border-radius: 14px;
  background: #0B0E1D;
  color: #fcfcfc;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.zz-game-modal__header {
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
  padding: 1.15rem 1.25rem;
}

.zz-game-modal__header .modal-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fcfcfc;
}

.zz-game-modal__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.zz-game-modal__intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(231, 231, 231, 0.85);
}

.zz-game-modal__input {
  background: rgba(20, 24, 46, 0.8) !important;
  border: 1px solid rgba(231, 231, 231, 0.15) !important;
  color: #fcfcfc !important;
  border-radius: 8px;
}

.zz-game-modal__input:focus {
  border-color: #1e9ad1 !important;
  box-shadow: 0 0 0 0.15rem rgba(30, 154, 209, 0.25) !important;
}

.zz-game-modal__form .form-label {
  color: #e7e7e7;
  font-size: 0.88rem;
}

.zz-game-modal__form .form-check-label {
  font-size: 0.85rem;
  color: rgba(231, 231, 231, 0.8);
}

.zz-game-modal__submit {
  margin: 0 !important;
}

@media (max-width: 991.98px) {
  .zz-game-hero {
    padding-top: 1rem;
  }

  .zz-game-hero__visual {
    min-height: 220px;
    margin-top: 0.5rem;
  }

  .zz-game-hero__spis {
    max-height: 320px;
    animation: none;
  }

  .zz-game-params {
    margin-top: 0.5rem;
  }

  .zz-game-about {
    padding-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .zz-game-hero__buy {
    flex-direction: column;
    align-items: stretch;
  }

  .zz-game-detail-page .zz-game-price--hero {
    width: 100%;
    min-width: 0;
  }

  .zz-game-detail-page .zz-game-price__value {
    white-space: normal;
  }

  .zz-game-hero__actions {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    align-self: stretch;
  }

  .zz-game-btn-preorder,
  .zz-game-btn-demo {
    width: 100%;
  }

  .zz-game-params__row {
    flex-wrap: wrap;
  }

  .zz-game-params__val {
    width: 100%;
    padding-left: 2.5rem;
    text-align: left;
  }
}
