/* praguecard_cz — glue layer ON TOP of the original praguecoolpass.com styles.
 * Only what the original bundles do not provide:
 * cookie bar, cancellation modal, legal footer, checkout row helpers, pay mount.
 * Everything else (header, hero, cards, swiper, forms, review) uses captured CSS.
 */

/* cookie bar (original consent implementation was JS-rendered; same palette) */
.pc-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);
  font-family: "Open Sans", sans-serif;
}
.pc-cookie[hidden] { display: none !important; }
.pc-cookie-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.pc-cookie-in p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #252c3e;
}
.pc-cookie-in a { color: #da4b07; text-decoration: none; }
.pc-cookie-in a:hover { text-decoration: underline; }
.pc-cookie-in button {
  background: #da4b07;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 0 22px;
  height: 40px;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.pc-cookie-in button:hover { background: #ef5106; }
@media (max-width: 768px) {
  .pc-cookie-in { flex-direction: column; align-items: stretch; text-align: center; gap: 10px; }
}

/* cancellation policy modal (original modal not captured; original palette) */
.pc-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.pc-modal-overlay[hidden] { display: none !important; }
.pc-modal-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 560px;
  width: 100%;
  padding: 34px 30px 26px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: #222;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}
.pc-modal-card h4 {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #252c3e;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.pc-modal-card p { font-size: 15px; line-height: 1.55; margin: 0 0 12px; }
.pc-modal-card a { color: #da4b07; }
.pc-modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: url(/assets/tp/img/cross-modal.6ccc5733.svg) 50% no-repeat;
  cursor: pointer;
}

/* legal footer (original palette, required for store compliance) */
.pc-legal {
  background: #1a2030;
  font-family: "Open Sans", sans-serif;
}
.pc-legal-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .55);
  font-size: 12.5px;
}
.pc-legal-links a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.pc-legal-links a:hover { color: #da4b07; text-decoration: underline; }

/* checkout helpers (components themselves use original scoped classes) */
.pc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.pc-row2 .input-container { width: auto; }
@media (max-width: 480px) { .pc-row2 { grid-template-columns: 1fr; } }
.pc-btnrow { display: flex; gap: 12px; align-items: center; }
.pc-btnrow .button-send { flex: 1; }
.pc-btnrow .button-cancel { min-width: 120px; }
.pc-secure-note {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(37, 44, 62, .55);
  margin-top: 12px;
}
.pc-pay-mount { min-height: 70vh; background: #fff; margin-top: 20px; }

/* the original renders a different card component per viewport: keep both, switch here */
@media (max-width: 768px) {
  [data-pc-slide] > .calculator-container { display: none; }
}
@media (min-width: 769px) {
  [data-pc-slide] > .mobile-card-container { display: none; }
}

/* order list total row (desktop display rule missing in captured chunk) */
.pc-order .list-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  box-sizing: content-box;
}
@media (min-width: 769px) {
  .pc-order .list-total { width: 657px; height: 80px; padding: 0 28px; border-top: none; }
}
@media (max-width: 768px) {
  .pc-order .list-total .calc:empty { display: none; }
  .pc-order .list-total .type { max-width: none; }
}
#botpay-mount iframe { border-radius: 5px; }
