/* =============================================================
 * Powerprint header / nav / search / cart — clean rewrite
 * Full-width bands, inner content constrained to 1400px.
 * ============================================================= */
/* Základ zděděný z produkce (Porto): body = Poppins, line-height 22px
   (absolutní — dědí se i do větších textů, např. titulky karet mají na
   produkci computed lh 22px). Hyvä/Tailwind má ui-sans-serif a lh 1.5,
   takže vše bez explicitního font-family/line-height (chipy v hlavičce,
   util lišta, footer) by jelo v systémovém fontu a s jiným řádkováním. */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 22px;
}
.cms-index-index .page-main,
.cms-home .page-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.cms-index-index .columns .column.main,
.cms-home .columns .column.main {
  padding-bottom: 0;
}
.cms-index-index .page-wrapper,
.cms-home .page-wrapper,
.cms-index-index .columns,
.cms-home .columns,
.cms-index-index .column.main,
.cms-home .column.main {
  background: #fff;
}
html body.cms-index-index,
html body.cms-home {
  background: #fff;
}
.pp-home {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
}
.pp-home .pp-hero__title,
.pp-home .pp-section-title,
.pp-home .pp-shop__title,
.pp-home .pp-card__title,
.pp-home .pp-case__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}
.pp-home .pp-hero,
.pp-home .pp-bento,
.pp-home .pp-shop,
.pp-home .pp-process__row,
.pp-home .pp-cases__grid,
.pp-home .pp-quote,
.pp-home .pp-faq__list,
.pp-home .pp-reviews__wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.pp-home h1,
.pp-home h2,
.pp-home h3,
.pp-home p {
  margin: 0;
}
.pp-home .pp-blue {
  color: #0b6eca;
}
.pp-home .pp-section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;
}
.pp-home .pp-section-title--left {
  text-align: left;
  max-width: 1200px;
  padding: 0 20px;
}
.pp-home .pp-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 40px 20px 48px;
}
.pp-home .pp-hero__text {
  max-width: 800px;
}
.pp-home .pp-hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.pp-home .pp-hero__stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}
.pp-home .pp-hero__trust strong {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.pp-home .pp-hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.pp-home .pp-hero__title .pp-blue {
  display: block;
}
.pp-home .pp-hero__lead {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}
.pp-home .pp-hero__lead--strong {
  font-weight: 600;
  margin-top: 4px;
}
.pp-home .pp-hero__contact {
  display: flex;
  gap: 28px;
}
.pp-home .pp-hero__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #444;
}
.pp-home .pp-hero__contact-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.pp-home .pp-hero__contact-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.pp-home .pp-hero__contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}
.pp-home .pp-hero__contact-value {
  font-weight: 700;
  font-size: 18px;
}
.pp-home .pp-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 20px;
  padding: 0 20px;
}
.pp-home .pp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f5f5f7;
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.pp-home .pp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #066ac7;
  clip-path: circle(0% at 0% 100%);
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-home .pp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(11, 110, 202, 0.12);
  color: #fff;
}
.pp-home .pp-card:hover::before {
  clip-path: circle(150% at 0% 100%);
}
.pp-home .pp-card__title,
.pp-home .pp-card__desc,
.pp-home .pp-card__cta {
  position: relative;
  z-index: 1;
}
.pp-home .pp-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.pp-home .pp-card__desc {
  font-size: 15px;
  opacity: 0.85;
}
.pp-home .pp-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pp-home .pp-card__cta svg {
  width: 18px;
  height: 18px;
}
.pp-home .pp-card__img {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 140px;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-home .pp-card__img--velky {
  width: 380px;
  bottom: 70px;
}
.pp-home .pp-card__img--knihy {
  width: 130px;
  right: 30px;
  bottom: 60px;
}
.pp-home .pp-card:hover .pp-home .pp-card__img {
  transform: rotate(4deg) scale(1.06);
}
.pp-home .pp-card:hover .pp-card__title {
  color: #fff;
}
.pp-home .pp-card--xl {
  grid-column: span 2;
  grid-row: span 2;
}
.pp-home .pp-card--xl .pp-card__title {
  font-size: 28px;
}
.pp-home .pp-marquee {
  width: 100%;
  overflow: hidden;
  padding: 36px 0 24px;
  margin: 24px 0 40px;
}
.pp-home .pp-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: pp-marquee 34s linear infinite;
}
.pp-home .pp-marquee__track img {
  height: 40px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.5;
  flex-shrink: 0;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.pp-home .pp-marquee__track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.pp-home .pp-marquee:hover .pp-home .pp-marquee__track {
  animation-play-state: paused;
}
.pp-home .pp-shop {
  padding: 16px 20px 56px;
}
.pp-home .pp-shop__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pp-home .pp-shop__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 8px;
}
.pp-home .pp-shop__head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.pp-home .pp-shop__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.005em;
}
.pp-home .pp-shop__tabs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.pp-home .pp-shop__tab {
  cursor: pointer;
  padding-bottom: 8px;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.pp-home .pp-shop__link {
  display: none;
  color: #005ab0;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.pp-home .pp-shop__panel {
  display: none;
  margin-top: 20px;
}
.pp-home .pp-shop__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pp-home .pp-shop__grid--slider {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.pp-home .pp-shop__grid--slider .pp-product {
  flex: 0 0 calc((100% - 4 * 16px) / 5);
  scroll-snap-align: start;
}
.pp-home #pp-tab-tisk:checked ~ .pp-shop__head .pp-shop__tabs label[for="pp-tab-tisk"],
.pp-home #pp-tab-knihy:checked ~ .pp-shop__head .pp-shop__tabs label[for="pp-tab-knihy"],
.pp-home #pp-tab-velko:checked ~ .pp-shop__head .pp-shop__tabs label[for="pp-tab-velko"],
.pp-home #pp-tab-foto:checked ~ .pp-shop__head .pp-shop__tabs label[for="pp-tab-foto"] {
  color: #222;
  border-bottom-color: #0b6eca;
}
.pp-home #pp-tab-tisk:checked ~ .pp-shop__panel[data-pp-panel="tisk"],
.pp-home #pp-tab-knihy:checked ~ .pp-shop__panel[data-pp-panel="knihy"],
.pp-home #pp-tab-velko:checked ~ .pp-shop__panel[data-pp-panel="velko"],
.pp-home #pp-tab-foto:checked ~ .pp-shop__panel[data-pp-panel="foto"] {
  display: block;
}
.pp-home #pp-tab-tisk:checked ~ .pp-shop__head .pp-shop__link[data-pp-link="tisk"],
.pp-home #pp-tab-knihy:checked ~ .pp-shop__head .pp-shop__link[data-pp-link="knihy"],
.pp-home #pp-tab-velko:checked ~ .pp-shop__head .pp-shop__link[data-pp-link="velko"],
.pp-home #pp-tab-foto:checked ~ .pp-shop__head .pp-shop__link[data-pp-link="foto"] {
  display: inline;
}
.pp-home .pp-product {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.pp-home .pp-product:hover {
  transform: translateY(-5px);
}
.pp-home .pp-product__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin-bottom: 14px;
  background: #f2f2f2;
  border-radius: 12px;
  overflow: hidden;
}
.pp-home .pp-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-home .pp-product__name {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0;
}
.pp-home .pp-product__price {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.pp-home .pp-process {
  padding: 72px 20px 80px;
  margin-bottom: 48px;
}
.pp-home .pp-process .pp-section-title {
  margin-bottom: 36px;
}
.pp-home .pp-process__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 50px;
}
.pp-home .pp-process__step {
  display: flex;
  gap: 16px;
  flex: 1;
  min-width: 220px;
  max-width: 252px;
}
.pp-home .pp-process__num {
  font-size: 56px;
  font-weight: 600;
  color: #0b6eca;
  line-height: 64px;
  flex-shrink: 0;
}
.pp-home .pp-process__text {
  display: flex;
  flex-direction: column;
}
.pp-home .pp-process__step-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.pp-home .pp-process__step-desc {
  margin-top: 5px;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}
.pp-home .pp-cases {
  padding: 40px 20px 24px;
}
.pp-home .pp-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pp-home .pp-case__img {
  display: block;
  height: 290px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9eef6, #dfe6f2);
  margin-bottom: 18px;
  overflow: hidden;
}
.pp-home .pp-case__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-home .pp-case__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pp-home .pp-case__desc {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}
.pp-home .pp-quote {
  text-align: center;
  padding: 32px 60px 56px;
}
.pp-home .pp-quote__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.3px;
}
.pp-home .pp-quote__author {
  display: block;
  margin-top: 24px;
  font-weight: 700;
  font-size: 16px;
}
.pp-home .pp-reviews {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #fff 0%, #eef3fb 100%);
}
.pp-home .pp-reviews__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}
.pp-home .pp-reviews__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scroll-padding-left: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pp-home .pp-reviews__track::-webkit-scrollbar {
  display: none;
}
.pp-home .pp-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  color: #0b6eca;
  font-size: 30px;
  font-weight: 700;
  line-height: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.pp-home .pp-reviews__nav:hover {
  background: #0b6eca;
  color: #fff;
  transform: scale(1.08);
}
.pp-home .pp-review {
  flex: 0 0 460px;
  max-width: 80vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 42px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.pp-home .pp-review__stars {
  color: #f5a623;
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 24px;
}
.pp-home .pp-review__text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.pp-home .pp-review__name {
  margin-top: 24px;
  font-weight: 700;
  font-size: 15px;
}
.pp-home .pp-faq {
  padding: 48px 0 72px;
}
.pp-home .pp-faq__list {
  padding: 0 20px;
}
.pp-home .pp-faq__item {
  border-bottom: 1px solid #e6e6e6;
}
.pp-home .pp-faq__item[open] {
  background: #fafbfd;
}
.pp-home .pp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.pp-home .pp-faq__q::-webkit-details-marker {
  display: none;
}
.pp-home .pp-faq__q::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  transition: transform 0.2s ease;
}
.pp-home .pp-faq__item[open] .pp-home .pp-faq__q::after {
  content: '\2212';
}
.pp-home .pp-faq__a {
  padding: 0 30px 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}
@keyframes pp-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .pp-home .pp-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 28px 20px 36px;
  }
  .pp-home .pp-hero__text {
    max-width: none;
  }
  .pp-home .pp-hero__trust {
    justify-content: center;
  }
  .pp-home .pp-hero__title {
    font-size: 40px;
    letter-spacing: -0.5px;
  }
  .pp-home .pp-hero__lead {
    font-size: 16px;
  }
  .pp-home .pp-hero__contact {
    justify-content: center;
    gap: 36px;
  }
  .pp-home .pp-hero__contact-item {
    text-align: left;
  }
  .pp-home .pp-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .pp-home .pp-card {
    min-height: 200px;
    border-radius: 14px;
  }
  .pp-home .pp-card::before {
    display: none;
  }
  .pp-home .pp-card:hover {
    transform: none;
    box-shadow: none;
    color: #1a1a1a;
  }
  .pp-home .pp-card--xl {
    grid-column: span 2;
    grid-row: auto;
    min-height: 230px;
  }
  .pp-home .pp-card__img {
    position: static;
    align-self: flex-end;
    margin-top: auto;
    width: auto;
    max-width: 48%;
    max-height: 120px;
    object-fit: contain;
    right: auto;
    bottom: auto;
  }
  .pp-home .pp-card__img--velky {
    max-width: 58%;
    max-height: 150px;
  }
  .pp-home .pp-card__img--knihy,
  .pp-home .pp-card__img--def {
    display: none;
  }
  .pp-home .pp-shop__head {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .pp-home .pp-shop__link {
    display: none;
  }
  .pp-home .pp-shop__tabs {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .pp-home .pp-shop__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .pp-home .pp-product__img {
    height: 180px;
  }
  .pp-home .pp-process__row {
    gap: 28px 24px;
  }
  .pp-home .pp-process__step {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
  }
  .pp-home .pp-process__num {
    font-size: 38px;
  }
  .pp-home .pp-cases__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pp-home .pp-case__img {
    height: 320px;
  }
  .pp-home .pp-quote {
    padding: 16px 8px 40px;
  }
  .pp-home .pp-quote__text {
    font-size: 22px;
  }
  .pp-home .pp-review {
    flex-basis: 300px;
    padding: 32px 24px;
  }
  .pp-home .pp-reviews__nav {
    display: none;
  }
  .pp-home .pp-section-title {
    font-size: 26px;
  }
  .pp-home .pp-faq__q {
    font-size: 16px;
    padding: 22px 16px;
  }
  .pp-home .pp-faq__a {
    padding: 0 16px 22px;
  }
  .pp-home .pp-section-title--left {
    padding: 0 16px;
  }
}
@media (max-width: 560px) {
  .pp-home .pp-hero__title {
    font-size: 32px;
    line-height: 52px;
  }
  .pp-home .pp-bento__track img,
  .pp-home .pp-marquee__track img {
    height: 30px;
    margin: 0 24px;
  }
  .pp-home .pp-shop__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }
  .pp-home .pp-shop__tab {
    justify-self: start;
    width: fit-content;
    font-size: 15px;
    padding-bottom: 6px;
  }
}
/* Oblíbené produkty na mobilu = vodorovný slider jako výpis kategorie (.pp-crow):
   ~2 karty vidět + náznak, scroll-snap, skrytý scrollbar, scroll až k okraji. */
@media (max-width: 767px) {
  .pp-home .pp-shop__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
    scroll-padding-left: 16px;
  }
  .pp-home .pp-shop__grid::-webkit-scrollbar {
    display: none;
  }
  .pp-home .pp-shop__grid .pp-product {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
}
html body.catalog-category-view {
  background: #fff;
}
.catalog-category-view .page-wrapper,
.catalog-category-view .columns,
.catalog-category-view .column.main {
  background: #fff;
}
.catalog-category-view .page-main {
  max-width: 1280px;
  margin: 0 auto;
}
.catalog-category-view .columns {
  display: block;
}
.catalog-category-view .column.main {
  width: 100%;
  max-width: none;
  float: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.catalog-category-view .sidebar.sidebar-main,
.catalog-category-view .sidebar.sidebar-additional {
  display: none;
}
.catalog-category-view .breadcrumbs {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}
.catalog-category-view .breadcrumbs .items {
  font-size: 13px;
  line-height: 20px;
  color: #333;
}
.catalog-category-view .breadcrumbs a {
  color: #333;
  text-decoration: none;
}
.catalog-category-view .breadcrumbs a:hover {
  color: #0b6eca;
}
.catalog-category-view .breadcrumbs .item strong {
  color: #333;
  font-weight: 600;
}
.catalog-category-view .breadcrumbs .item:not(:last-child):after {
  color: #333;
}
.catalog-category-view .page-title-wrapper {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 0;
}
.catalog-category-view .page-title-wrapper .page-title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 48px;
  line-height: 72px;
  font-weight: 700;
  letter-spacing: -0.48px;
  margin: 0;
}
.catalog-category-view .page-main .page-title-wrapper .page-title,
.catalog-category-view .page-main .page-title-wrapper .page-title .base {
  color: #333;
}
.catalog-category-view #maincontent .page-title span {
  color: #333;
}
.catalog-category-view .category-description {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}
.catalog-category-view .category-description p {
  margin: 0 0 4px;
}
.catalog-category-view .pp-cat-rule {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 20px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0) 0%, rgba(231, 231, 236, 0.6) 12%, rgba(231, 231, 236, 0.6) 88%, rgba(51, 51, 51, 0) 100%) content-box;
}
.catalog-category-view .custom-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px 16px;
  max-width: 1200px;
  margin: 72px auto 10px;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}
.catalog-category-view .custom-product-grid .product-item {
  border: 0;
  padding: 0;
  text-align: left;
  margin: 0;
  width: auto;
  transition: transform 0.3s ease;
}
.catalog-category-view .custom-product-grid .product-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border-color: transparent;
}
.catalog-category-view .custom-product-grid .product-item:hover img {
  transform: none;
}
.catalog-category-view .custom-product-grid .product-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.catalog-category-view .custom-product-grid .product-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin-bottom: 14px;
  background: #f2f2f2;
  border-radius: 12px;
  overflow: hidden;
}
.catalog-category-view .custom-product-grid .product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-category-view .custom-product-grid .product-image-container--empty {
  background: #b3a6e0;
}
.catalog-category-view .custom-product-grid .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border-radius: 20px;
  background: #0b6eca;
  color: #fff;
}
.catalog-category-view .custom-product-grid .product-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 6px 0;
  color: #333;
}
.pp-cat-extra {
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-top: 56px;
  padding: 50px 0;
  background: #fff;
}
.pp-cat-extra h2,
.pp-cat-extra h3,
.pp-cat-extra p {
  margin: 0;
}
.pp-cat-extra__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.pp-cat-extra__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.36px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.pp-cat-extra__lead {
  max-width: 670px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  color: #808080;
}
.pp-cat-extra__hero {
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 0 20px;
}
.pp-cat-extra__hero img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
}
.pp-cat-extra__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1150px;
  margin: 80px auto 0;
  padding: 0 20px;
}
.pp-cat-extra__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 24px;
}
.pp-cat-extra__stat:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.pp-cat-extra__stat-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.36px;
  color: #333;
}
.pp-cat-extra__stat-num span {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: #0b6eca;
}
.pp-cat-extra__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #808080;
}
.pp-cat-cta {
  position: relative;
  margin-top: 30px;
  background: #0b6eca;
  padding: 72px 80px 104px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}
.pp-cat-cta h2,
.pp-cat-cta p {
  margin: 0;
}
.pp-cat-cta__card {
  position: relative;
  z-index: 1;
  max-width: 1297px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff 33%, #eaeaea 100%);
  border-radius: 24px;
  padding: 56px;
  padding-bottom: 150px;
  overflow: visible;
}
.pp-cat-cta__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 0 9999px #0b6eca;
  z-index: 3;
  pointer-events: none;
}
.pp-cat-cta__body {
  position: relative;
  z-index: 1;
  max-width: 60%;
}
.pp-cat-cta__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.pp-cat-cta__text {
  max-width: 538px;
  font-size: 18px;
  line-height: 28px;
  color: #808080;
  padding: 12px 0;
  margin-bottom: 32px;
}
.pp-cat-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pp-cat-cta__btn {
  display: inline-flex;
  align-items: center;
  background: #333;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.pp-cat-cta__btn,
.pp-cat-cta__btn:link,
.pp-cat-cta__btn:visited,
.pp-cat-cta__btn:hover,
.pp-cat-cta__btn:active,
.pp-cat-cta__btn:focus {
  color: #fff !important;
}
.pp-cat-cta__btn:hover {
  background: #1f1f1f;
}
.pp-cat-cta__phone {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.pp-cat-cta__phone,
.pp-cat-cta__phone:link,
.pp-cat-cta__phone:visited,
.pp-cat-cta__phone:hover,
.pp-cat-cta__phone:active,
.pp-cat-cta__phone:focus {
  color: #0b6eca;
}
.pp-cat-cta__rocket {
  position: absolute;
  top: 12px;
  right: 36px;
  width: 360px;
  max-width: 32%;
  pointer-events: none;
  z-index: 0;
}
.pp-cat-cta__rocket img {
  width: 100%;
  height: auto;
  display: block;
}
.pp-cat-cta__refs {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -46px;
  display: flex;
  align-items: flex-start;
  justify-content: end;
  z-index: 2;
}
.pp-cat-cta__ref {
  flex: 0 1 29%;
  max-width: 320px;
  background: #fff;
  border-radius: 8px;
  padding: 30px 22px;
  box-shadow: 0 16px 24px -8px rgba(12, 0, 32, 0.16);
}
.pp-cat-cta__ref--1 {
  transform: rotate(6deg) translateY(-30px) translateX(65px);
  z-index: 1;
}
.pp-cat-cta__ref--2 {
  transform: rotate(-3deg) translateY(-30px) translateX(60px);
  z-index: 2;
}
.pp-cat-cta__ref--3 {
  transform: rotate(10deg) translateY(-26px) translateX(45px);
  z-index: 5;
}
.pp-cat-cta__ref-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.pp-cat-cta__ref-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #0c0020;
}
.pp-cat-cta__ref-logo {
  flex: 0 0 auto;
  height: 22px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  opacity: 0.85;
}
.pp-cat-cta__ref--2 .pp-cat-cta__ref-logo {
  height: 32px;
  max-width: 44px;
}
.pp-cat-cta__ref--3 .pp-cat-cta__ref-logo {
  height: 26px;
  max-width: 92px;
}
.pp-cat-cta__ref-desc {
  font-size: 13px;
  line-height: 20px;
  color: #0c0020;
}
.catalog-category-view .pp-cat-extra__title,
.catalog-category-view .pp-cat-cta__title {
  color: #333;
}
.catalog-category-view .pp-cat-extra__title {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .catalog-category-view .custom-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-category-view .page-title-wrapper .page-title {
    font-size: 36px;
    line-height: 1.15;
  }
  .catalog-category-view .category-description {
    font-size: 16px;
    line-height: 24px;
  }
  .pp-cat-extra {
    padding: 40px 0;
  }
  .pp-cat-extra__hero img {
    height: 320px;
  }
  .pp-cat-extra__title {
    font-size: 28px;
    line-height: 36px;
  }
  .pp-cat-extra__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0;
  }
  .pp-cat-extra__stat:nth-child(2) {
    border-right: 0;
  }
  .pp-cat-extra__stat:nth-child(3) {
    border-bottom: 1px solid #d6d6d6;
  }
  .pp-cat-extra__stat:nth-child(4) {
    border-bottom: 1px solid #d6d6d6;
  }
  .pp-cat-extra__stat-num {
    font-size: 32px;
  }
  .pp-cat-extra__stat-num span {
    font-size: 40px;
  }
  .pp-cat-cta {
    padding: 40px 24px;
  }
  .pp-cat-cta__card {
    padding: 32px 28px;
  }
  .pp-cat-cta__card::after {
    display: none;
  }
  .pp-cat-cta__body {
    max-width: 100%;
  }
  .pp-cat-cta__rocket {
    display: none;
  }
  .pp-cat-cta__title {
    font-size: 32px;
    line-height: 1.2;
  }
  .pp-cat-cta__text {
    font-size: 16px;
  }
  .pp-cat-cta__card {
    padding-bottom: 32px;
  }
  .pp-cat-cta__refs {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 28px;
  }
  .pp-cat-cta__ref {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .pp-cat-cta__ref--1,
  .pp-cat-cta__ref--2,
  .pp-cat-cta__ref--3 {
    transform: none;
    margin: 0;
  }
}
@media (max-width: 560px) {
  .catalog-category-view .custom-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .catalog-category-view .page-title-wrapper .page-title {
    font-size: 28px;
  }
  .pp-cat-extra__hero img {
    height: 210px;
  }
  .pp-cat-extra__stats {
    grid-template-columns: 1fr;
  }
  .pp-cat-extra__stat {
    border-right: 0 !important;
    border-bottom: 1px solid #d6d6d6;
    padding: 14px 8px;
  }
  .pp-cat-extra__stat:last-child {
    border-bottom: 0;
  }
  .pp-cat-extra__stat-num {
    font-size: 28px;
  }
  .pp-cat-extra__stat-num span {
    font-size: 36px;
  }
  .pp-cat-extra__title {
    font-size: 24px;
    line-height: 32px;
  }
  .pp-cat-cta {
    padding: 32px 16px;
  }
  .pp-cat-cta__card {
    padding: 24px 20px;
  }
  .pp-cat-cta__title {
    font-size: 28px;
  }
  .pp-cat-cta__actions {
    gap: 14px;
  }
}
.pp-allprod {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 20px 0;
  font-family: 'Poppins', sans-serif;
}
.pp-allprod__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pp-allprod__tabs {
  display: none;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7ec;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pp-allprod__tabs::-webkit-scrollbar {
  display: none;
}
.pp-allprod__tab {
  flex: 0 0 auto;
  cursor: pointer;
  margin-bottom: -1px;
  padding-bottom: 12px;
  color: #808080;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease;
}
.pp-allprod__tab:hover {
  color: #333;
}
.pp-allprod__panel {
  display: block;
}
.pp-allprod__panel + .pp-allprod__panel {
  margin-top: 72px;
}
.pp-allprod__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #333;
  margin: 0 0 24px;
}
.pp-allprod__title a,
.pp-allprod__title a:link,
.pp-allprod__title a:visited,
.pp-allprod__title a:active {
  color: #333;
  text-decoration: none;
}
.pp-allprod__title a:hover,
.pp-allprod__title a:focus {
  color: #0b6eca;
}
.pp-allprod__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pp-allprod__tile {
  display: block;
  text-align: left;
  transition: transform 0.3s ease;
}
.pp-allprod__tile,
.pp-allprod__tile:link,
.pp-allprod__tile:visited,
.pp-allprod__tile:hover,
.pp-allprod__tile:active,
.pp-allprod__tile:focus {
  color: #333;
  text-decoration: none;
}
.pp-allprod__tile:hover {
  transform: translateY(-5px);
}
.pp-allprod__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: #f2f2f2;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.pp-allprod__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pp-allprod__thumb--empty {
  background: #b3a6e0;
}
.pp-allprod__name {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 6px 0;
}
@media (max-width: 991px) {
  .pp-allprod {
    padding-top: 48px;
  }
  .pp-allprod__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pp-allprod__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .pp-allprod__tabs {
    display: flex;
  }
  .pp-allprod__title {
    display: none;
  }
  .pp-allprod__panel,
  .pp-allprod__panel + .pp-allprod__panel {
    display: none;
    margin-top: 0;
  }
  .pp-allprod__grid {
    display: block;
  }
  .pp-allprod__name {
    font-size: 15px;
  }
}
.pp-crow {
  display: contents;
}
.pp-loadmore {
  display: none;
}
@media (max-width: 767px) {
  .catalog-category-view .custom-product-grid {
    display: block;
  }
  .pp-crow {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px 16px;
    padding: 0 20px;
  }
  .pp-crow::-webkit-scrollbar {
    display: none;
  }
  .pp-crow.is-collapsed {
    display: none;
  }
  .pp-crow > * {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
  .catalog-category-view .pp-crow .product-image-container,
  .pp-crow .pp-allprod__thumb {
    height: 150px;
  }
  [data-pp-carousel] .pp-loadmore {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 4px auto 0;
    padding: 14px 28px;
    background: #333;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }
  [data-pp-carousel] .pp-loadmore:hover {
    background: #1f1f1f;
  }
}
.catalog-category-view .category-image {
  display: none;
}
html body.pp-contact-page {
  background: #fff !important;
}
.pp-contact-page .page-wrapper,
.pp-contact-page .columns,
.pp-contact-page .column.main,
.pp-contact-page .page-main,
.pp-contact-page .page-main-inner {
  background: #fff !important;
}
.pp-contact-page .columns {
  display: block;
}
.pp-contact-page .column.main {
  width: 100%;
  max-width: none;
  float: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.pp-contact-page .sidebar.sidebar-main,
.pp-contact-page .sidebar.sidebar-additional {
  display: none;
}
.pp-contact-page .page-title-wrapper,
.pp-contact-page .breadcrumbs {
  display: none;
}
.pp-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 96px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}
.pp-contact * {
  box-sizing: border-box;
}
.pp-contact h1,
.pp-contact p,
.pp-contact ul {
  margin: 0;
}
.pp-contact ul {
  padding: 0;
  list-style: none;
}
.pp-contact a,
.pp-contact a:link,
.pp-contact a:visited,
.pp-contact a:active {
  color: #333;
  text-decoration: none;
}
.pp-contact a:hover,
.pp-contact a:focus-visible {
  color: #0b6eca;
}
.pp-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 0 0;
}
.pp-contact__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 48px;
  line-height: 72px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1a1a1a;
}
.pp-contact__subtitle {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 28px;
  color: #808080;
}
.pp-contact__inner {
  max-width: 792px;
  margin: 72px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pp-contact__card {
  background: #f4f4f6;
  border-radius: 12px;
  padding: 28px 24px;
}
.pp-contact__tag {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #808080;
}
.pp-contact__name {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
.pp-contact__role {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #808080;
}
.pp-contact__lines {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.pp-contact__phone,
.pp-contact__mail {
  font-size: 16px;
  line-height: 24px;
}
.pp-contact__hotline {
  display: block;
  background: #0b6eca;
  border-radius: 12px;
  padding: 24px;
  transition: background 0.2s ease;
}
.pp-contact__hotline:hover {
  background: #095bab;
}
.pp-contact__hotline-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.pp-contact__hotline-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0;
}
.pp-contact__hotline-title,
.pp-contact__hotline-number {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 28px;
  line-height: 36px;
  color: #fff;
}
.pp-contact__hotline-title {
  font-weight: 600;
}
.pp-contact__hotline-number {
  font-weight: 700;
  white-space: nowrap;
}
.pp-contact__hotline-hours {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.pp-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pp-contact__grid .pp-contact__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 224px;
}
.pp-contact__card--wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.pp-contact__card--wide .pp-contact__lines {
  margin: 0 0 0 auto;
  min-width: 240px;
}
.pp-contact__bottom {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 24px;
}
.pp-contact__bottom .pp-contact__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}
.pp-contact__branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 12px;
}
.pp-contact__branches li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
@media (max-width: 991px) {
  .pp-contact__title {
    font-size: 36px;
    line-height: 1.2;
  }
  .pp-contact__grid {
    grid-template-columns: 1fr;
  }
  .pp-contact__card--wide {
    flex-direction: column;
    align-items: flex-start;
  }
  .pp-contact__card--wide .pp-contact__lines {
    margin: 24px 0 0;
    min-width: 0;
  }
  .pp-contact__bottom {
    grid-template-columns: 1fr;
  }
  .pp-contact__hotline-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
@media (max-width: 560px) {
  .pp-contact {
    padding-bottom: 56px;
  }
  .pp-contact__title {
    font-size: 30px;
  }
  .pp-contact__inner {
    margin-top: 48px;
  }
  .pp-contact__branches {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* „Naše pobočky" – odkazy na detail */
.pp-contact__branches a {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}
.pp-contact__branches a:hover {
  color: #0b6eca;
}
/* Pobočky – zig-zag karty (foto střídavě), pod kontaktem */
.pp-contact__locations {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.pp-contact__loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pp-contact__loc--rev .pp-contact__loc-info {
  order: 2;
}
.pp-contact__loc--rev .pp-contact__loc-photo {
  order: 1;
}
.pp-contact__loc-name {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.pp-contact__loc-addr {
  color: #9ca3af;
  margin: 0 0 12px;
  line-height: 1.5;
}
.pp-contact__loc-tel {
  display: block;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 6px;
}
.pp-contact__loc-mail {
  display: block;
  color: #1a1a1a;
  text-decoration: underline;
  margin-bottom: 14px;
}
.pp-contact__loc-mail:hover,
.pp-contact__loc-tel:hover {
  color: #0b6eca;
}
.pp-contact__loc-hours {
  color: #9ca3af;
  line-height: 1.6;
  margin: 0 0 14px;
}
.pp-contact__loc-more {
  color: #0b6eca;
  font-weight: 700;
  text-decoration: none;
}
.pp-contact__loc-more:hover {
  text-decoration: underline;
}
.pp-contact__loc-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
@media (max-width: 760px) {
  .pp-contact__loc {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pp-contact__loc--rev .pp-contact__loc-info {
    order: 0;
  }
  .pp-contact__loc--rev .pp-contact__loc-photo {
    order: 0;
  }
  .pp-contact__loc-photo {
    order: -1;
  }
}
/* =============================================================
 * Powerprint — produktová stránka
 *   _product.less (import v _extend.less)
 *   HERO nad konfigurátorem: text (H1 + perex + USP chipy) | obrázek.
 *   Plochý bílý pruh (žádná plovoucí karta), obsah zarovnaný na šířku stránky.
 *   Konfigurátor (matrix) je samostatný a tímhle souborem nedotčený.
 *   Breakpointy: 991px (Porto desktop = 992px) a 560px. Bez mixinů/@media-in-mixin.
 * ============================================================= */
.pp-hero {
  background: #fff;
  padding: 44px 0;
  margin-bottom: 24px;
}
.pp-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pp-hero__text {
  flex: 1 1 auto;
  min-width: 0;
}
.pp-hero__media {
  flex: 0 0 auto;
  width: 220px;
  max-width: 38%;
}
.pp-hero__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0f1f35;
  margin: 0 0 14px;
}
.pp-hero__lead {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #384659;
  max-width: 480px;
  margin: 0 0 24px;
}
.pp-hero__lead p {
  margin: 0 0 6px;
}
.pp-hero__lead p:last-child {
  margin-bottom: 0;
}
.pp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f3f6fb;
  border: 1px solid #e4e9f1;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
}
.pp-hero__chip-ico {
  color: #1d4ed8;
  flex-shrink: 0;
}
.pp-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 40px rgba(15, 31, 53, 0.12);
}
@media (max-width: 991px) {
  .pp-hero {
    padding: 28px 0;
  }
  .pp-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .pp-hero__media {
    width: 200px;
    max-width: 60%;
  }
  .pp-hero__title {
    font-size: 28px;
  }
  .pp-hero__lead,
  .pp-hero__chips,
  .pp-hero__media {
    display: none;
  }
}
@media (max-width: 560px) {
  .pp-hero__chip {
    font-size: 13px;
    padding: 7px 13px;
  }
}
/* ---- Trust panel „Profesionální tisk" (CMS blok pp_product_trust) ---- */
.pp-trust {
  max-width: 1200px;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
}
.pp-trust__head {
  text-align: center;
  margin-bottom: 36px;
}
.pp-trust__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #0f1f35;
  margin: 0 0 8px;
}
.pp-trust__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #6f7f93;
  margin: 0;
}
.pp-trust__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.pp-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pp-trust__ico {
  color: #0f1f35;
  flex-shrink: 0;
  margin-top: 1px;
}
.pp-trust__text {
  display: flex;
  flex-direction: column;
}
.pp-trust__label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f1f35;
  line-height: 1.3;
}
.pp-trust__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #6f7f93;
  line-height: 1.4;
  margin-top: 2px;
}
.pp-trust__contact {
  margin: 36px -48px -48px;
  padding: 22px 48px;
  background: #f8f9fa;
  border-top: 1px solid #e4e9f1;
  border-radius: 0 0 16px 16px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1f2937;
}
.pp-trust__contact-label {
  font-weight: 600;
  margin-right: 6px;
}
.pp-trust__contact a {
  color: #1d4ed8;
  font-weight: 600;
  margin: 0 10px;
  white-space: nowrap;
}
.pp-trust__contact a:hover {
  color: #1439a8;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .pp-trust {
    padding: 32px 20px;
  }
  .pp-trust__items {
    gap: 28px 40px;
  }
  .pp-trust__contact {
    margin: 28px -20px -32px;
    padding: 20px;
  }
}
@media (max-width: 560px) {
  .pp-trust__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .pp-trust__contact a {
    display: inline-block;
    margin: 4px 8px 0;
  }
}
/* =============================================================
 * Sladění s printq konfigurátorem (modrý backdrop #maincontent::before)
 * -------------------------------------------------------------
 * printq modul kreslí modrý backdrop přes #maincontent::before s pevným
 * `top:65px; height:calc(100% - 175px)`, nakalibrovaným na PŮVODNÍ layout
 * bez našeho hera. Náš hero přidá nahoře výšku → backdrop začne uprostřed
 * hera a nesedí na konfigurátor. Fix (žádný magic margin):
 *   1) backdrop roztáhneme na celou výšku #maincontent (top:0; height:100%)
 *      → konzistentní modré plátno, robustní vůči proměnlivé výšce hera,
 *   2) hero + trust + taby dáme nad backdrop (z-index), ať je modrá nepřekryje.
 * Globálně pro všechny produktové stránky: na ne-konfigurátoru ::before buď
 * neexistuje, nebo není absolutně pozicovaný → top/height na něj nemá vliv.
 * ============================================================= */
.catalog-product-view #maincontent::before {
  top: 0 !important;
  height: 100% !important;
}
.pp-hero,
.pp-trust,
.pp-tabs,
.pp-banner,
.pp-related {
  position: relative;
  z-index: 1;
}
/* =============================================================
 * Překlikávací sekce pod konfigurátorem (Popis / Materiál / Pro koho)
 *   pp-tabs.phtml → CSS-only taby (radio + label, žádný JS).
 *   Bílá karta na modrém backdropu, navazuje na pp-trust. Klíče: desc/material/target.
 * ============================================================= */
.pp-tabs {
  max-width: 1200px;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: 16px;
  padding: 8px 48px 48px;
}
.pp-tabs__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pp-tabs__nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #e4e9f1;
  margin-bottom: 32px;
}
.pp-tabs__tab {
  display: inline-block;
  padding: 20px 2px;
  margin-bottom: -1px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6f7f93;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.pp-tabs__tab:hover {
  color: #0f1f35;
}
.pp-tabs__panel {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #384659;
}
.pp-tabs__panel h2,
.pp-tabs__panel h3 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f1f35;
  margin: 0 0 14px;
}
.pp-tabs__panel p {
  margin: 0 0 14px;
}
.pp-tabs__panel p:last-child {
  margin-bottom: 0;
}
.pp-tabs__panel strong {
  color: #0f1f35;
  font-weight: 600;
}
#pp-tab-desc:checked ~ .pp-tabs__nav label[for="pp-tab-desc"],
#pp-tab-material:checked ~ .pp-tabs__nav label[for="pp-tab-material"],
#pp-tab-target:checked ~ .pp-tabs__nav label[for="pp-tab-target"] {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}
#pp-tab-desc:checked ~ .pp-tabs__panels .pp-tabs__panel[data-for="desc"],
#pp-tab-material:checked ~ .pp-tabs__panels .pp-tabs__panel[data-for="material"],
#pp-tab-target:checked ~ .pp-tabs__panels .pp-tabs__panel[data-for="target"] {
  display: block;
}
@media (max-width: 991px) {
  .pp-tabs {
    padding: 4px 20px 28px;
  }
  .pp-tabs__nav {
    gap: 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pp-tabs__tab {
    padding: 16px 2px;
    font-size: 15px;
  }
}
/* =============================================================
 * Sticky cenový blok (v sidebaru) + horní přilepovací bar
 *   pp-pricebar.phtml + js/pp-product-price.js (čte ceny z matrixu).
 *   Globální — platí na všech produktech (JS staví jen tam, kde je matrix).
 * ============================================================= */
.catalog-product-view .matrix_layoutMain .matrix_addToCartButton {
  display: none !important;
}
.catalog-product-view #cart-btn-overlay {
  display: none !important;
}
.catalog-product-view .pp-pricecard {
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 31, 53, 0.08);
  font-family: 'Poppins', sans-serif;
  margin: 16px 0;
}
.catalog-product-view .pp-pricecard__rows {
  border-bottom: 1px solid #e4e9f1;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.catalog-product-view .pp-pricecard__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.catalog-product-view .pp-pricecard__rowlabel {
  font-size: 14px;
  color: #6f7f93;
}
.catalog-product-view .pp-pricecard__qtyval,
.catalog-product-view .pp-pricecard__netval {
  font-size: 15px;
  color: #0f1f35;
  font-weight: 600;
}
.catalog-product-view .pp-pricecard__total {
  margin-bottom: 20px;
}
.catalog-product-view .pp-pricecard__totlabel {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f7f93;
  font-weight: 600;
  margin-bottom: 2px;
}
.catalog-product-view .pp-pricecard__gross {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
  color: #0f1f35;
  letter-spacing: -0.01em;
}
.catalog-product-view .pp-pricecard__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #89BC23;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(137, 188, 35, 0.32);
  transition: background 0.15s, box-shadow 0.15s, transform 0.05s;
}
.catalog-product-view .pp-pricecard__cta:hover {
  background: #76a31d;
  box-shadow: 0 8px 20px rgba(137, 188, 35, 0.42);
}
.catalog-product-view .pp-pricecard__cta:active {
  transform: translateY(1px);
}
.catalog-product-view .pp-pricecard__cticon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.catalog-product-view .pp-pricecard__cta span {
  position: static;
  top: auto;
  margin-left: 0;
}
.catalog-product-view .pp-pricecard__note {
  font-size: 12px;
  color: #6f7f93;
  text-align: center;
  margin: 12px 0 0;
}
.catalog-product-view .pp-pricebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e4e9f1;
  box-shadow: 0 6px 20px rgba(15, 31, 53, 0.08);
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform 0.25s;
}
.catalog-product-view .pp-pricebar.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.catalog-product-view .pp-pricebar__in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}
.catalog-product-view .pp-pricebar__name {
  font-weight: 600;
  font-size: 16px;
  color: #0f1f35;
}
.catalog-product-view .pp-pricebar__qty {
  color: #6f7f93;
  font-size: 14px;
}
.catalog-product-view .pp-pricebar__qty b {
  color: #0f1f35;
}
.catalog-product-view .pp-pricebar__price {
  margin-left: auto;
  text-align: right;
  line-height: 1.15;
}
.catalog-product-view .pp-pricebar__gross {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f1f35;
}
.catalog-product-view .pp-pricebar__net {
  font-size: 12px;
  color: #6f7f93;
}
.catalog-product-view .pp-pricebar__cta {
  border: 0;
  border-radius: 10px;
  background: #89BC23;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.15s;
}
.catalog-product-view .pp-pricebar__cta:hover {
  background: #76a31d;
}
@media (max-width: 991px) {
  .catalog-product-view .pp-pricecard {
    position: static;
    order: 5;
  }
  .catalog-product-view .pp-pricebar__name {
    display: none;
  }
  .catalog-product-view .pp-pricebar__in {
    gap: 12px;
    padding: 10px 14px;
  }
  .catalog-product-view .pp-pricebar__cta {
    padding: 11px 16px;
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .catalog-product-view .matrix_layoutMatrixContainerColSidebar .matrix_uploadTable {
    display: none !important;
  }
}
/* =============================================================
 * Stepper „1—2—3" nad konfigurátorem (JS injektuje #pp-steps před .printq_matrix_app).
 * Desktop = horizontální stepper. Mobil = stepper skrytý, místo něj číselné badge
 * u jednotlivých sekcí (matrix_optionsTable / matrix_uploadTable / pp-pricecard).
 * ============================================================= */
.catalog-product-view .pp-steps {
  font-family: 'Poppins', sans-serif;
}
@media (min-width: 992px) {
  .catalog-product-view .pp-steps {
    margin: 8px 0 28px;
  }
  .pp-steps__in {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
  }
  .pp-step {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pp-step::before {
    content: '';
    position: absolute;
    top: 19px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #d6ddea;
    z-index: 0;
  }
  .pp-step:first-child::before {
    display: none;
  }
  .pp-step__num {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    border: 2px solid #d6ddea;
    color: #6f7f93;
  }
  .pp-step__label {
    margin-top: 10px;
    max-width: 160px;
    font-size: 13px;
    line-height: 1.3;
    color: #6f7f93;
    text-align: center;
  }
  .pp-step--active .pp-step__num {
    background: #89BC23;
    border-color: #89BC23;
    color: #fff;
  }
  .pp-step--active .pp-step__label {
    color: #0f1f35;
    font-weight: 600;
  }
  .pp-step--uploaded .pp-step__num {
    background: #89BC23;
    border-color: #89BC23;
    color: #fff;
  }
  .pp-step--uploaded .pp-step__label {
    color: #0f1f35;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .catalog-product-view .pp-steps {
    display: none;
  }
  .catalog-product-view .matrix_optionsTable::before,
  .catalog-product-view .matrix_uploadTable::before,
  .catalog-product-view .matrix_quantityTable::before {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0f1f35;
    background: rgba(137, 188, 35, 0.12);
    border-left: 3px solid #89BC23;
    border-radius: 6px;
    padding: 9px 12px;
    margin: 0 0 14px;
  }
  .catalog-product-view .matrix_optionsTable::before {
    content: "1. Vyberte parametry produktu";
  }
  .catalog-product-view .matrix_uploadTable::before {
    content: "2. Nahrajte data";
  }
  .catalog-product-view .matrix_quantityTable::before {
    content: "3. Zvolte množství";
  }
}
/* =============================================================
 * Nativní Magento blok cena / dostupnost / SKU / qty / Přidat do košíku
 * nad stepperem.
 *
 * - Řádky cena / dostupnost / SKU skrýváme na VŠECH produktovkách — cenu
 *   ukazuje matrix tabulka množství (a u fullpage produktů naše cenová karta).
 * - Celý box-tocart (qty + tlačítko) skrýváme jen u fullpage matrix produktů
 *   (body třída printq-upload_fullpage_configuration) — tam košík řeší
 *   konfigurátor + pp-pricecard. Razítka (personalization konfigurátor)
 *   box-tocart POTŘEBUJÍ — je to u nich jediná cesta do košíku — jen ho
 *   oblékáme do stejného stylu jako pp-pricecard__cta.
 * ============================================================= */
.catalog-product-view .product-info-main .product-info-price,
.catalog-product-view .product-info-main .product-info-stock-sku {
  display: none;
}
body.printq-upload_fullpage_configuration.catalog-product-view .product-info-main .box-tocart {
  display: none;
}
.catalog-product-view .product-info-main .box-tocart .action.tocart {
  border: 0;
  border-radius: 12px;
  background: #89BC23;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  height: 48px;
  padding: 0 32px;
  box-shadow: 0 6px 16px rgba(137, 188, 35, 0.32);
  transition: background 0.15s, box-shadow 0.15s, transform 0.05s;
}
.catalog-product-view .product-info-main .box-tocart .action.tocart:hover {
  background: #76a31d;
  box-shadow: 0 8px 20px rgba(137, 188, 35, 0.42);
}
.catalog-product-view .product-info-main .box-tocart .action.tocart:active {
  transform: translateY(1px);
}
body.printq-upload_personalization_configuration.catalog-product-view .box-tocart .field.qty {
  display: none;
}
body.printq-upload_personalization_configuration.catalog-product-view #product_addtocart_form {
  display: flex;
  flex-direction: column;
}
body.printq-upload_personalization_configuration.catalog-product-view #product_addtocart_form .box-tocart {
  order: 10;
  margin: 8px 0 0;
  align-self: center;
}
/* =============================================================
 * Produktový banner pod taby (pp-banner.phtml, atribut pp_banner_image).
 * ============================================================= */
.catalog-product-view .pp-banner {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0;
}
.catalog-product-view .pp-banner__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .catalog-product-view .pp-banner {
    margin-bottom: 28px;
    padding: 0 16px;
  }
  .catalog-product-view .pp-banner__img {
    border-radius: 12px;
  }
}
/* =============================================================
 * Související produkty — kartový grid (pp-related.phtml).
 * ============================================================= */
.catalog-product-view .pp-related {
  max-width: 1200px;
  margin: 8px auto 48px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
.catalog-product-view .pp-related__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f1f35;
  text-align: center;
  margin: 0 0 28px;
}
.catalog-product-view .pp-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.catalog-product-view .pp-related__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(15, 31, 53, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.catalog-product-view .pp-related__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 31, 53, 0.1);
}
.catalog-product-view .pp-related__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f7f8fa;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.catalog-product-view .pp-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-product-view .pp-related__name {
  font-size: 16px;
  font-weight: 600;
  color: #0f1f35;
  line-height: 1.3;
}
.catalog-product-view .pp-related__desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #6f7f93;
}
@media (max-width: 991px) {
  .catalog-product-view .pp-related {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  .catalog-product-view .pp-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .catalog-product-view .pp-related__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .catalog-product-view .pp-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .catalog-product-view .pp-related__card {
    padding: 12px;
  }
  .catalog-product-view .pp-related__name {
    font-size: 15px;
  }
  .catalog-product-view .pp-related__desc {
    font-size: 13px;
  }
}
/* ---- Page wrapper background ---- */
.page-wrapper,
body.cms-index-index,
body:not(.cms-index-index) {
  background: #f3f6fb;
}
body.catalog-product-view,
body.catalog-product-view .page-wrapper {
  background: #e6f5fe;
}
/* Screen-reader-only helper (theme doesn't define one by default) */
.visually-hidden {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
/* =============================================================
 * LINK COLOR ENFORCEMENT
 * Magento base sets a{color:#08c} on :link/:visited/:hover/:active
 * and Porto adds .page-header a{color:#2d5096}. Force our palette
 * on every anchor inside the Powerprint header and mega menu across
 * ALL link states so nothing bleeds through.
 * ============================================================= */
.page-header--powerprint a,
.page-header--powerprint a:link,
.page-header--powerprint a:visited,
.page-header--powerprint a:hover,
.page-header--powerprint a:focus,
.page-header--powerprint a:active {
  color: inherit;
  text-decoration: none;
}
/* Utility strip — white, underline on hover for clarity */
.powerprint-util__links a,
.powerprint-util__links a:link,
.powerprint-util__links a:visited,
.powerprint-util__links a:active {
  color: #fff !important;
  text-decoration: none !important;
}
.powerprint-util__links a:hover,
.powerprint-util__links a:focus-visible {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  text-decoration: none !important;
}
/* Cart + account chips */
.powerprint-chip,
.powerprint-chip:link,
.powerprint-chip:visited,
.powerprint-chip:active,
.powerprint-chip:hover,
.powerprint-chip:focus-visible {
  color: #0f1f35 !important;
  text-decoration: none !important;
}
/* ---- Kill any card treatment on the header ---- */
.page-header--powerprint {
  background: #fff;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: none !important;
  overflow: visible;
  padding: 0;
  position: relative;
  z-index: 40;
}
body:not(.cms-index-index) .page-header--powerprint,
.cms-index-index .page-header--powerprint {
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  box-shadow: none !important;
}
/* Keep breadcrumbs / main card treatment off too, but let them stay
   centered with a standard container. */
body:not(.cms-index-index) .page-wrapper > .breadcrumbs,
body:not(.cms-index-index) .page-main,
.cms-index-index .page-main {
  border: 0;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
}
/* Breadcrumbs pod navigací — minimalistické, menší písmo. Porto navíc kreslí
   linku přes .items:after → pryč. */
body.catalog-product-view .page-wrapper > .breadcrumbs {
  background: #e6f5fe;
}
.page-wrapper > .breadcrumbs .items {
  font-size: 13px;
  line-height: 20px;
}
.page-wrapper > .breadcrumbs .items:after {
  display: none;
}
/* Shared inner container — 1400px max, 24px side gutter */
.powerprint-util__inner,
.powerprint-head__inner {
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
/* ============================================================= */
/* UTILITY BAR                                                   */
/* ============================================================= */
.powerprint-util {
  background: #032a4e;
  color: #fff;
  font-size: 12px;
  width: 100%;
}
.powerprint-util__inner {
  align-items: stretch;
  display: flex;
  gap: 0;
  /* 48px místo původních 36px — lišta nese avatar podpory u telefonu */
  min-height: 48px;
}
.powerprint-util__items {
  align-items: stretch;
  display: flex;
  gap: 0;
}
.powerprint-util__item {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
}
.powerprint-util__item:first-child {
  padding-left: 0;
}
.powerprint-util__dot {
  background: #9cb2d4;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 6px;
  height: 6px;
  width: 6px;
}
.powerprint-util__item--accent {
  background: #ffc948;
  border-right-color: transparent;
  color: #111827;
  font-weight: 700;
  padding: 0 14px;
}
.powerprint-util__item--accent .powerprint-util__bolt {
  font-size: 12px;
}
.powerprint-util__links {
  align-items: stretch;
  display: flex;
  gap: 0;
  margin-left: auto;
}
.powerprint-util__links a {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  min-height: 48px;
  padding: 0 14px;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.powerprint-util__links a:hover,
.powerprint-util__links a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-decoration: none;
}
.powerprint-util__item,
.powerprint-util__links a {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
}
.powerprint-util__phone,
.powerprint-util__mail {
  gap: 7px;
  letter-spacing: 0.2px;
}
/* Avatar podpory u telefonního čísla (podpora.jpg, 80×80 zdroj) —
   bílý prstenec, ať fotka na tmavé liště vystoupí */
.powerprint-util__avatar {
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  flex: 0 0 36px;
  height: 36px;
  object-fit: cover;
  width: 36px;
}
.powerprint-util__phone {
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.3px;
}
.powerprint-util__phone-icon {
  background: currentColor;
  display: inline-block;
  height: 14px;
  width: 14px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.3 1l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.3 1l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.powerprint-util__mail-icon {
  background: currentColor;
  display: inline-block;
  height: 14px;
  width: 14px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm8 7L4 6.5V18h16V6.5L12 11zm0-2 7.5-4.2H4.5L12 9z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm8 7L4 6.5V18h16V6.5L12 11zm0-2 7.5-4.2H4.5L12 9z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* ============================================================= */
/* HEAD ROW — logo + search + cart                               */
/* ============================================================= */
.powerprint-head {
  background: #fff;
  border-bottom: 1px solid #d6ddea;
  position: relative;
  width: 100%;
}
/* Search toggle: a full icon button (visuals in base so they never depend on
   the media query). Desktop hides it via display:none; mobile flips display. */
.powerprint-search-toggle {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  /* Magnifier drawn as a background data-URI so it can never be stripped or
       hidden by Porto/vendor svg rules. Inner inline <svg> is hidden below. */
  background-color: #f1f4f9;
  /* !important so a global `button:hover{background:…}` shorthand can't wipe
       the magnifier on hover */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 20px 20px !important;
  border: 0 !important;
  border-radius: 9px;
  box-shadow: none;
  color: #1a1a1a;
  cursor: pointer;
  display: none;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  outline: none;
  padding: 0;
  width: 42px;
  /* Kill the mobile tap-highlight flash + 300ms delay so a tap doesn't blink */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
/* The magnifier is the button's background-image (single source of truth).
   Keep the accessible label in the DOM but hide it visually; also neutralise
   any stray inline <svg> from cached markup so the icon can never duplicate. */
.powerprint-search-toggle svg,
.powerprint-search-toggle__label {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.powerprint-head__inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  min-height: 64px;
  padding-bottom: 12px;
  padding-top: 12px;
}
.powerprint-head__mobile-toggle {
  display: none;
}
.powerprint-head__logo,
.powerprint-head__search,
.powerprint-head__actions {
  min-width: 0;
}
.powerprint-head__actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
/* Logo */
.powerprint-logo {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  max-width: 100%;
}
.powerprint-logo__mark {
  align-items: center;
  background: #1d4ed8;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 36px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.powerprint-logo__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.powerprint-logo__wordmark {
  color: #111827;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.powerprint-logo__subline {
  color: #6b7280;
  font-size: 11px;
  margin-top: 3px;
}
.powerprint-logo__image {
  display: block;
  height: auto !important;
  max-height: 36px !important;
  max-width: 160px !important;
  width: auto !important;
}
/* ============================================================= */
/* SEARCH                                                        */
/* ============================================================= */
.powerprint-search {
  justify-self: stretch;
  margin: 0;
  max-width: 760px;
  width: 100%;
}
.powerprint-search .block-content {
  margin-bottom: 0;
}
.powerprint-search .label,
.powerprint-search .nested,
.powerprint-search .search-category,
.page-header--powerprint .block-search .label,
.page-header--powerprint .block-search .action.search:before,
.page-header--powerprint .header.icon,
.page-header--powerprint .compare.wrapper,
.page-header--powerprint .wishlist.link {
  display: none !important;
}
/* Porto pins .block-search to a fixed 450px on desktop (min 768) — override so
   the search scales with the header but stays capped on wide screens (so it
   isn't a full-width bar), left-aligned next to the logo.
   padding-left:0 !important defeats a staging-only rule
   (.block-search{padding-left:140px !important}, a leftover slot for the hidden
   search-category) that would otherwise shove the form ~140px to the right. */
.page-header--powerprint .powerprint-head__search .block-search {
  float: none;
  margin: 0;
  max-width: 560px;
  padding-left: 0 !important;
  position: relative;
  width: 100%;
}
.powerprint-search__form {
  align-items: stretch;
  background: #fff;
  border: 1px solid #d6ddea;
  border-radius: 9px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  /* NOTE: no overflow:hidden here — it would clip the quickSearch
       autocomplete dropdown (it lives inside the form), making results flash
       and vanish. Corners are handled per-element instead. */
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.powerprint-search__form:focus-within {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.page-header--powerprint .block-search .field.search,
.page-header--powerprint .block-search .control {
  clear: none;
  margin: 0;
  padding: 0;
}
.page-header--powerprint .block-search input.powerprint-search__input {
  background: transparent;
  border: 0;
  color: #0f1f35;
  font-size: 14px;
  height: 44px;
  left: auto;
  line-height: 44px;
  margin: 0;
  padding: 0 16px;
  position: static;
  width: 100%;
}
.page-header--powerprint .block-search input.powerprint-search__input::placeholder {
  color: #8a97ac;
  opacity: 1;
}
.powerprint-search__form .actions {
  display: flex;
  margin: 0;
}
/* Override Porto .action.search */
.page-header--powerprint .block-search .action.search,
.page-header--powerprint button.powerprint-search__button,
.powerprint-search__button {
  align-items: center;
  background: #1d4ed8 !important;
  border: 0 !important;
  /* right corners only — form no longer clips with overflow:hidden */
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  color: #fff !important;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  line-height: 1;
  margin: 0;
  min-width: 46px;
  opacity: 1 !important;
  padding: 0;
  position: static;
  text-shadow: none;
  top: auto;
  width: 46px;
}
.page-header--powerprint .block-search .action.search[disabled],
.powerprint-search__button[disabled] {
  background: #1d4ed8 !important;
  color: #fff !important;
  cursor: pointer;
  opacity: 1 !important;
}
.page-header--powerprint .block-search .action.search:hover,
.page-header--powerprint .block-search .action.search:focus-visible,
.powerprint-search__button:hover,
.powerprint-search__button:focus-visible {
  background: #1439a8 !important;
  color: #fff !important;
}
.page-header--powerprint .block-search .action.search:before,
.powerprint-search__button:before {
  content: none !important;
  display: none !important;
}
.powerprint-search__button svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 16px;
}
/* Autocomplete / live-suggest dropdown — sits below the search bar.
   (Form no longer has overflow:hidden, so this is fully visible now.) */
.powerprint-search .search-autocomplete {
  background: #fff;
  border: 1px solid #d6ddea;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  right: 0;
  top: 100%;
  z-index: 120;
}
.powerprint-search .search-autocomplete ul {
  list-style: none;
  margin: 0;
  padding: 6px;
}
.powerprint-search .search-autocomplete li {
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 12px;
}
.powerprint-search .search-autocomplete li:hover,
.powerprint-search .search-autocomplete li.selected {
  background: #e8eefc;
}
.powerprint-search .search-autocomplete .amount {
  color: #6f7f93;
  font-size: 12px;
}
/* Live-search dropdown (Mageplaza / devbridge autocomplete) — product/category
   suggestions with a thumbnail + name. Restyle to match the theme: clean card,
   uniform thumbnails, flex rows, hover highlight. */
.autocomplete-suggestions {
  background: #fff !important;
  border: 1px solid #d6ddea !important;
  border-radius: 0 0 10px 10px !important;
  border-top: 0 !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14) !important;
  max-height: 440px !important;
  overflow-y: auto !important;
  padding: 4px !important;
}
.autocomplete-suggestions .autocomplete-suggestion {
  align-items: center;
  border-bottom: 1px solid #e4e9f1;
  border-radius: 8px;
  color: #0f1f35;
  display: flex;
  font-size: 14px;
  gap: 14px;
  padding: 8px 12px;
}
.autocomplete-suggestions .autocomplete-suggestion:last-child {
  border-bottom: 0;
}
.autocomplete-suggestions .autocomplete-suggestion img {
  flex: 0 0 46px;
  height: 46px;
  object-fit: contain;
  width: 46px;
}
.autocomplete-suggestions .autocomplete-suggestion:hover,
.autocomplete-suggestions .autocomplete-suggestion.autocomplete-selected {
  background: #e8eefc;
}
/* ============================================================= */
/* MINICART                                                      */
/* ============================================================= */
.powerprint-minicart {
  margin: 0;
  padding: 0;
}
.page-header--powerprint .minicart-wrapper .action.showcart:before,
.page-header--powerprint .minicart-wrapper .action.showcart:after,
.page-header--powerprint .minicart-wrapper .action.showcart .text,
.page-header--powerprint .minicart-wrapper .action.showcart .counter-label {
  display: none !important;
}
/* Cart subtotal text inside the chip */
.powerprint-chip__total,
.powerprint-chip__total .amount,
.powerprint-chip__total .price {
  color: #0f1f35 !important;
  font-size: 13px;
  font-weight: 700;
}
.powerprint-chip__total:empty:before {
  content: "0 Kč";
}
.powerprint-minicart .block-minicart {
  margin-top: 12px;
  right: 0;
}
/* ============================================================= */
/* ACCOUNT CHIP                                                   */
/* ============================================================= */
.powerprint-chip {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #0f1f35;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.powerprint-chip:hover {
  background: #e8eefc;
  text-decoration: none;
}
.powerprint-chip__icon {
  align-items: center;
  background: #f1f4f9;
  border-radius: 9px;
  color: #0f1f35;
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  position: relative;
  transition: color 0.15s ease, background 0.15s ease;
  width: 38px;
}
.powerprint-chip:hover .powerprint-chip__icon {
  background: #e8eefc;
  color: #1d4ed8;
}
.powerprint-chip__icon svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}
/* Cart counter badge — anchored to the cart icon box */
.powerprint-chip__counter {
  align-items: center !important;
  background: #1d4ed8 !important;
  border: 2px solid #fff !important;
  border-radius: 999px !important;
  bottom: auto !important;
  color: #fff !important;
  display: inline-flex !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  height: 18px;
  justify-content: center !important;
  left: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-width: 18px;
  padding: 0 4px !important;
  position: absolute !important;
  right: -7px !important;
  top: -7px !important;
}
.powerprint-chip__counter.empty {
  background: #9aa3b2 !important;
}
.powerprint-chip__counter .counter-number {
  line-height: 1;
}
.powerprint-chip__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.powerprint-chip__eyebrow {
  color: #6f7f93;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.powerprint-chip__title {
  color: #0f1f35;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.powerprint-chip__title:hover,
.powerprint-chip__title:focus-visible {
  color: #1d4ed8;
  text-decoration: none;
}
.powerprint-chip__meta {
  color: #6f7f93;
  font-size: 10px;
  text-decoration: none;
}
.powerprint-chip__meta:hover,
.powerprint-chip__meta:focus-visible {
  color: #1d4ed8;
  text-decoration: none;
}
@media (max-width: 1180px) {
  .powerprint-chip__copy {
    display: none;
  }
}
/* ============================================================= */
/* NAV STRIP                                                     */
/* Jen px, žádné rem — hodnoty = computed z živé produkce        */
/* (powerprint.cz má efektivní root 16px, tj. 1rem = 16px).      */
/* Px drží paritu, i kdyby se root na některé straně změnil.     */
/* ============================================================= */
.powerprint-nav-shell {
  background: #fff;
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}
/* Sticky nav (desktop only). powerprint-nav.js adds .is-pinned once the top
   bar + logo/search row have scrolled past, switching the nav strip to
   position:fixed; a JS-inserted spacer keeps the layout height so the page
   never jumps. The mobile header keeps its own sticky behaviour (see the
   max-width:991 block). */
@media (min-width: 992px) {
  .powerprint-nav-shell.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  }
}
/* Magento's built-in mobile tab switcher ("Menu" / "Account" titles) is never
   used in this theme — we drive navigation with our own megamenu + hamburger
   drawer. Hide the tab titles at every width so they can't leak through the
   gap between the parent's desktop breakpoint (min 992) and our mobile one
   (max 991). */
.powerprint-nav-shell .nav-sections-item-title {
  display: none !important;
}
.powerprint-nav {
  --ppn-accent: #0b6eca;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #efefef;
  font-family: 'Poppins', sans-serif;
  position: relative;
  width: 100%;
  z-index: 30;
}
.powerprint-nav a,
.powerprint-nav button {
  font-family: inherit;
}
/* Inner container — keeps bar + dropdowns aligned to the 1400px grid */
.ppn {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 24px;
  position: relative;
}
/* ============================================================= */
/* DESKTOP BAR                                                    */
/* ============================================================= */
.ppn-bar {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ppn-tab {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  /* Nav/Menu per Figma typescale: Poppins Medium 16/24, tracking -0.5% */
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  gap: 6px;
  letter-spacing: -0.005em;
  margin: 0;
  outline: none;
  padding: 16px 17.6px;
  position: relative;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.ppn-tab:hover,
.ppn-tab:focus-visible {
  background: transparent;
  color: #0b6eca;
}
.ppn-tab.is-open {
  background: transparent;
  color: #1a1a1a;
}
/* Active/open tab = rounded blue underline (Figma), sitting on the nav's
   bottom edge (not a full box border) */
.ppn-tab.is-open::after {
  content: '';
  position: absolute;
  left: 17.6px;
  right: 17.6px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--ppn-accent);
}
/* Thin chevron caret (svg), light grey, points down */
.ppn-chev {
  display: block;
  width: 12px;
  height: 12px;
  color: #9aa3af;
  flex: 0 0 12px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.ppn-tab:hover .ppn-chev,
.ppn-tab.is-open .ppn-chev {
  color: #0b6eca;
}
/* ============================================================= */
/* DESKTOP DROPDOWN                                              */
/* ============================================================= */
.ppn-drop {
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 50;
}
.ppn-drop[hidden] {
  display: none !important;
}
.ppn-menu {
  display: flex;
  padding: 32px;
}
.ppn-col {
  border-left: 1px solid #efefef;
  /* 0 1 (ne 0 0): 6 sloupců v „Reklamní tisk" se na užších desktopech musí smrsknout */
  flex: 0 1 220px;
  min-width: 0;
  padding: 0 16px;
}
.ppn-col--wide {
  flex: 0 1 280px;
}
.ppn-col:first-child {
  border-left: 0;
  padding-left: 0;
}
.ppn-col:last-child {
  padding-right: 0;
}
.ppn-col-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 16px;
  min-height: 18px;
}
.ppn-label {
  color: #808080;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0 12px;
  text-transform: uppercase;
}
.ppn-brand {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.15s ease;
  white-space: nowrap;
}
.ppn-brand:hover {
  transform: translateY(-1px);
}
.ppn-brand svg {
  display: block;
}
.ppn-items {
  display: flex;
  flex-direction: column;
}
/* Brand columns render each link as its own tinted bubble with a gap */
.ppn-items--purple,
.ppn-items--orange {
  gap: 8px;
}
.ppn-item {
  border-radius: 8px;
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.ppn-item:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}
.ppn-items--purple .ppn-item {
  background: #eeeaf8;
}
.ppn-items--orange .ppn-item {
  background: #f8f1ea;
}
.ppn-items--purple .ppn-item:hover {
  background: #e0d9f5;
}
.ppn-items--orange .ppn-item:hover {
  background: #f1e3d3;
}
.ppn-item-name {
  color: #1a1a1a;
  /* Nav-položka v rozbaleném menu per typescale: 14/20/-0.2%/Regular 400 */
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.002em;
  margin: 0 0 2px;
}
.ppn-item-desc {
  color: #808080;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin: 0;
}
.ppn-items--purple .ppn-item-name {
  color: #2e2560;
}
.ppn-items--purple .ppn-item-desc {
  color: #6b63a8;
}
.ppn-items--orange .ppn-item-name {
  color: #333;
}
.ppn-items--orange .ppn-item-desc {
  color: #666;
}
/* Drawer markup is desktop-hidden; shown in the mobile block below */
.ppn-overlay,
.ppn-drawer {
  display: none;
}
/* ============================================================= */
/* MOBILE DRAWER (slide-in panel stack)                          */
/* ============================================================= */
@media (max-width: 991px) {
  .powerprint-nav {
    border-bottom: 0;
  }
  .ppn {
    padding: 0;
  }
  .ppn-bar,
  .ppn-drop {
    display: none !important;
  }
  .ppn-overlay {
    background: rgba(0, 0, 0, 0.35);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.25s ease;
    visibility: hidden;
    z-index: 990;
  }
  .ppn-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .ppn-drawer {
    background: #fff;
    bottom: 0;
    box-shadow: -8px 0 30px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    max-width: 390px;
    overflow: hidden;
    position: fixed;
    right: 0;
    /* starts below the sticky header so the hamburger stays visible/clickable */
    top: 64px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    z-index: 1000;
  }
  .ppn-drawer.is-open {
    transform: translateX(0);
  }
  .ppn-stack {
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  .ppn-panel {
    background: #fff;
    display: flex;
    flex-direction: column;
    inset: 0;
    overflow-y: auto;
    /* Bez tohohle scroll na konci panelu „přeteče" na stránku pod drawerem
           (scroll-chaining) a odjede hlavička. `contain` ho udrží uvnitř draweru. */
    overscroll-behavior: contain;
    position: absolute;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
  }
  .ppn-panel[data-state="active"] {
    transform: translateX(0);
  }
  .ppn-panel[data-state="left"] {
    transform: translateX(-30%);
  }
  .ppn-panel[data-state="right"] {
    transform: translateX(100%);
  }
  .ppn-panel-head {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-shrink: 0;
    gap: 8px;
    height: 56px;
    padding: 0 8px 0 16px;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .ppn-panel-title {
    color: #1a1a1a;
    flex: 1;
    font-size: 15px;
    font-weight: 600;
  }
  .ppn-back,
  .ppn-close {
    align-items: center;
    background: none;
    border: 0;
    border-radius: 8px;
    color: #333 !important;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-size: 30px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    line-height: 0;
    width: 40px;
  }
  .ppn-back:hover,
  .ppn-back:focus-visible,
  .ppn-close:hover,
  .ppn-close:focus-visible {
    background: #1d4ed8;
    color: #fff !important;
  }
  .ppn-mlabel {
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 16px 16px 6.4px;
    text-transform: uppercase;
  }
  .ppn-row {
    align-items: center;
    background: none;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 13.6px 16px;
    text-align: left;
    text-decoration: none;
    width: 100%;
  }
  .ppn-row:hover,
  .ppn-row:active {
    background: #f5f5f5;
  }
  .ppn-row-text {
    flex: 1;
    min-width: 0;
  }
  .ppn-row-name {
    color: #1a1a1a;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1px;
  }
  .ppn-row-desc {
    color: #888;
    display: block;
    font-size: 12px;
    line-height: 1.3;
  }
  .ppn-row-chev {
    color: #bbb;
    flex-shrink: 0;
    font-size: 18px;
  }
  .ppn-row--purple {
    background: #f5f2fd;
  }
  .ppn-row--purple:hover {
    background: #ede8fa;
  }
  .ppn-row--purple .ppn-row-name {
    color: #2e2560;
  }
  .ppn-row--purple .ppn-row-desc {
    color: #6b63a8;
  }
  .ppn-row--orange {
    background: #fdf5ee;
  }
  .ppn-row--orange:hover {
    background: #faeadb;
  }
  .ppn-row--orange .ppn-row-name {
    color: #f05f25;
  }
  .ppn-row--orange .ppn-row-desc {
    color: #d68539;
  }
  .ppn-badge {
    background: #eeeaf8;
    border-radius: 10px;
    color: #5250e6;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    white-space: nowrap;
  }
  .ppn-badge--orange {
    background: #f8f1ea;
    color: #c2791a;
  }
  body.ppn-open {
    overflow: hidden;
  }
}
/* ============================================================= */
/* HOMEPAGE — preserved                                          */
/* ============================================================= */
.powerprint-home {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding: 20px 24px 0;
}
.powerprint-home__hero {
  border-bottom: 1px solid #d6ddea;
  padding-bottom: 28px;
}
.powerprint-home__eyebrow {
  color: #1d4ed8;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 14px 0 16px;
  text-transform: uppercase;
}
.powerprint-home__title {
  color: #102346;
  font-family: Poppins, sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
  max-width: 720px;
}
.powerprint-home__title span {
  background: linear-gradient(180deg, transparent 66%, rgba(29, 78, 216, 0.15) 0);
  color: #1d4ed8;
}
.powerprint-home__lede {
  color: #555f72;
  font-size: 14px;
  line-height: 1.5;
  margin: 18px 0 0;
  max-width: 620px;
}
.powerprint-home__actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.powerprint-home__button {
  align-items: center;
  border: 1.5px solid #1d4ed8;
  border-radius: 0;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  padding: 0 20px;
  text-decoration: none;
}
.powerprint-home__button--primary {
  background: #1d4ed8;
  color: #fff;
}
.powerprint-home__button--secondary {
  background: #fff;
  color: #1d4ed8;
}
.powerprint-home__stats {
  background: linear-gradient(180deg, #edf2ff 0%, #f4f6fb 100%);
  border: 1px solid #d6ddea;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
}
.powerprint-home__stat {
  min-height: 146px;
  padding: 28px 22px;
}
.powerprint-home__stat + .powerprint-home__stat {
  border-left: 1px solid #d6ddea;
}
.powerprint-home__stat-label {
  color: #95a0b1;
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.powerprint-home__stat strong {
  color: #102346;
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.powerprint-home__stat strong span {
  color: #1d4ed8;
  font-size: 0.62em;
  vertical-align: super;
}
.powerprint-home__stat p {
  color: #5e6575;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 10px;
  max-width: 260px;
}
.powerprint-home__offers,
.powerprint-home__services {
  border-bottom: 1px solid #d6ddea;
  padding-bottom: 28px;
  padding-top: 28px;
}
.powerprint-home__section-head {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.powerprint-home__section-head h2 {
  color: #1d2330;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.powerprint-home__section-head p {
  color: #8b93a1;
  margin: 4px 0 0;
}
.powerprint-home__section-link {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.powerprint-home__offer-grid,
.powerprint-home__service-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.powerprint-home__offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.powerprint-home__service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.powerprint-home__offer-card,
.powerprint-home__service-card {
  background: #fff;
  border: 1px solid #d6ddea;
  border-radius: 0;
}
.powerprint-home__offer-card {
  display: grid;
  gap: 16px;
  min-height: 270px;
  padding: 18px;
}
.powerprint-home__offer-head {
  display: grid;
  gap: 16px;
  grid-template-columns: 56px minmax(0, 1fr);
}
.powerprint-home__offer-icon {
  align-items: center;
  background: #f5f7fb;
  border: 1px solid #d6ddea;
  border-radius: 0;
  color: #a0a7b5;
  display: flex;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  justify-content: center;
  min-height: 56px;
  padding: 8px;
  text-align: center;
}
.powerprint-home__offer-copy {
  align-self: start;
  min-width: 0;
}
.powerprint-home__offer-index {
  color: #1d4ed8;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  margin: 0 0 4px;
}
.powerprint-home__offer-badge {
  background: #e8eefc;
  border-radius: 0;
  color: #173a91;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 3px 8px;
  text-transform: uppercase;
}
.powerprint-home__offer-copy h3 {
  color: #1f2430;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.powerprint-home__offer-copy p {
  color: #5a6272;
  line-height: 1.55;
  margin: 12px 0 0;
}
.powerprint-home__offer-tags {
  border-top: 1px solid #d6ddea;
  grid-column: 1 / -1;
  padding-top: 14px;
}
.powerprint-home__offer-tags-label {
  color: #9aa3b2;
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.powerprint-home__offer-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.powerprint-home__offer-tag {
  background: #f5f7fb;
  border: 1px solid #d6ddea;
  border-radius: 0;
  color: #3d4656;
  font-size: 12px;
  padding: 5px 9px;
}
.powerprint-home__offer-footer {
  align-items: center;
  border-top: 1px solid #d6ddea;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 14px;
}
.powerprint-home__offer-footer a {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
}
.powerprint-home__usp {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.powerprint-home__usp-item {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #d6ddea;
  display: flex;
  gap: 16px;
  min-height: 84px;
  padding: 0 18px;
}
.powerprint-home__usp-item + .powerprint-home__usp-item {
  border-left: 1px solid #d6ddea;
}
.powerprint-home__usp-icon {
  align-items: center;
  background: #edf3fb;
  border-radius: 999px;
  color: #1d4ed8;
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.powerprint-home__usp-item h3,
.powerprint-home__service-card h3 {
  color: #1f2430;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.powerprint-home__usp-item p,
.powerprint-home__service-card p {
  color: #979fac;
  margin: 4px 0 0;
}
.powerprint-home__service-card {
  min-height: 154px;
  padding: 20px;
}
.powerprint-home__service-icon {
  align-items: center;
  background: #edf3fb;
  border-radius: 999px;
  color: #1d4ed8;
  display: inline-flex;
  flex: 0 0 40px;
  font-size: 18px;
  height: 40px;
  justify-content: center;
  margin-bottom: 18px;
  width: 40px;
}
.powerprint-home__note {
  background: #f8fbff;
  border: 1px dashed #c7d6ee;
  border-radius: 0;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
  margin: 18px 0 0;
  padding: 16px 18px;
}
/* ============================================================= */
/* RESPONSIVE                                                    */
/* ============================================================= */
@media (max-width: 1180px) {
  .powerprint-head__inner {
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .ppn-tab {
    font-size: 13.5px;
    padding: 13.6px 12.8px;
  }
  .powerprint-home__offer-grid,
  .powerprint-home__service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Mobile toggle — hidden on desktop */
.powerprint-head__mobile-toggle {
  display: none;
}
.powerprint-mobile-toggle {
  align-items: center;
  background: transparent;
  /* !important: beat the global `button:not(.primary){border:1px solid #ccc}` */
  border: 0 !important;
  border-radius: 8px;
  color: #1a1a1a;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.powerprint-mobile-toggle:hover,
.powerprint-mobile-toggle:focus-visible {
  background: #f5f5f5;
  color: #1a1a1a;
}
.powerprint-mobile-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.powerprint-mobile-toggle__bars span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 22px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
/* Hamburger ↔ X when the drawer is open (JS adds .is-open to the toggle) */
.powerprint-mobile-toggle.is-open .powerprint-mobile-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.powerprint-mobile-toggle.is-open .powerprint-mobile-toggle__bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.powerprint-mobile-toggle.is-open .powerprint-mobile-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991px) {
  .page-header--powerprint,
  .powerprint-nav-shell {
    font-family: "Open Sans", Arial, sans-serif;
  }
  .powerprint-head__inner,
  .powerprint-home {
    padding-left: 14px;
    padding-right: 14px;
  }
  /* Marketing util bar is hidden on mobile to keep the header compact */
  .powerprint-util {
    display: none;
  }
  /* Sticky header so the hamburger is always reachable */
  .powerprint-head {
    position: sticky;
    top: 0;
    z-index: 50;
  }
  /* Head row: [logo] …… [search] [account] [cart] [≡]  (hamburger right) */
  .powerprint-head__inner {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 0;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .powerprint-head__logo {
    display: block;
    order: 0;
    margin-right: auto;
    min-width: 0;
  }
  .powerprint-logo__image {
    max-height: 32px !important;
  }
  .powerprint-head__actions {
    gap: 4px;
    order: 5;
  }
  .powerprint-head__mobile-toggle {
    align-items: center;
    display: flex;
    order: 10;
  }
  /* Search collapses behind its icon button; opens a full-width bar below */
  .powerprint-search-toggle {
    display: inline-flex;
  }
  /* Only the background COLOUR changes on hover/focus — never the
       background-image, so the magnifier never re-decodes and can't flicker
       when tapped. */
  .powerprint-search-toggle:hover,
  .powerprint-search-toggle:focus-visible {
    background-color: #e8eefc;
  }
  .powerprint-head__search {
    background: #fff;
    border-bottom: 1px solid #d6ddea;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    display: none;
    left: 0;
    padding: 10px 14px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 45;
  }
  .powerprint-head.is-search-open .powerprint-head__search {
    display: block;
  }
  /* Account + cart are icon-only on mobile */
  .powerprint-chip {
    gap: 0;
    padding: 2px;
  }
  /* Slightly larger header icons on mobile (match the 42–44px search/hamburger) */
  .powerprint-chip__icon {
    width: 42px;
    height: 42px;
  }
  .powerprint-chip__icon svg {
    width: 21px;
    height: 21px;
  }
  .powerprint-chip__copy {
    display: none;
  }
  /* Tap the cart icon = go to cart page; suppress dropdown/offcanvas */
  .powerprint-minicart .block-minicart,
  .powerprint-minicart .ui-dialog,
  .powerprint-minicart .mage-dropdown-dialog,
  .powerprint-minicart .minicart-overlay {
    display: none !important;
  }
  /* Strip Porto/Magento chrome from the cart button wrapper */
  .powerprint-head__action--cart .action.showcart,
  .powerprint-head__action--cart .minicart-wrapper,
  .powerprint-head__action--cart .minicart-wrapper:before,
  .powerprint-head__action--cart .minicart-wrapper:after,
  .powerprint-head__action--cart .action.showcart:before,
  .powerprint-head__action--cart .action.showcart:after {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    content: none !important;
  }
  /* When the drawer is open the hamburger (now an X) floats above it
       (drawer is z1000) so it stays visible and tapping it closes the menu. */
  /* Lock the page behind the open drawer. position:fixed (+ JS-set top:-scrollY)
       je jediné, co na iOS spolehlivě zastaví dotykový scroll i scroll-chaining,
       když panel draweru není dost vysoký na scroll. JS vrací pozici při zavření. */
  body.ppn-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }
  /* The sticky header (z above the drawer) keeps the hamburger visible and
       clickable while the drawer is open; it animates to an X and closes the
       menu. So the drawer's own × in the panel header is not needed. */
  .ppn-close {
    display: none;
  }
  /* Nav band collapses on mobile; navigation lives in the slide-in drawer */
  .powerprint-nav-shell {
    position: static;
  }
  /* Magento sets .nav-sections position:fixed off-screen on mobile —
       neutralise so our drawer markup flows normally. */
  .powerprint-nav-shell .sections,
  .powerprint-nav-shell .nav-sections,
  .powerprint-nav-shell .nav-sections-items,
  .powerprint-nav-shell .nav-sections-item-content {
    background: transparent !important;
    height: auto !important;
    left: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    position: static !important;
    top: auto !important;
    transform: none !important;
    transition: none !important;
    width: 100% !important;
  }
  /* Hide Magento's own account/mobile tabs; keep only our custom menu
       (the tab titles themselves are already hidden globally above). */
  .powerprint-nav-shell .nav-sections-item-content .header.links,
  .powerprint-nav-shell .nav-sections-item-content .switcher,
  .powerprint-nav-shell .nav-sections-items > .section-item + .section-item {
    display: none !important;
  }
  .powerprint-nav-shell .nav-sections-item-content,
  .powerprint-nav-shell .nav-sections-items > .section-item:first-child,
  .powerprint-nav-shell .nav-sections-items > .section-item:first-child .section-item-content {
    display: block !important;
  }
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  .powerprint-home__stats,
  .powerprint-home__usp,
  .powerprint-home__offer-grid,
  .powerprint-home__service-grid {
    grid-template-columns: 1fr;
  }
  .powerprint-home__stat + .powerprint-home__stat,
  .powerprint-home__usp-item + .powerprint-home__usp-item {
    border-left: 0;
    border-top: 1px solid #d6ddea;
  }
  .powerprint-home__section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .powerprint-home__title {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .powerprint-util__items {
    gap: 0 10px;
  }
  .powerprint-util__item--accent {
    font-size: 10.5px;
  }
  .powerprint-logo__copy {
    display: none;
  }
  .powerprint-search__input {
    font-size: 13px;
  }
}
/* =============================================================
 * Pobočky — rozcestník (CMS „pobocky", pobocky.phtml).
 * Karty jako HP .pp-card (modré vyplnění na hover), název na 1 řádek + adresa,
 * bez CTA. Praha nahoře (skupina), ostatní pod. Barvy literálně (mimo .pp-home).
 * ============================================================= */
.pp-branches-page .pp-branches {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 72px;
  font-family: 'Poppins', sans-serif;
}
.pp-branches-page .pp-branches__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 28px;
}
.pp-branches-page .pp-branches__group {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 28px 0 14px;
}
.pp-branches-page .pp-branches__group:first-of-type {
  margin-top: 0;
}
.pp-branches-page .pp-branches__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pp-branches-page .pp-branches__card {
  position: relative;
  flex: 1 1 230px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  min-height: 116px;
  background: #f5f5f7;
  border-radius: 16px;
  padding: 24px 26px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.pp-branches-page .pp-branches__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #066ac7;
  clip-path: circle(0% at 0% 100%);
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-branches-page .pp-branches__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 28px rgba(11, 110, 202, 0.12);
  color: #fff;
}
.pp-branches-page .pp-branches__card:hover::before {
  clip-path: circle(150% at 0% 100%);
}
.pp-branches-page .pp-branches__card:hover .pp-branches__name {
  color: #fff;
}
.pp-branches-page .pp-branches__name,
.pp-branches-page .pp-branches__addr {
  position: relative;
  z-index: 1;
}
.pp-branches-page .pp-branches__name {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
  margin: 0 0 8px;
}
.pp-branches-page .pp-branches__addr {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}
@media (max-width: 991px) {
  .pp-branches-page .pp-branches__title {
    font-size: 30px;
  }
  .pp-branches-page .pp-branches__card {
    flex-basis: 45%;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .pp-branches-page .pp-branches__card {
    flex-basis: 100%;
  }
}
/* =============================================================
 * Detail pobočky (CMS pobocky/<slug>, pobocka-detail.phtml). Strukturovaná horní
 * část; spodní FAQ je Content CMS stránky (styly níž). body.pp-branch-detail-page.
 * ============================================================= */
.pp-branch-detail-page .pp-bd {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4px 20px 8px;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
}
.pp-branch-detail-page .pp-bd__title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 14px;
}
.pp-branch-detail-page .pp-bd__intro {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}
.pp-branch-detail-page .pp-bd__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pp-branch-detail-page .pp-bd__label {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 26px 0 10px;
}
.pp-branch-detail-page .pp-bd__label:first-child {
  margin-top: 0;
}
.pp-branch-detail-page .pp-bd__addr {
  color: #6b7280;
  margin: 0 0 14px;
}
.pp-branch-detail-page .pp-bd__map {
  display: inline-block;
  background: #0b6eca;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.pp-branch-detail-page .pp-bd__map:hover {
  background: #0959a6;
}
.pp-branch-detail-page .pp-bd__contact {
  margin: 0 0 6px;
  color: #333;
}
.pp-branch-detail-page .pp-bd__contact a {
  color: #333;
  text-decoration: none;
}
.pp-branch-detail-page .pp-bd__contact a:hover {
  color: #0b6eca;
}
.pp-branch-detail-page .pp-bd__hours {
  border-collapse: collapse;
}
.pp-branch-detail-page .pp-bd__hours td {
  padding: 4px 0;
  color: #333;
  font-size: 15px;
}
.pp-branch-detail-page .pp-bd__hours td:last-child {
  padding-left: 32px;
  color: #555;
}
.pp-branch-detail-page .pp-bd__hours tr:last-child td {
  color: #9ca3af;
}
.pp-branch-detail-page .pp-bd__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-branch-detail-page .pp-bd__chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: #475569;
}
/* pravý sloupec — hodnocení + foto */
.pp-branch-detail-page .pp-bd__rating {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 18px;
}
.pp-branch-detail-page .pp-bd__rating-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pp-branch-detail-page .pp-bd__google {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #4285F4;
}
.pp-branch-detail-page .pp-bd__rating-head strong {
  display: block;
  font-size: 15px;
}
.pp-branch-detail-page .pp-bd__rating-sub {
  font-size: 12px;
  color: #6b7280;
}
.pp-branch-detail-page .pp-bd__rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pp-branch-detail-page .pp-bd__score {
  font-size: 30px;
  font-weight: 800;
}
.pp-branch-detail-page .pp-bd__stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}
.pp-branch-detail-page .pp-bd__quote {
  font-size: 14px;
  color: #475569;
  margin: 0 0 14px;
}
.pp-branch-detail-page .pp-bd__review {
  display: inline-block;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.pp-branch-detail-page .pp-bd__review:hover {
  border-color: #0b6eca;
  color: #0b6eca;
}
.pp-branch-detail-page .pp-bd__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
/* spodní FAQ (template-driven, .pp-bd__faq) */
.pp-branch-detail-page .pp-bd__faq {
  margin-top: 8px;
  padding-bottom: 24px;
}
.pp-branch-detail-page .pp-bd__faq-q {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  max-width: 760px;
  margin: 48px auto 14px;
}
.pp-branch-detail-page .pp-bd__faq-a {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
  color: #4b5563;
  line-height: 1.7;
}
/* Bílé pozadí na rozcestníku i detailech poboček (default je @pp-bg). */
body.pp-branches-page .page-wrapper,
body.pp-branch-detail-page .page-wrapper {
  background: #fff;
}
@media (max-width: 860px) {
  .pp-branch-detail-page .pp-bd__cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pp-branch-detail-page .pp-bd__title {
    font-size: 28px;
  }
}
/* =============================================================
 * Login / registrace (My Account auth stránky) — bílé pozadí, primární tlačítka
 * menší + v naší modré (místo tmavé btn-v-dark / full-width).
 * ============================================================= */
.customer-account-login .page-wrapper,
.customer-account-create .page-wrapper,
.customer-account-forgotpassword .page-wrapper {
  background: #fff;
}
.customer-account-login .action.primary,
.customer-account-login button.action.primary,
.customer-account-login .action.btn-v-dark,
.customer-account-create .action.primary,
.customer-account-create button.action.primary,
.customer-account-create .action.btn-v-dark,
.customer-account-forgotpassword .action.primary,
.customer-account-forgotpassword .action.btn-v-dark {
  background: #0b6eca !important;
  border: 1px solid #0b6eca !important;
  color: #fff !important;
  width: auto !important;
  min-width: 180px;
  padding: 11px 26px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}
.customer-account-login .action.primary:hover,
.customer-account-login .action.btn-v-dark:hover,
.customer-account-create .action.primary:hover,
.customer-account-create .action.btn-v-dark:hover,
.customer-account-forgotpassword .action.primary:hover {
  background: #0959a6 !important;
  border-color: #0959a6 !important;
}
[id^="___ratingbadge"] {
  width: 86px !important;
  height: 64px !important;
  overflow: hidden;
}
[id^="___ratingbadge"] iframe {
  width: 86px !important;
  height: 64px !important;
}
body.catalog-product-view .product-info-main {
  width: 100%;
}
body.catalog-product-view .product.media {
  position: absolute;
  visibility: hidden;
}
body.catalog-product-view .product-add-form {
  min-height: 700px;
}
@media (max-width: 991px) {
  body.catalog-product-view .product-add-form {
    min-height: 1200px;
  }
}
/* =============================================================
 * FÁZE 1 — Matrix konfigurátor na plnou šířku (jako produkce)
 * -------------------------------------------------------------
 * Hyvä stock PDP skládá media|detaily do 2-sloupcového gridu
 * (.product-info-main > section.grid, md:grid-cols-[42%_1fr]),
 * takže konfigurátor (.card > form > #printq_matrix_app_*) se
 * mačká do pravé poloviny stránky. Produkce má matrix full-width.
 * Fix (jen desktop; mobil už je 1 sloupec): grid → block, galerie
 * rozumně omezená nahoře, detaily + matrix přes celou šířku.
 * Míří na REÁLNÉ Hyvä třídy (ne Luma .product-info-price/.product.media,
 * které v Hyvä DOM neexistují — proto byly starší pokusy výše neúčinné).
 * ============================================================= */
@media (min-width: 768px) {
  .catalog-product-view .product-info-main > section {
    display: block;
  }
  .catalog-product-view .product-info-main > section > #gallery {
    max-width: 480px;
    margin: 0 0 32px;
  }
  .catalog-product-view .product-info-main .card > .hidden,
  .catalog-product-view .product-info-main .card > .product-description {
    max-width: 780px;
  }
}
