/* === iter5: styles for widgets, contact form, related links === */

/* Unblock widget FAB */
.unblock-fab {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1e3a8a;
  color: #fff;
  border: 0;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform .15s, box-shadow .15s;
}
.unblock-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.unblock-fab svg { flex-shrink: 0; }
.unblock-fab[hidden] { display: none !important; }
@media (max-width: 640px) {
  .unblock-fab { bottom: 76px; padding: 9px 12px; font-size: 12px; }
  .unblock-fab span { display: none; }
  .unblock-fab { padding: 12px; border-radius: 50%; }
}

/* Unblock modal */
.unblock-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,0.6); }
.unblock-modal[hidden] { display: none; }
.unblock-box { background: #fff; color: #111; border-radius: 12px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.unblock-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #e5e7eb; }
.unblock-title { margin: 0; font-size: 18px; }
.unblock-close { background: transparent; border: 0; font-size: 28px; line-height: 1; cursor: pointer; color: #6b7280; padding: 0 4px; }
.unblock-close:hover { color: #111; }
.unblock-body { padding: 16px 20px 20px; }
.unblock-intro { margin: 0 0 12px; font-size: 14px; color: #4b5563; }
.unblock-operators { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.unblock-op-btn { padding: 12px; border: 0; border-radius: 8px; color: #fff; font-weight: 600; cursor: pointer; font-size: 14px; transition: opacity .15s; }
.unblock-op-btn:hover { opacity: 0.9; }
.unblock-op-btn.secondary { background: #4b5563; }
.unblock-instruction { background: #f3f4f6; padding: 12px 14px; border-radius: 8px; margin-top: 8px; font-size: 13px; }
.unblock-instruction[hidden] { display: none; }
.unblock-instruction p { margin: 4px 0; }
.unblock-sms-btn { display: block; margin: 10px 0; padding: 12px; background: #1e40af; color: #fff !important; text-decoration: none; text-align: center; border-radius: 6px; font-weight: 600; }
.unblock-sms-btn:hover { background: #1e3a8a; }
.unblock-help { margin-top: 14px; font-size: 12px; color: #6b7280; }

/* Newsletter popup */
.newsletter-popup { position: fixed; inset: 0; z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 20px; }
.newsletter-popup[hidden] { display: none; }
.nl-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.nl-box { position: relative; background: #fff; color: #111; border-radius: 12px; max-width: 420px; width: 100%; padding: 28px 24px 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.nl-close { position: absolute; top: 8px; right: 12px; background: transparent; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: #6b7280; }
.nl-close:hover { color: #111; }
.nl-box h3 { margin: 0 0 8px; font-size: 22px; color: #b01919; }
.nl-box p { margin: 0 0 14px; font-size: 14px; color: #4b5563; }
.nl-row { margin-bottom: 10px; }
.nl-row input[type="email"] { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px; }
.nl-rodo label { font-size: 12px; color: #6b7280; display: flex; gap: 6px; align-items: flex-start; }
.nl-rodo input { margin-top: 2px; }
.nl-submit { width: 100%; padding: 12px; background: #b01919; color: #fff; border: 0; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; }
.nl-submit:hover { background: #8b1414; }
.nl-msg { margin: 8px 0 0; font-size: 13px; text-align: center; min-height: 18px; }
.nl-msg.ok { color: #166534; }
.nl-msg.err { color: #b91c1c; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Contact form */
.contact-form { max-width: 560px; margin: 0 auto; }
.contact-form .form-row { margin-bottom: 14px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 4px; font-size: 14px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px; font-family: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .req { color: #b91c1c; }
.contact-form .err { color: #b91c1c; font-size: 12px; margin-top: 3px; display: block; }
.contact-form .btn-submit { padding: 12px 24px; background: #b01919; color: #fff; border: 0; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; }
.contact-form .btn-submit:hover { background: #8b1414; }

/* Related internal links */
.related-internal { padding: 24px 0; background: #f9fafb; border-top: 1px solid #e5e7eb; }
.related-internal .section-title { margin: 0 0 12px; font-size: 18px; }
.related-internal .related-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.related-internal .related-links li { }
.related-internal .related-links a { display: inline-block; padding: 6px 12px; background: #fff; border: 1px solid #d1d5db; border-radius: 20px; text-decoration: none; color: #1e40af; font-size: 13px; }
.related-internal .related-links a:hover { background: #eff6ff; border-color: #1e40af; }

/* Girl profile enhancements */
.profile-sms-chat { padding: 16px; background: linear-gradient(135deg,#fef3c7,#fde68a); border-left: 4px solid #d97706; border-radius: 6px; margin: 16px 0; }
.profile-sms-chat h3 { margin: 0 0 8px; font-size: 16px; color: #78350f; }
.profile-sms-chat p { margin: 0 0 10px; font-size: 13px; color: #4b5563; }
.profile-sms-chat .sms-cta { display: inline-block; padding: 10px 16px; background: #d97706; color: #fff; text-decoration: none; border-radius: 6px; font-weight: 600; }
.profile-sms-chat .sms-cta:hover { background: #b45309; }

.profile-order-form { padding: 18px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; margin: 20px 0; }
.profile-order-form h3 { margin: 0 0 12px; font-size: 17px; color: #b01919; }

.long-tail-seo { padding: 24px 0; }
.long-tail-seo h2 { margin: 0 0 12px; font-size: 20px; }
.long-tail-seo p { margin: 0 0 12px; line-height: 1.6; }

.popular-girls { padding: 24px 0; background: #fff7ed; border-top: 1px solid #fed7aa; }
.popular-girls .section-title { color: #b01919; }

/* ux17-badge-inline: badge statusu poza kafelkiem (profil, losowa, hero) byl position:absolute bez pozycjonowanego rodzica -> uciekal do lewego gornego rogu strony */
.profile-status-row .badge-status,.random-hero .badge-status,.gom-hero .badge-status,.hero .badge-status{position:static !important;top:auto !important;left:auto !important;bottom:auto !important;right:auto !important;display:inline-flex !important;vertical-align:middle}
.profile-status-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap}

/* ux17b-badge-base: domyslnie badge liniowy; nakladka (absolute) TYLKO w kafelku/zdjeciu -> nigdzie nie ucieka do rogu strony */
.badge-status{position:static !important;display:inline-flex !important;top:auto !important;left:auto !important;bottom:auto !important;right:auto !important}
.girl-thumb .badge-status,.gom-photo .badge-status,.mini-gallery .badge-status,.card-img-wrap .badge-status{position:absolute !important;top:10px !important;left:10px !important;bottom:auto !important;right:auto !important}
