/* TUR Wyceniarka v2.0 */
.tur-wyceniarka {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 720px;
    margin: 2rem auto;
}
.tur-w-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0,0,0,.10);
    padding: 2.2rem 2.5rem 2rem;
}

/* Header */
.tur-w-header { margin-bottom: 1.8rem; }
.tur-w-title { font-size: 1.6rem; font-weight: 800; color: #111827; margin: 0 0 .3rem; letter-spacing: -.02em; }
.tur-w-subtitle { font-size: .88rem; color: #6b7280; margin: 0; }

/* Fields */
.tur-w-field { margin-bottom: 1.3rem; }
.tur-w-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.3rem; }
.tur-w-label {
    display: flex; align-items: baseline; gap: .4rem;
    font-size: .75rem; font-weight: 700; color: #374151;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: .45rem;
}
.tur-w-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: #9ca3af; font-size: .75rem; }
.tur-w-unit { font-weight: 700; color: #2563eb; text-transform: none; letter-spacing: 0; margin-left: auto; font-size: .9rem; }

/* Select */
.tur-w-select-wrap { position: relative; }
.tur-w-select-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: #9ca3af; }
.tur-w-select { width: 100%; appearance: none; background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 12px; padding: .75rem 2.5rem .75rem 1rem; font-size: 1rem; color: #111827; cursor: pointer; transition: border-color .15s; }
.tur-w-select:focus { outline: none; border-color: #2563eb; background: #fff; }

/* Slider */
.tur-w-slider { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 3px; background: linear-gradient(to right,#2563eb 50%,#e5e7eb 50%); cursor: pointer; outline: none; }
.tur-w-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #2563eb; box-shadow: 0 2px 8px rgba(37,99,235,.4); cursor: pointer; border: 3px solid #fff; }
.tur-w-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #2563eb; box-shadow: 0 2px 8px rgba(37,99,235,.4); cursor: pointer; border: 3px solid #fff; }
.tur-w-slider-labels { display: flex; justify-content: space-between; font-size: .73rem; color: #9ca3af; margin-top: .2rem; }

/* Rooms */
.tur-w-rooms { display: flex; gap: .35rem; }
.tur-w-room-btn { flex: 1; padding: .55rem 0; border: 1.5px solid #e5e7eb; border-radius: 10px; background: #f9fafb; font-size: .95rem; font-weight: 600; color: #374151; cursor: pointer; transition: all .15s; }
.tur-w-room-btn:hover { border-color: #2563eb; color: #2563eb; }
.tur-w-room-btn.active { background: #2563eb; border-color: #2563eb; color: #fff; }

/* Toggle group */
.tur-w-toggle-group { display: flex; gap: .35rem; }
.tur-w-toggle-group--4 { flex-wrap: wrap; }
.tur-w-toggle { flex: 1; padding: .5rem .3rem; border: 1.5px solid #e5e7eb; border-radius: 10px; background: #f9fafb; font-size: .8rem; font-weight: 600; color: #374151; cursor: pointer; transition: all .15s; white-space: nowrap; min-width: 70px; }
.tur-w-toggle:hover { border-color: #2563eb; color: #2563eb; }
.tur-w-toggle.active { background: #eff6ff; border-color: #2563eb; color: #2563eb; }

/* Checkboxes */
.tur-w-checks { display: flex; flex-wrap: wrap; gap: .5rem .8rem; }
.tur-w-check-label { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: #374151; cursor: pointer; }
.tur-w-check-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: #2563eb; cursor: pointer; }

/* Button */
.tur-w-btn { width: 100%; padding: .95rem; background: #2563eb; color: #fff; border: none; border-radius: 14px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: background .15s, transform .1s; margin-top: .3rem; letter-spacing: .01em; }
.tur-w-btn:hover { background: #1d4ed8; }
.tur-w-btn:active { transform: scale(.98); }
.tur-w-btn:disabled { background: #93c5fd; cursor: not-allowed; }

/* Result */
.tur-w-result { margin-top: 1.6rem; border-top: 1.5px solid #f3f4f6; padding-top: 1.6rem; animation: tur-in .3s ease; }
@keyframes tur-in { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* Strategies */
.tur-w-strategies { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: .8rem; margin-bottom: 1rem; }
.tur-w-strategy { background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 14px; padding: 1.1rem .8rem; text-align: center; position: relative; }
.tur-w-strategy--main { background: #eff6ff; border-color: #2563eb; box-shadow: 0 4px 16px rgba(37,99,235,.12); }
.tur-w-strategy-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: #2563eb; color: #fff; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .2rem .6rem; border-radius: 20px; white-space: nowrap; }
.tur-w-strategy-icon { font-size: 1.3rem; margin-bottom: .3rem; }
.tur-w-strategy-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #6b7280; margin-bottom: .35rem; }
.tur-w-strategy-price { font-size: 1.2rem; font-weight: 800; color: #111827; letter-spacing: -.02em; line-height: 1.1; }
.tur-w-strategy--main .tur-w-strategy-price { color: #1d4ed8; font-size: 1.35rem; }
.tur-w-strategy-note { font-size: .68rem; color: #9ca3af; margin-top: .25rem; }

/* Adjustments */
.tur-w-adj { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: .6rem .9rem; margin-bottom: .9rem; display: flex; align-items: flex-start; gap: .6rem; flex-wrap: wrap; }
.tur-w-adj-label { font-size: .72rem; font-weight: 600; color: #16a34a; white-space: nowrap; padding-top: 2px; }
#tur-adj-list { display: flex; flex-wrap: wrap; gap: .35rem; }
.tur-w-adj-chip { background: #dcfce7; color: #15803d; font-size: .72rem; font-weight: 600; padding: .2rem .55rem; border-radius: 20px; }

/* Meta */
.tur-w-meta { display: flex; align-items: center; gap: .8rem; background: #f9fafb; border-radius: 12px; padding: .8rem 1.2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tur-w-meta-item { display: flex; flex-direction: column; }
.tur-w-meta-val { font-size: .95rem; font-weight: 700; color: #111827; }
.tur-w-meta-key { font-size: .7rem; color: #9ca3af; margin-top: .1rem; }
.tur-w-meta-sep { width: 1px; height: 32px; background: #e5e7eb; flex-shrink: 0; }

/* CTA */
.tur-w-cta { background: linear-gradient(135deg, #1e3a8a, #2563eb); border-radius: 14px; padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.tur-w-cta-title { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .15rem; }
.tur-w-cta-sub { color: #bfdbfe; font-size: .78rem; }
.tur-w-cta-btn { background: #fff; color: #1d4ed8; border-radius: 10px; padding: .6rem 1.1rem; font-size: .85rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .15s; flex-shrink: 0; }
.tur-w-cta-btn:hover { background: #eff6ff; }

/* Error */
.tur-w-error { margin-top: 1rem; padding: .8rem 1rem; background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px; color: #dc2626; font-size: .9rem; }

/* Disclaimer */
.tur-w-disclaimer { margin-top: 1rem; font-size: .7rem; color: #d1d5db; line-height: 1.5; border-top: 1px solid #f3f4f6; padding-top: .9rem; }

/* Mobile */
@media (max-width: 600px) {
    .tur-w-card { padding: 1.4rem 1.1rem 1.4rem; }
    .tur-w-row { grid-template-columns: 1fr; }
    .tur-w-strategies { grid-template-columns: 1fr; }
    .tur-w-strategy--main { order: -1; }
    .tur-w-cta { flex-direction: column; text-align: center; }
    .tur-w-toggle { font-size: .75rem; }
}
