/* =====================================================
   PT NORWOOD MAP – PREMIUM CLINIC STYLE
===================================================== */

.pt-norwood-map-section *, 
.pt-norwood-map-section *::before, 
.pt-norwood-map-section *::after {
    box-sizing: border-box;
}

.pt-norwood-map-section {
    padding: 90px 0;
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
}

/* System Kolorów Premium */
.pt-norwood--scheme-dark { color: #1b2d42; }
.pt-norwood--scheme-dark .pt-lead { color: #2e445c; }

.pt-norwood--scheme-light { color: #ffffff; }
.pt-norwood--scheme-light .pt-lead { color: rgba(255, 255, 255, 0.78); }

.pt-norwood-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.pt-heading {
    font-family: 'Lora', serif !important;
    font-size: 38px !important;
    font-weight: 600 !important;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.01em;
    color: inherit;
}

.pt-lead {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin: 24px auto 0 auto;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

.pt-norwood-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: center;
}
.pt-norwood-container::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 45, 66, 0.08) 2px, transparent 2px);
    background-size: auto;
  background-size: 22px 22px;
  z-index: 1;
  pointer-events: none;
}
.pt-norwood-container::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 45, 66, 0.08) 2px, transparent 2px);
    background-size: auto;
  background-size: 22px 22px;
  z-index: 1;
  pointer-events: none;
}
/* =====================================================
   SVG MAP (SATIN LUXURY)
===================================================== */

.pt-norwood-map-wrap {
    flex: 1 1 450px;
    max-width: 450px;
    position: relative;
}

.pt-interactive-svg {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: auto;
}

.pt-zone {
    fill: #12324c15;
    stroke: #1b2d42;
    stroke-width: 1.5px;
    stroke-dasharray: 2 4;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
}

.pt-norwood--scheme-light .pt-zone {
    stroke: #ffffff;
    fill: rgba(255, 255, 255, 0.1);
}

.pt-zone:hover {
    fill: #12324c30;
    stroke-dasharray: none;
}

.pt-norwood--scheme-light .pt-zone:hover {
    fill: rgba(255, 255, 255, 0.25);
}

.pt-zone.active {
    fill: #1b2d4233;
    stroke-dasharray: none;
    stroke-width: 2px;
}

.pt-norwood--scheme-light .pt-zone.active {
    fill: rgba(255, 255, 255, 0.4);
    stroke-width: 2px;
}

/* =====================================================
   SELECTOR PANEL (CARD STYLE)
===================================================== */

.pt-norwood-selector {
    flex: 1 1 350px;
    max-width: 420px;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Dopasowanie do ciemnego tła motywu */
.pt-norwood--scheme-dark .pt-norwood-selector {
    background: #ffffff;
    border: 1px solid rgba(27, 45, 66, 0.16);
    box-shadow: 0 12px 35px rgba(27, 45, 66, 0.26);
    color: #1b2d42;
	z-index:2;
}

.pt-norwood--scheme-light .pt-norwood-selector {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    color: #ffffff;
	z-index:2;
}

.pt-zone-option {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 16px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.pt-norwood--scheme-dark .pt-zone-option:hover {
    background: rgba(27, 45, 66, 0.03);
}

.pt-norwood--scheme-light .pt-zone-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pt-zone-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #1b2d42;
}

.pt-norwood--scheme-light .pt-zone-checkbox {
    accent-color: #ffffff;
}

.pt-option-label {
    display: flex;
    flex-direction: column;
}

.pt-option-grafts {
    font-size: 13px;
    margin-top: 2px;
    opacity: 0.75;
}

/* =====================================================
   RESULTS & CTA
===================================================== */

.pt-result-box {
    margin-top: 10px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pt-norwood--scheme-dark .pt-result-box { border-top: 1px solid rgba(27, 45, 66, 0.1); }
.pt-norwood--scheme-light .pt-result-box { border-top: 1px solid rgba(255, 255, 255, 0.15); }

.pt-result-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 17px;
}

.pt-result-total-hairs {
    font-size: 24px;
}

.pt-cta-button {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #1b2d42;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), background 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.pt-norwood--scheme-light .pt-cta-button {
    background: #ffffff;
    color: #1b2d42;
}

.pt-cta-button:hover {
    transform: translateY(-2px);
}

.pt-norwood--scheme-dark .pt-cta-button:hover { background: #000000; }
.pt-norwood--scheme-light .pt-cta-button:hover { background: rgba(255, 255, 255, 0.9); }
.pt-kalkulator-disclaimer {
    font-size: 11px !important;
    line-height: 1.4 !important;
    opacity: 0.65;
    margin: 15px 0 5px 0;
    font-weight: 400;
}

/* Stylizacja dla wersji jasnej (Light Mode) */
.pt-norwood--scheme-light .pt-kalkulator-disclaimer {
    color: rgba(255, 255, 255, 0.7);
}

/* Stylizacja dla wersji ciemnej (Dark Mode) */
.pt-norwood--scheme-dark .pt-kalkulator-disclaimer {
    color: #2e445c;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .pt-norwood-container { flex-direction: column; }
    .pt-norwood-map-wrap { max-width: 100%;flex: 1 !important; }
    .pt-norwood-selector { max-width: 100%; width: 100%;margin-top: -60px; }
}

@media (max-width: 768px) {
    .pt-norwood-map-section { padding: 60px 0; }
    .pt-heading { font-size: 30px !important; text-align:left; }
    .pt-norwood-selector { padding: 25px; }
	.pt-lead {text-align:left;}
}