/* Account modals, guestbook, lady detail, age-gate overrides */
html.age-verified [data-requires-age] { display: block !important; }
html.age-verified header.top[data-requires-age] { display: block !important; }
html.age-verified main[data-requires-age] { display: block !important; }
html.age-verified footer.site-footer[data-requires-age] { display: block !important; }
html:not(.age-verified) [data-requires-age] { display: none !important; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
html.age-verified .age-gate { display: none !important; }
.age-gate .age-gate-inner { max-width: 520px; width: 100%; }

/* jQuery popup plugin: visibility via opacity — do NOT force display:none on .popup */
.popup_background {
  z-index: 100000 !important;
  background: rgba(0, 0, 0, 0.82) !important;
}
.popup_wrapper {
  z-index: 100001 !important;
  box-sizing: border-box;
  padding: 1rem;
}
.popup_wrapper_visible {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
html.popup_visible,
html.popup_visible body {
  overflow: hidden;
}

.popup,
.peep-modal {
  position: relative;
  display: block;
  width: min(96vw, 920px);
  max-width: 100%;
  max-height: 90vh;
  overflow: auto;
  margin: 0 auto;
  box-sizing: border-box;
  background: #120810;
  border: 2px solid #b2063b;
  color: #fff;
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: left;
  vertical-align: middle;
}

#errinfo .popup,
#successinfo .popup,
#reginfo .popup,
#subscribe .popup,
#unsubscribegirl .popup,
#regsuccess .popup,
#pwreset .popup,
#unsubscribe .popup,
#unsubscribe_girlsubs .popup {
  width: min(92vw, 480px);
  padding: 1.5rem;
}

.popup .close,
.peep-modal .close {
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
  z-index: 2;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.popup .close.backtologin {
  left: 0.75rem;
  right: auto;
}

.popup .ins { overflow: hidden; }
.popup .leftSide,
.popup .rightSide {
  float: none;
  width: 100%;
  margin: 0;
  text-align: left;
  box-sizing: border-box;
}
.popup .leftSide {
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.popup .leftSide p.head {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 0.95;
  margin: 0 0 0.75rem;
}
.popup .leftSide p.head span {
  display: block;
  color: inherit;
  font-size: inherit;
}
.popup .leftSide p.head .brand-accent {
  color: #ff4d8d;
  font-size: 0.7em;
}
.popup .leftSide ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}
.popup .leftSide li {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: #ccc;
}

.popup .row,
.peep-modal .row {
  margin-bottom: 0.85rem;
}
.popup label,
.peep-modal label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #aaa;
}
.popup input[type="text"],
.popup input[type="password"],
.popup input[type="email"],
.popup input.text,
.popup textarea,
.popup select,
.peep-modal input[type="text"],
.peep-modal input[type="password"],
.peep-modal input[type="email"],
.peep-modal textarea,
.peep-modal select {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0c0c0d;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.popup .submit,
.popup .login,
.popup input[type="submit"],
.popup input[type="button"],
.peep-modal .submit,
.peep-modal .login {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
  border: 1px solid #b2063b;
  background: #b2063b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}
.popup .submit.register,
.popup input.login {
  background: #b2063b;
}
.popup .message.error,
.peep-modal .message.error { color: #ff6b6b; }
.popup .message,
.peep-modal .message { color: #7dff7d; }
/* jQuery .show() cannot override UA [hidden]{display:none!important} */
.popup .message[hidden],
.peep-modal .message[hidden] { display: none !important; }
.popup .message:not([hidden]),
.peep-modal .message:not([hidden]) {
  display: block !important;
  width: 100%;
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.35;
}

#successtext,
#errtext {
  font-size: 1.05rem;
  line-height: 1.45;
  padding-right: 2rem;
}

#registerform,
#forgotpasswordform {
  display: none;
}

@media (min-width: 880px) {
  .popup .ins.clear::after {
    content: "";
    display: table;
    clear: both;
  }
  .popup .leftSide {
    float: left;
    width: 42%;
    margin-bottom: 0;
    padding-right: 1.5rem;
  }
  .popup .rightSide {
    float: left;
    width: 58%;
  }
}

/* Buttons on home (home-neon.css has no .btn) */
.btn,
.btn-primary,
button.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border: 0;
  background: var(--pink, #ff2d6a);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--fg, #f5f5f5);
  color: var(--fg, #f5f5f5);
  padding: 0.75rem 1.2rem;
  min-height: 48px;
}

.guestbook-section {
  margin: 2rem auto;
  max-width: 960px;
  padding: 0 1rem 3rem;
}
.guestbook-section h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.guestbook-list { display: grid; gap: 1rem; margin: 1.25rem 0; }
.guestbook-entry {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}
.guestbook-entry .meta { color: #aaa; font-size: 0.9rem; margin-bottom: 0.35rem; }
.guestbook-entry .meta strong { color: #fff; font-weight: 600; }
.guestbook-entry .review-stars { color: var(--pink, #ff4d8d); white-space: nowrap; }
.guestbook-entry > p { margin: 0.35rem 0 0; line-height: 1.45; }
.guestbook-entry.is-rating-only {
  padding: 0.65rem 1rem;
}
.guestbook-entry.is-rating-only .meta { margin-bottom: 0; }
.guestbook-nav { display: flex; gap: 1rem; margin: 1rem 0 1.25rem; }
.guestbook-nav a { color: #ff4d8d; }

.guestbook-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.guestbook-form[hidden] { display: none !important; }
.guestbook-field {
  display: grid;
  gap: 0.35rem;
}
.guestbook-field label {
  color: var(--muted, #aaa);
  font-size: 0.9rem;
}
.guestbook-form input[type="text"],
.guestbook-form input[type="email"],
.guestbook-form input[type="tel"],
.guestbook-form textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #18181c;
  color: var(--fg, #f5f5f5);
  font: inherit;
  font-size: 1rem;
}
.guestbook-form textarea {
  min-height: 120px;
  resize: vertical;
}
.guestbook-form input:focus,
.guestbook-form textarea:focus {
  outline: 2px solid var(--pink, #ff2d6a);
  outline-offset: 2px;
}
.guestbook-captcha { margin-top: 0.25rem; }
.guestbook-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.footer-meta { color: var(--muted, #aaa); font-size: 0.85rem; }

.girl.watermarked { position: relative; }
.girl .watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-24deg);
}

.lady-gallery-thumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.lady-gallery-thumbs img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}
.lady-gallery-thumbs img.is-active { border-color: #ff4d8d; }

.service-block { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.service-block h3 { margin: 0 0 0.5rem; }
.service-block ul { margin: 0.25rem 0 0 1rem; }

.lady-services .service-tab {
  width: 100%;
  min-height: 48px;
  text-align: left;
  cursor: pointer;
}
.lady-services .service-list a { color: inherit; text-decoration: none; }
.lady-services .service-list a:hover { color: var(--pink, #ff4d8d); }

.lady-reviews .review-form { max-width: 36rem; }
.lady-reviews .review-field span { display: block; margin-bottom: 0.35rem; color: var(--muted, #aaa); font-size: 0.9rem; }
.lady-reviews .star-pick {
  min-width: 44px;
  min-height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
}
html.dark .lady-reviews .review-field input,
html.dark .lady-reviews .review-field textarea {
  background: #18181c;
  color: var(--fg, #f5f5f5);
  border: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
}
html.dark .lady-reviews .review-field textarea { min-height: 120px; resize: vertical; }

.cal { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.cal td, .cal th { border: 1px solid rgba(255,255,255,0.15); padding: 0.35rem; text-align: center; font-size: 0.85rem; }
.cal td.ganztags { background: rgba(255, 77, 141, 0.25); }
.cal td.vormittag { background: rgba(255, 180, 80, 0.2); }
.cal td.nachmittag { background: rgba(120, 180, 255, 0.2); }

.lady-calendar .cal-legend { margin-bottom: 0.75rem; }
.lady-calendar .cal-month {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.lady-calendar .lady-calendar-month:first-of-type .cal-month { margin-top: 0.5rem; }
.lady-calendar .cal-heads { margin-bottom: 0.35rem; }
.lady-calendar .cal-body { margin-bottom: 1.25rem; }
html.dark .lady-calendar .cal-cell {
  background: #18181c;
  color: var(--fg, #f5f5f5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
html.dark .lady-calendar .cal-cell.muted {
  opacity: 0.35;
  background: transparent;
}
html.dark .lady-calendar .cal-cell strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}
html.dark .lady-calendar .cal-cell.slot-ganztags {
  background: rgba(255, 45, 106, 0.35);
  border-color: #ff2d6a;
}
html.dark .lady-calendar .cal-cell.slot-vormittag {
  background: rgba(224, 122, 32, 0.35);
  border-color: #e07a20;
}
html.dark .lady-calendar .cal-cell.slot-nachmittag {
  background: rgba(79, 140, 255, 0.35);
  border-color: #4f8cff;
}
html.dark .lady-calendar .cal-cell span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--muted, #aaa);
}

/* Impressum */
.impressum-page .impressum-lead {
  margin: 0.35rem 0 0;
  color: var(--muted, #b8a8b0);
  font-size: 1rem;
}
.impressum-panel {
  margin-top: 1.75rem;
  max-width: 40rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.impressum-company {
  margin: 0 0 1.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.impressum-list {
  margin: 0;
  display: grid;
  gap: 0;
}
.impressum-row {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .impressum-row {
    grid-template-columns: 10rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}
.impressum-row dt {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff4d8d;
  font-weight: 600;
}
.impressum-row dd {
  margin: 0;
  color: #f0e6eb;
  font-size: 1.05rem;
  line-height: 1.45;
}
.impressum-row a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: rgba(255, 77, 141, 0.45);
}
.impressum-row a:hover {
  color: #ff4d8d;
}

.site-footer a {
  color: #f0e6eb;
  text-decoration: none;
  font-size: 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
}
.site-footer a:hover {
  color: #ff4d8d;
}

@media (min-width: 880px) {
  .peep-modal .megarow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
