.promo-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.promo-modal--active {
  display: flex;
}
.promo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}
/* Obsah modalu */
.promo-modal__content {
  position: relative;
  flex-direction: column;
  display: flex;
  gap: 30px;
  background-color: var(--bezova-color) !important; 
  border: 3px solid var(--oranzova-color);
  color: var(--modra-color);
  background:
    repeating-linear-gradient(to right, black 0px, black 19px, transparent 19px, transparent 38px) top,
    repeating-linear-gradient(to right, black 0px, black 19px, transparent 19px, transparent 38px) bottom,
    repeating-linear-gradient(to bottom, black 0px, black 19px, transparent 19px, transparent 38px) left,
    repeating-linear-gradient(to bottom, black 0px, black 19px, transparent 19px, transparent 38px) right;
  background-repeat: no-repeat;
  background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
  background-position: top left, bottom left, top left, top right;
  padding: 30px;
  width: 100%;
  z-index: 2;
  animation: modalFadeIn 0.35s ease;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; 
  max-height: 90vh;
}
.promo-modal__content p {
    font-size: 24px;
}
/* Zavírací tlačítko */
.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: #333;
}
/* CTA */
.promo-modal__cta {
  background-color: var(--oranzova-color);
  padding: 0.7rem 3.6rem;
  border-radius: 6px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.promo-modal__cta:hover {
  transform: scale(1.1);
}
.promo-wrapper-1 {
display: flex;
flex-direction: column;
gap: 30px;}
.promo-wrapper-2 {
display: flex;
flex-direction: column;
gap: 10px;}
/* Animace */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.krizek-modal {
    width: 25px;
    height: 25px;
    margin-top: 10px;
    margin-right: 10px;
}
@media (min-width: 768px) {
.promo-modal__content {
  gap: 30px;
  padding: 70px;
  width: 100%;
  z-index: 2;
  animation: modalFadeIn 0.35s ease;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; 
  max-height: 90vh;
}
    .promo-wrapper-1 {
display: flex;
flex-direction: column;
gap: 30px;}

.promo-wrapper-2 {
display: flex;
flex-direction: column;
gap: 10px;}

}
@media (min-width: 1024px) {
    .promo-modal__content {
  gap: 30px;
  padding: 50px 70px;
  width: 70%;
  }
.promo-wrapper-1 {
display: flex;
flex-direction: column;
gap: 30px;}
.promo-wrapper-2 {
display: flex;
flex-direction: column;
}
.promo-modal__cta {
  white-space: nowrap;
  width: auto;
  max-width: 480px;
}}
@media (min-width: 1380px) {
    .promo-wrapper-1 {
display: flex;
flex-direction: row;
gap: 60px;}
}