/* Akční nabídka - letáky infoCanAll (karta + modal + lightbox) */
.sp-leaflets {
  padding: 48px 20px 8px;
  background: #fff;
}
.sp-leaflets__container {
  max-width: 1140px;
  margin: 0 auto;
}
.sp-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 2px 0 #d30000;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease;
}
.sp-card:hover,
.sp-card:focus-visible {
  box-shadow: 0 10px 26px rgba(0,0,0,.14), 0 2px 0 #d30000;
  transform: translateY(-3px);
  outline: none;
}
.sp-card__img {
  flex: 0 0 320px;
  min-height: 220px;
  background-size: cover;
  background-position: center top;
  position: relative;
}
@media (max-width: 760px) {
  .sp-card__img { flex-basis: 100%; height: 200px; }
}
.sp-card__flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d30000;
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.sp-card__body {
  flex: 1 1 320px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.sp-card__tag {
  color: #d30000;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.sp-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: #111;
}
.sp-card__body p {
  color: #555;
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}
.sp-card__cta {
  color: #d30000;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 4px;
}

/* Sheet (modal) */
.sp-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.sp-sheet.is-open { display: block; }
.sp-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,.72);
}
.sp-sheet__box {
  position: relative;
  margin: 4vh auto;
  width: min(960px, calc(100% - 32px));
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  padding: 36px 32px 30px;
  box-sizing: border-box;
}
.sp-sheet__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
}
.sp-sheet__close:hover { color: #d30000; }
.sp-sheet__eyebrow {
  color: #d30000;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sp-sheet__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 8px 0 0;
  color: #111;
}
.sp-sheet__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: #d30000;
  margin-top: 12px;
  border-radius: 4px;
}
.sp-sheet__lead {
  margin-top: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.sp-sheet__valid {
  margin-top: 10px;
  font-size: .88rem;
  color: #555;
}
.sp-sheet__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d30000;
  margin-right: 6px;
}

.sp-lflt {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}
.sp-lflt__set {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 18px 20px;
}
.sp-lflt__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-lflt__badge {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 12px;
  border-radius: 6px;
}
.sp-lflt__badge--b2b { background: #1c2b4a; }
.sp-lflt__badge--b2c { background: #2b7a34; }
.sp-lflt__head h4 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}
.sp-lflt__head p {
  margin: 2px 0 0;
  font-size: .82rem;
  color: #777;
}
.sp-lflt__pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 620px) {
  .sp-lflt__pages { grid-template-columns: 1fr; }
}
.sp-page {
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sp-page img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sp-page:hover img,
.sp-page:focus-visible img {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}
.sp-page__num {
  font-size: .8rem;
  color: #777;
  font-weight: 600;
}
.sp-sheet__foot {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.sp-sheet__foot p {
  font-size: .88rem;
  color: #555;
  margin: 0;
}
.sp-sheet__foot .u-btn { margin: 0; }

/* Lightbox */
.sp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}
.sp-lightbox.is-open { display: block; }
.sp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.94);
}
.sp-lightbox__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #fff;
}
.sp-lightbox__label { font-weight: 600; font-size: .9rem; }
.sp-lightbox__count { font-size: .78rem; color: rgba(255,255,255,.6); margin-left: 6px; }
.sp-lightbox__close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.sp-lightbox__close:hover { color: #d30000; }
.sp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.sp-lightbox__nav:hover { background: #d30000; border-color: #d30000; }
.sp-lightbox__nav--prev { left: 16px; }
.sp-lightbox__nav--next { right: 16px; }
.sp-lightbox__stage {
  position: absolute;
  inset: 64px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
@media (max-width: 620px) {
  .sp-lightbox__nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .sp-lightbox__label { font-size: .8rem; }
  .sp-lightbox__count { display: none; }
}
