        .trip-planner-form-wrapper {
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 0 15px;
        }
        .trip-planner-form {
            background: #ffffff;
            border-radius: 18px;
            padding: 24px 20px 26px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.03);
            font-family: inherit;
        }
        .trip-planner-form .tp-title {
            font-size: 22px;
            margin: 0 0 4px;
            font-weight: 600;
        }
        .trip-planner-form .tp-subtitle {
            margin: 0 0 18px;
            font-size: 14px;
            color: #666;
        }
        .trip-planner-form .tp-field {
            margin-bottom: 16px;
        }
        .trip-planner-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            font-size: 14px;
        }
        .trip-planner-form input[type="text"],
        .trip-planner-form input[type="number"],
        .trip-planner-form input[type="date"],
        .trip-planner-form select {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 10px 10px 8px;
            border-radius: 10px;
            border: 1px solid #d4d7e5;
            font-size: 14px;
            outline: none;
            transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
            background: #fafbff;
        }
        .trip-planner-form input[type="date"] {
            text-align: center;
        }
        .trip-planner-form input:focus,
        .trip-planner-form select:focus {
            border-color: #4b6bfb;
            box-shadow: 0 0 0 1px rgba(75,107,251,0.1);
            background: #fff;
        }
        .trip-planner-form .tp-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
        @media (max-width: 600px) {
            .trip-planner-form .tp-grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .tp-region-city {
            border-radius: 12px;
            background: #fafbff;
            padding: 12px 12px 6px;
            border: 1px solid #e2e4f0;
        }
        .tp-region-block + .tp-region-block {
            margin-top: 10px;
            padding-top: 8px;
            border-top: 1px dashed #dde0ee;
        }
        .tp-region-name {
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 14px;
        }
        .tp-country-all-block {
            margin-bottom: 10px;
        }
        .tp-country-all-card {
            border-radius: 12px;
            border: 1px dashed #c8ccff;
            background: #f4f5ff;
            padding: 10px 12px;
            text-align: center;
            cursor: pointer;
            transition: box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
        }
        .tp-country-all-card:hover {
            box-shadow: 0 6px 14px rgba(75,107,251,0.15);
            transform: translateY(-1px);
            border-color: #4b6bfb;
        }
        .tp-country-all-card-active {
            border-color: #4b6bfb;
            background: #eef0ff;
            box-shadow: 0 0 0 1px rgba(75,107,251,0.3);
        }
        .tp-country-all-title {
            font-weight: 600;
            margin-bottom: 2px;
            font-size: 14px;
        }
        .tp-country-all-subtitle {
            font-size: 12px;
            color: #666;
        }
        .tp-radio-option {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
            font-size: 14px;
            cursor: pointer;
        }
        .tp-radio-option input {
            margin: 0;
        }
        .tp-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tp-checkbox-option {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 999px;
            background: #fafbff;
            border: 1px solid #dde0ee;
            font-size: 13px;
            cursor: pointer;
        }
        .tp-checkbox-option input {
            margin: 0;
        }
        .tp-car-type {
            margin-top: 10px;
        }
        .tp-actions {
            display: flex;
            justify-content: center;
            margin-top: 6px;
        }
        .tp-go-button {
            padding: 10px 26px;
            border-radius: 999px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            cursor: pointer;
            background: linear-gradient(135deg, #4b6bfb, #8a5cf6);
            color: #fff;
            box-shadow: 0 8px 18px rgba(75,107,251,0.25);
            transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
        }
        .tp-go-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(75,107,251,0.3);
        }
        .tp-go-button:active {
            transform: translateY(0);
            box-shadow: 0 6px 14px rgba(75,107,251,0.2);
            opacity: 0.9;
        }
        .tp-results {
            margin-top: 20px;
            font-size: 14px;
            color: #444;
        }
        .tp-error {
            border-color: #e55353 !important;
        }
        .tp-error input[type="date"],
        .tp-error select {
            border-color: #e55353 !important;
        }
        .tp-info-block {
            margin-bottom: 14px;
        }
        .tp-info-title {
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 14px;
        }
        .tp-pill-main {
            background: #eef0ff;
            border-color: #ccd0ff;
        }
        .tp-coming-soon {
            font-size: 13px;
            color: #777;
            padding: 4px 0;
        }

        /* Результати: картки місць */
        .tp-section-title {
            font-weight: 600;
            font-size: 16px;
            margin: 10px 0 8px;
        }
        .tp-places-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }
        @media (max-width: 700px) {
            .tp-places-grid {
                grid-template-columns: 1fr;
            }
        }
        .tp-place-card {
            border-radius: 14px;
            border: 1px solid #e2e4f0;
            background: #fdfdff;
            padding: 10px 12px;
            display: flex;
            gap: 10px;
        }
        .tp-place-image {
            flex: 0 0 80px;
            border-radius: 10px;
            overflow: hidden;
            background: #e5e7f5;
        }
        .tp-place-image img {
            display: block;
            width: 80px;
            height: 80px;
            object-fit: cover;
        }
        .tp-place-body {
            flex: 1;
            min-width: 0;
        }
        .tp-place-title-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        .tp-place-title {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
        }
        .tp-badge {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 999px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: .05em;
            background: #ffe9aa;
            color: #8a5a00;
        }
        .tp-place-local {
            font-size: 11px;
            color: #777;
            margin: 0 0 4px;
        }
        .tp-place-meta {
            font-size: 11px;
            color: #666;
            margin-bottom: 4px;
        }
        .tp-place-desc {
            font-size: 12px;
            margin-bottom: 4px;
        }
        .tp-place-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            font-size: 11px;
        }
        .tp-place-link {
            font-size: 11px;
            text-decoration: underline;
        }

        /* Погода */
        .tp-weather-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }
        @media (max-width: 700px) {
            .tp-weather-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 480px) {
            .tp-weather-grid {
                grid-template-columns: 1fr;
            }
        }
        .tp-weather-card {
            border-radius: 10px;
            border: 1px solid #e2e4f0;
            background: #f6f7ff;
            padding: 8px 10px;
            font-size: 12px;
        }
        .tp-weather-date {
            font-weight: 600;
            margin-bottom: 4px;
        }
        .tp-weather-temp,
        .tp-weather-prec {
            font-size: 11px;
            color: #555;
        }
        .tp-weather-note {
            margin-top: 6px;
            font-size: 11px;
            color: #777;
        }
                .tp-must-see {
            background: #ffe5e5;
            border-color: #ffb3b3;
            color: #c40000;
            font-weight: 600;
        }
        .tp-must-see span {
            color: #c40000;
            font-weight: 700;
        }
        .tp-must-see input {
            accent-color: #c40000;
        }
/* === Блок розеток: 4 по ширині, адаптивно === */
.tp-sockets-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 10px;
}

/* === Блок розеток: адаптивні 4 → 3 → 2 → 1 === */
.tp-sockets-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Десктоп */
    gap: 14px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .tp-sockets-grid {
        grid-template-columns: repeat(3, 1fr); /* Планшет */
    }
}

@media (max-width: 600px) {
    .tp-sockets-grid {
        grid-template-columns: repeat(2, 1fr); /* Мобільний */
    }
}

@media (max-width: 380px) {
    .tp-sockets-grid {
        grid-template-columns: 1fr; /* Дуже вузькі екрани */
    }
}

.tp-socket-card {
    padding: 12px 10px 10px;
    border-radius: 14px;
    border: 1px solid #e2e4f0;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tp-socket-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    background: #eff1ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-socket-img img {
    width: 100%;
    height: auto;
    display: block;
}

.tp-socket-label {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.tp-results .tp-bac-ok {
    color: #2a8a2a !important; /* зелений */
    font-weight: 600;
}

.tp-results .tp-bac-bad {
    color: #c62828 !important; /* червоний */
    font-weight: 600;
}

.tp-license-list {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
}

.tp-license-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 4px;
}

.tp-license-icon {
    font-weight: 700;
    line-height: 1.2;
}

.tp-license-text {
    line-height: 1.3;
}

.tp-license-row.tp-license-ok .tp-license-icon,
.tp-license-row.tp-license-ok .tp-license-text {
    color: #2a8a2a; /* зелений */
    font-weight: 600;
}

.tp-license-row.tp-license-bad .tp-license-icon,
.tp-license-row.tp-license-bad .tp-license-text {
    color: #c62828; /* червоний */
    font-weight: 600;
}

.tp-license-attention {
    margin-top: 6px;
    font-size: 13px;
    color: #c62828;
    font-weight: 700;
}