/* ============================================================
   VitalTest — „Powiadom o dostępności": modal.
   Tokeny z styles.css (--vt-navy/--vt-red/--vt-mint). Ładowany na /sklep/.
   ============================================================ */

.vt-notify[hidden] { display: none; }

.vt-notify {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vt-notify__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 45, .55);
  opacity: 0;
  transition: opacity .2s ease;
}

.vt-notify__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 26, 45, .28);
  padding: 28px 26px 26px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}

.vt-notify.is-open .vt-notify__overlay { opacity: 1; }
.vt-notify.is-open .vt-notify__panel { transform: translateY(0); opacity: 1; }

.vt-notify__x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--vt-navy, #0f1a2d);
  cursor: pointer;
  border-radius: 8px;
}
.vt-notify__x:hover { background: #f1f4f8; }

.vt-notify__panel h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
  color: var(--vt-navy, #0f1a2d);
}

.vt-notify__lead {
  margin: 0 0 18px;
  color: #48566b;
  line-height: 1.5;
  font-size: .98rem;
}
.vt-notify__lead strong { color: var(--vt-navy, #0f1a2d); }

.vt-notify__form .fgroup { margin-bottom: 14px; }
.vt-notify__form label { display: block; font-size: .9rem; font-weight: 600; color: var(--vt-navy, #0f1a2d); margin-bottom: 6px; }

.vt-notify__form input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d7dee8;
  border-radius: 11px;
  font-size: 1rem;
  font-family: inherit;
}
.vt-notify__form input[type="email"]:focus {
  outline: none;
  border-color: var(--vt-red, #e74c3c);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, .14);
}

.vt-notify__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400 !important;
  font-size: .86rem !important;
  color: #48566b !important;
  line-height: 1.45;
  margin-bottom: 16px;
  cursor: pointer;
}
.vt-notify__consent input { margin-top: 2px; flex: 0 0 auto; }
.vt-notify__consent a { color: var(--vt-red, #e74c3c); text-decoration: underline; }

.vt-notify__msg {
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 10px;
}
.vt-notify__msg.is-ok  { background: #e9f7ef; color: #1e7a46; }
.vt-notify__msg.is-err { background: #fdecea; color: #c0392b; }

.vt-notify__form .btn-red { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .vt-notify__panel { padding: 24px 18px 20px; border-radius: 16px; }
}
