        /* Override v1 address autocomplete dropdown for v2 theme */
        .address-autocomplete-dropdown {
            background: var(--v2-bg-elevated) !important;
            border: 1px solid var(--v2-border) !important;
            box-shadow: var(--v2-shadow-modal) !important;
        }
        .address-autocomplete-item {
            border-bottom-color: var(--v2-border) !important;
        }
        .address-autocomplete-item > div:first-child {
            color: var(--v2-fg) !important;
        }
        .address-autocomplete-item > div:last-child {
            color: var(--v2-fg-muted) !important;
        }
        .address-autocomplete-item:hover,
        .address-autocomplete-item.selected {
            background: var(--v2-surface) !important;
        }

        /* Hours read-only table */
        .hours-table { border-collapse: collapse; font-size: var(--v2-text-sm); }
        .hours-table td { padding: 6px 8px; border-bottom: 1px solid var(--v2-border); color: var(--v2-text); }
        .hours-table td:first-child { font-weight: 500; width: 110px; }
        .hours-table tr:last-child td { border-bottom: none; }
        .hours-closed { color: var(--v2-fg-muted); font-style: italic; }

        /* Hours modal table */
        .hours-modal-table { width: 100%; border-collapse: collapse; font-size: var(--v2-text-sm); }
        .hours-modal-table th {
            text-align: left; padding: 6px 8px; font-size: var(--v2-text-xs); font-weight: 600;
            text-transform: uppercase; letter-spacing: var(--v2-tracking-wide); color: var(--v2-fg-muted);
        }
        .hours-modal-table td { padding: 6px 8px; overflow: visible; position: relative; }
        .hours-modal-table .hours-day-name { font-weight: 500; }
        .hours-modal-table .hours-cell-toggle { text-align: center; }
        .hours-modal-table .v2-dropdown { width: 130px; }
        .hours-modal-table .v2-dropdown-trigger { padding: 4px 8px; }
        .hours-modal-table .v2-dropdown.disabled .v2-dropdown-trigger {
            opacity: 0.4; pointer-events: none;
        }

        /* Mobile-only summary + chevron (hidden on desktop) */
        .hours-modal-table .hours-mobile-summary,
        .hours-modal-table .hours-chevron { display: none; }

        /* Copy-to-link in hours modal */
        .hours-copy-link {
            font-size: var(--v2-text-xs); color: var(--v2-accent-text);
            cursor: pointer; white-space: nowrap; user-select: none;
            transition: opacity 0.15s;
        }
        .hours-copy-link:hover { opacity: 0.8; text-decoration: underline; }
        .hours-copy-link.disabled { opacity: 0.3; pointer-events: none; }

        /* Copy popover — fixed position so it escapes modal overflow */
        .hours-copy-popover {
            position: fixed; z-index: 10000;
            background: var(--v2-bg-elevated); border: 1px solid var(--v2-border);
            border-radius: var(--v2-radius-md); box-shadow: var(--v2-shadow-lg);
            padding: 8px 0; min-width: 190px; display: none;
        }
        .hours-copy-popover.open { display: block; animation: hoursCopyIn 0.15s ease-out; }
        .hours-copy-pop-item {
            display: flex; align-items: center; gap: 8px;
            padding: 7px 14px; font-size: var(--v2-text-sm); cursor: pointer;
            color: var(--v2-fg); transition: background 0.1s;
        }
        .hours-copy-pop-item:hover { background: var(--v2-surface-hover); }
        .hours-copy-pop-item input[type="checkbox"] { accent-color: var(--v2-accent); }
        .hours-copy-pop-divider { height: 1px; background: var(--v2-border); margin: 4px 0; }
        .hours-copy-pop-apply {
            display: block; width: calc(100% - 16px); margin: 6px 8px 2px;
            padding: 6px; font-size: var(--v2-text-xs); font-weight: 600;
            background: var(--v2-accent); color: var(--v2-fg-on-accent); border: none; border-radius: var(--v2-radius-sm);
            cursor: pointer; text-align: center; transition: opacity 0.15s;
        }
        .hours-copy-pop-apply:hover { opacity: 0.9; }
        @keyframes hoursCopyIn {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Row flash on copy */
        .hours-modal-table tr.hours-row-copied td {
            background: var(--v2-accent-subtle);
            transition: background 0.3s;
        }

        /* Mobile: collapse each day into a single row */
        @media (max-width: 768px) {
            .hours-modal-table,
            .hours-modal-table tbody { display: block; }
            .hours-modal-table thead { display: none; }

            .hours-modal-table tr.hours-modal-row {
                display: grid;
                grid-template-columns: auto 1fr 1fr;
                column-gap: var(--v2-space-3);
                row-gap: var(--v2-space-2);
                align-items: center;
                padding: var(--v2-space-3) 0;
                border-bottom: 1px solid var(--v2-border);
            }
            .hours-modal-table tr.hours-modal-row:last-child { border-bottom: none; }
            .hours-modal-table tr.hours-modal-row > td { padding: 0; }

            .hours-modal-table .hours-cell-toggle {
                grid-column: 1; grid-row: 1;
                text-align: left;
            }
            .hours-modal-table .hours-cell-day {
                grid-column: 2 / 4; grid-row: 1;
                display: flex; align-items: center; gap: var(--v2-space-3);
                cursor: pointer; user-select: none;
                min-height: 32px;
            }
            .hours-modal-table .hours-cell-day .hours-mobile-summary {
                display: inline;
                flex: 1; text-align: right;
                color: var(--v2-fg-muted); font-size: var(--v2-text-sm);
            }
            .hours-modal-table tr.hours-row-closed .hours-mobile-summary { font-style: italic; }
            .hours-modal-table .hours-cell-day .hours-chevron {
                display: inline-block;
                width: 16px; height: 16px;
                color: var(--v2-fg-muted);
                transition: transform 0.15s var(--v2-ease-out);
            }

            .hours-modal-table .hours-cell-open,
            .hours-modal-table .hours-cell-close,
            .hours-modal-table .hours-cell-copy { display: none; }

            .hours-modal-table tr.hours-row-expanded .hours-chevron { transform: rotate(90deg); }

            .hours-modal-table tr.hours-row-expanded .hours-cell-open {
                display: block; grid-column: 2; grid-row: 2;
            }
            .hours-modal-table tr.hours-row-expanded .hours-cell-close {
                display: block; grid-column: 3; grid-row: 2;
            }
            .hours-modal-table tr.hours-row-expanded .hours-cell-copy {
                display: block; grid-column: 2 / 4; grid-row: 3;
                text-align: right;
            }

            .hours-modal-table .v2-dropdown { width: 100%; }
        }

        /* Overview text truncation */
        .overview-text {
            font-size: var(--v2-text-sm); color: var(--v2-text); line-height: var(--v2-leading-normal);
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
            overflow: hidden; white-space: pre-line;
        }

        /* Overview type toggle (scoped segmented-control override) */
        #overview-type-toggle.v2-segment-control {
            display: inline-flex;
            border: 1px solid var(--v2-border);
            border-radius: var(--v2-radius-md);
            overflow: hidden;
            gap: 0;
            padding: 0;
        }
        #overview-type-toggle .v2-segment-btn {
            padding: 8px 20px;
            font-size: var(--v2-text-sm);
            font-weight: 500;
            background: transparent;
            color: var(--v2-text-secondary);
            border: none;
            border-right: 1px solid var(--v2-border);
            cursor: pointer;
            transition: background 0.15s, color 0.15s;
            border-radius: 0;
        }
        #overview-type-toggle .v2-segment-btn:last-child { border-right: none; }
        #overview-type-toggle .v2-segment-btn:hover { background: var(--v2-bg-hover); }
        #overview-type-toggle .v2-segment-btn.active {
            background: var(--v2-accent);
            color: var(--v2-fg-on-accent);
        }

        /* City picker dropdown */
        .city-dropdown {
            position: absolute; top: calc(100% + 4px); left: 0; right: 0;
            background: var(--v2-bg-elevated); border: 1px solid var(--v2-border);
            border-radius: 8px; max-height: 280px; overflow-y: auto; z-index: 9999;
            box-shadow: var(--v2-shadow-md); display: none;
        }
        .city-dropdown.open { display: block; }
        .city-dd-item {
            padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--v2-border);
            transition: background 0.1s;
        }
        .city-dd-item:last-child { border-bottom: none; }
        .city-dd-item:hover, .city-dd-item.kb-active { background: var(--v2-surface-hover); }
        .city-dd-item.disabled { opacity: 0.4; pointer-events: none; }
        .city-dd-main { font-size: var(--v2-text-sm); font-weight: 500; color: var(--v2-fg); }
        .city-dd-main mark { background: none; color: var(--v2-accent-text); font-weight: 700; }
        .city-dd-sub { font-size: var(--v2-text-xs); color: var(--v2-fg-muted); margin-top: 2px; }
        .city-dd-added { font-size: var(--v2-text-xs); color: var(--v2-success-text); margin-top: 2px; }

        /* Nearby suggestion chips */
        .nearby-chip {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 5px 10px; background: var(--v2-surface); border: 1px solid var(--v2-border);
            border-radius: 999px; font-size: var(--v2-text-xs); font-weight: 500;
            color: var(--v2-fg-muted); cursor: pointer; transition: all 0.15s; user-select: none;
        }
        .nearby-chip:hover {
            background: var(--v2-accent-subtle); border-color: var(--v2-border-accent);
            color: var(--v2-accent-text);
        }

        /* Selected area chips */
        .selected-area-chip {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 7px 12px; background: var(--v2-accent-subtle); border: 1px solid var(--v2-border-accent);
            border-radius: 8px; font-size: var(--v2-text-sm); font-weight: 500;
            color: var(--v2-accent-text); animation: chipIn 0.2s ease-out;
        }
        .selected-area-chip .chip-x {
            width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; cursor: pointer; color: var(--v2-accent-text); opacity: 0.6;
            transition: all 0.15s;
        }
        .selected-area-chip .chip-x:hover { opacity: 1; background: var(--v2-surface-active); }
        /* Nearby suggestions skeleton loader */
        .nearby-skeleton-row {
            display: flex; flex-wrap: wrap; gap: 6px;
        }
        .nearby-skeleton-chip {
            height: 28px; border-radius: 999px;
            background: var(--v2-surface); border: 1px solid var(--v2-border);
            animation: skeletonPulse 1.2s ease-in-out infinite;
        }
        @keyframes skeletonPulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }

        @keyframes chipIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Core Services — Variant D combo chips */
        .combo-suggestions { margin-bottom: 12px; }
        .combo-suggestions-label {
            font-size: var(--v2-text-xs); font-weight: 600; text-transform: uppercase;
            letter-spacing: var(--v2-tracking-wide); color: var(--v2-fg-muted); margin-bottom: 8px;
            display: flex; align-items: center; gap: 8px;
        }
        .combo-count {
            font-size: var(--v2-text-xs); font-weight: 600; padding: 1px 7px; border-radius: 999px;
            background: var(--v2-accent-subtle); color: var(--v2-accent-text);
        }
        .combo-chips { display: flex; flex-wrap: wrap; gap: 6px; }
        .combo-chip {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 6px 12px; border-radius: var(--v2-radius-full);
            font-size: var(--v2-text-sm); font-weight: 500;
            cursor: pointer; transition: all 0.15s; user-select: none;
        }
        .combo-chip.unselected {
            background: var(--v2-surface); border: 1px solid var(--v2-border); color: var(--v2-fg-muted);
        }
        .combo-chip.unselected:hover {
            background: var(--v2-accent-subtle); border-color: var(--v2-border-accent); color: var(--v2-accent-text);
        }
        .combo-chip.selected {
            background: var(--v2-accent-subtle); border: 1px solid var(--v2-border-accent);
            color: var(--v2-accent-text);
        }
        .combo-chip .combo-icon { font-size: 13px; font-weight: 700; line-height: 1; }
        .combo-or-divider {
            font-size: var(--v2-text-xs); color: var(--v2-fg-dim); margin: 12px 0 8px;
        }
        .combo-skeleton-row { display: flex; flex-wrap: wrap; gap: 6px; }
        .combo-skeleton-chip {
            height: 32px; border-radius: 999px;
            background: var(--v2-surface); border: 1px solid var(--v2-border);
            animation: skeletonPulse 1.2s ease-in-out infinite;
        }
        .combo-show-toggle {
            display: none; align-items: center; gap: 4px;
            background: none; border: none; padding: 8px 2px;
            color: var(--v2-accent-text); font-size: var(--v2-text-sm);
            font-weight: 500; cursor: pointer; margin-top: 4px;
        }
        .combo-show-toggle:hover .combo-toggle-label { text-decoration: underline; }
        .combo-show-toggle .combo-toggle-caret { font-size: 10px; line-height: 1; }
        @media (max-width: 768px) {
            .combo-chips.collapsed > .combo-chip:nth-child(n+7) { display: none; }
            .combo-show-toggle.has-overflow { display: inline-flex; }
        }

        /* Pronunciation field — input + Preview button on one row */
        .pronunciation-input-row {
            display: flex; gap: 8px; align-items: stretch;
        }
        .pronunciation-input-row .v2-input { flex: 1; min-width: 0; }
        .pronunciation-preview-btn {
            flex: 0 0 auto;
            display: inline-flex; align-items: center; gap: 6px;
            white-space: nowrap;
        }
        .pronunciation-preview-btn[hidden] { display: none; }
        .pronunciation-error {
            margin-top: 6px;
            font-size: var(--v2-text-xs);
            color: var(--v2-danger-text, var(--v2-danger, #c0392b));
        }
        @media (max-width: 480px) {
            .pronunciation-input-row { flex-direction: column; align-items: stretch; }
        }

        /* Pronunciation: collapsible section */
        .pron-section-toggle {
            display: inline-flex; align-items: center; gap: 5px;
            background: transparent; border: none;
            padding: 0;
            color: var(--v2-fg);
            font-size: var(--v2-text-sm);
            font-weight: 500;
            line-height: 1;
            cursor: pointer;
            text-align: left;
        }
        .pron-section-toggle:hover .pron-section-label { text-decoration: underline; }
        .pron-section-toggle .v2-help-tip {
            top: 0;
            margin-left: 0;
        }
        .pron-section-caret {
            display: inline-flex; align-items: center; justify-content: center;
            width: 16px; height: 16px;
            font-size: 15px; line-height: 1;
            color: var(--v2-fg-muted);
            transition: transform 0.15s var(--v2-ease-out);
        }
        .pron-section-toggle[aria-expanded="true"] .pron-section-caret { transform: rotate(90deg); }
        .pron-section-label { color: var(--v2-fg); line-height: 1; }
        .pron-section-optional {
            display: inline-flex; align-items: center;
            height: 16px;
            padding: 0 8px;
            background: var(--v2-surface);
            border: 1px solid var(--v2-border);
            border-radius: 999px;
            color: var(--v2-fg-muted);
            font-size: var(--v2-text-xs);
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: var(--v2-tracking-wide);
        }
        .pron-section-body {
            margin-top: 10px;
            display: flex; flex-direction: column;
            animation: pronSectionIn 0.18s ease-out;
        }
        .pron-section-body[hidden] { display: none; }
        @keyframes pronSectionIn {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Pronunciation examples panel */
        .pron-examples-panel {
            margin-top: 10px;
            padding: 12px 14px;
            background: var(--v2-surface);
            border: 1px solid var(--v2-border);
            border-radius: var(--v2-radius-md);
            display: flex; flex-direction: column; gap: 8px;
            animation: pronExamplesIn 0.18s ease-out;
        }
        .pron-examples-panel[hidden] { display: none; }
        .pron-examples-header {
            color: var(--v2-fg-muted);
            font-size: var(--v2-text-xs);
            line-height: var(--v2-leading-normal);
            margin-bottom: 4px;
            white-space: nowrap;
        }
        .pron-example-row {
            display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
            font-size: var(--v2-text-sm);
        }
        .pron-example-raw {
            padding: 3px 8px;
            background: var(--v2-bg-elevated);
            border: 1px solid var(--v2-border);
            border-radius: var(--v2-radius-sm);
            color: var(--v2-fg-muted);
            font-weight: 500;
        }
        .pron-example-arrow {
            color: var(--v2-fg-dim);
            font-size: 14px; line-height: 1;
        }
        .pron-example-spoken {
            padding: 3px 8px;
            background: var(--v2-accent-subtle);
            border: 1px solid var(--v2-border-accent);
            border-radius: var(--v2-radius-sm);
            color: var(--v2-accent-text);
            font-weight: 600;
        }
        @keyframes pronExamplesIn {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .bi-overview-counter {
            margin-top: 4px;
            font-size: 11px;
            color: var(--v2-fg-dim, #777);
            text-align: right;
            font-variant-numeric: tabular-nums;
        }
        .bi-overview-counter--over {
            color: var(--v2-error-text, #f87171);
            font-weight: 600;
        }
