/* Waschsalon-Suche Screen – Layout-Ergänzungen; Basis über Base-Widgets */

/* Änderungsprotokoll: 2026-07-20 | subagent-create-screen | @skill-css-rules, @skill-change-provenance | Waschsalon-Suche Screen CSS */
/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Layoutfix Formular, Kacheln, Headlines */
/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Ergebnisse als Liste statt Kacheln */
/* Änderungsprotokoll: 2026-07-20 | subagent-create-screen | @skill-css-rules, @skill-change-provenance | View-Tabs Liste/Globus ergänzt */

.waschsalon-suche-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0 3rem;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Page-H1 kompakter, ohne doppelte Base-Headline auf Wrapper */
.waschsalon-suche-page-title-wrapper {
    margin-bottom: 0.75rem;
    padding-bottom: 0;
}

.waschsalon-suche-page-title-wrapper::after {
    display: none;
}

.waschsalon-suche-page-title {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0;
    font-size: 1.75rem;
    line-height: 1.25;
    font-weight: 700;
}

.waschsalon-suche-page-title::after {
    width: 56px;
    height: 3px;
}

.waschsalon-suche-intro {
    margin-bottom: 1.75rem;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-filter-panel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    overflow: hidden;
    box-sizing: border-box;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, var(--color-background-surface) 55%, rgba(232, 244, 248, 0.95) 100%);
    border: 1px solid rgba(28, 119, 166, 0.14);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 8px 24px rgba(28, 119, 166, 0.09),
        0 2px 6px rgba(28, 119, 166, 0.05);
}

.waschsalon-suche-filter-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--color-complementary-primary) 0%,
        var(--color-complementary-secondary) 45%,
        var(--color-brand-primary) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.waschsalon-suche-filter-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(28, 119, 166, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(230, 126, 80, 0.06) 0%, transparent 38%);
    pointer-events: none;
    z-index: 0;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-filter-header {
    position: relative;
    z-index: 1;
    padding: 0.85rem 0.9rem 0.1rem;
    box-sizing: border-box;
    max-width: 100%;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-filter-title {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brand-primary);
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-form-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding: 0.55rem 0.9rem 0.9rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-form-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-form-row-type {
    margin-top: 0.5rem;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-country-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-city-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-facility-type-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-service-mode-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-price-level-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-form-row-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.55rem;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-filter-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 0;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
}

.waschsalon-suche-filter-chip-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-filter-chip-text {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 44px;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 119, 166, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(28, 119, 166, 0.05);
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.waschsalon-suche-filter-chip-input:focus-visible + .waschsalon-suche-filter-chip-text {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 2px;
}

.waschsalon-suche-filter-chip-input:checked + .waschsalon-suche-filter-chip-text {
    border-color: var(--color-brand-primary);
    background: linear-gradient(135deg, rgba(28, 119, 166, 0.12) 0%, rgba(28, 119, 166, 0.18) 100%);
    color: var(--color-brand-primary);
    box-shadow: 0 2px 8px rgba(28, 119, 166, 0.14);
}

.waschsalon-suche-filter-chip:hover .waschsalon-suche-filter-chip-text {
    border-color: rgba(28, 119, 166, 0.4);
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
.waschsalon-suche-filter-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    padding-right: 2.25rem;
    border-radius: 10px;
    border: 2px solid rgba(28, 119, 166, 0.12);
    background-color: var(--color-background-primary);
    color: var(--color-text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231c77a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px 14px;
    cursor: pointer;
    box-shadow:
        0 1px 2px rgba(28, 119, 166, 0.04),
        0 3px 10px rgba(28, 119, 166, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.waschsalon-suche-filter-select:focus {
    outline: none;
    border-color: var(--color-brand-primary);
    box-shadow:
        0 0 0 3px rgba(28, 119, 166, 0.14),
        0 6px 20px rgba(28, 119, 166, 0.12);
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Ergebnisanzahl base-headline-h3 statt h2 */
.waschsalon-suche-results-count-wrapper {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.waschsalon-suche-results-count {
    margin-top: 0;
    margin-bottom: 0;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Aktive Filter-Badges unter Ergebnisanzahl */
.waschsalon-suche-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 0 0 1.25rem 0;
    padding: 0;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Leerer Badge-Container ohne Platz */
.waschsalon-suche-active-filters-empty {
    display: none;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Einzelnes aktives Filter-Badge */
.waschsalon-suche-active-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    max-width: 100%;
    min-height: 2rem;
    padding: 0.25rem 0.35rem 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 119, 166, 0.28);
    background: linear-gradient(135deg, rgba(28, 119, 166, 0.1) 0%, rgba(28, 119, 166, 0.16) 100%);
    color: var(--color-brand-primary);
    box-shadow: 0 1px 4px rgba(28, 119, 166, 0.1);
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Badge-Label Text */
.waschsalon-suche-active-filter-badge-label {
    display: inline-block;
    max-width: 16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Badge ×-Button zum Zuruecksetzen */
.waschsalon-suche-active-filter-badge-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(28, 119, 166, 0.12);
    color: var(--color-brand-primary);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Badge × Hover */
.waschsalon-suche-active-filter-badge-remove:hover {
    background: rgba(28, 119, 166, 0.22);
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Badge × Fokus */
.waschsalon-suche-active-filter-badge-remove:focus-visible {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 2px;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Premium-Liste mit KI-Beschreibung */
.waschsalon-suche-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--color-border-subtle);
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-background-surface);
    box-shadow: 0 2px 14px var(--color-brand-primary-alpha-10);
}

.waschsalon-suche-list-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.waschsalon-suche-list-item:last-child {
    border-bottom: none;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Listenzeile Hover und Abstand; Textumfluss um iPhone */
.waschsalon-suche-item {
    display: block;
    padding: 1.35rem 1.35rem;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.waschsalon-suche-item:hover {
    background: var(--color-brand-primary-alpha-10);
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | iPhone unter Titel, Beschreibung umfliesst */
.waschsalon-suche-item-image-wrapper {
    float: left;
    width: 92px;
    margin: 0 1rem 0.75rem 0;
    display: block;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Preview Aussenmass */
.waschsalon-suche-item-phone-preview {
    width: 92px;
    margin: 0;
    padding: 0;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Geraeterahmen */
.waschsalon-suche-item-phone-frame {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 6px 9px;
    border-radius: 14px;
    background: linear-gradient(160deg, #3a3a3e 0%, #1c1c1f 55%, #0d0d0f 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 6px 16px rgba(0, 0, 0, 0.28);
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Notch */
.waschsalon-suche-item-phone-notch {
    position: absolute;
    top: 9px;
    left: 50%;
    z-index: 2;
    width: 34px;
    height: 7px;
    margin-left: -17px;
    border-radius: 999px;
    background: #0a0a0c;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Screen Viewport */
.waschsalon-suche-item-phone-screen {
    position: relative;
    width: 100%;
    height: 148px;
    overflow: hidden;
    border-radius: 8px;
    background: #111114;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | Screenshot im iPhone-Screen */
.waschsalon-suche-item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    margin: 0;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone Home-Indicator */
.waschsalon-suche-item-phone-home-indicator {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Content Block fuer Float-Umfluss und Akzentleiste */
.waschsalon-suche-item-content {
    position: relative;
    display: block;
    min-width: 0;
    padding-left: 0.85rem;
}

.waschsalon-suche-item-content > * + * {
    margin-top: 0.65rem;
}

.waschsalon-suche-item-content > .waschsalon-suche-item-image-wrapper {
    margin-top: 0.35rem;
}

.waschsalon-suche-item-content > .waschsalon-suche-item-image-wrapper + .waschsalon-suche-item-description {
    margin-top: 0;
}

.waschsalon-suche-item-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        var(--color-brand-primary) 0%,
        var(--color-complementary-primary) 100%
    );
    pointer-events: none;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Titel-Typografie Premium */
.waschsalon-suche-item-title {
    margin: 0;
    padding: 0;
    text-align: left;
    font-family: var(--font-family-primary);
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--color-brand-primary);
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Click-out Titel-Link */
.waschsalon-suche-item-title-link {
    color: inherit;
    text-decoration: none;
}

.waschsalon-suche-item-title-link:hover {
    color: var(--color-complementary-primary);
    text-decoration: none;
}

.waschsalon-suche-item-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | CTA-Abstand zur Kontaktbox erhoeht */
.waschsalon-suche-item-website-cta {
    display: inline-block;
    clear: both;
    margin-top: 1.5rem;
    text-decoration: none;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | KI-Beschreibung umfliesst iPhone */
.waschsalon-suche-item-description {
    margin: 0;
    padding: 0.7rem 0 0;
    border-top: 1px solid var(--color-border-subtle);
    color: var(--color-text-primary);
    font-size: 0.975rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Kontakt unter Float */
.waschsalon-suche-item-contact {
    clear: both;
    margin: 0;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--color-border-subtle);
    border-radius: 10px;
    background: var(--color-background-primary);
}

.waschsalon-suche-item-contact-row {
    display: grid;
    grid-template-columns: 1.75rem 1fr;
    gap: 0.3rem 0.75rem;
    margin: 0 0 0.45rem;
    align-items: center;
}

.waschsalon-suche-item-contact-row:last-child {
    margin-bottom: 0;
}

/* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | Kontakt-Labels als Icons */
.waschsalon-suche-item-contact-label {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    min-height: 1.75rem;
}

.waschsalon-suche-item-contact-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.waschsalon-suche-item-contact-value {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    word-break: break-word;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Google-Maps-Pin als Adress-Label */
.waschsalon-suche-item-address-text {
    margin: 0;
}

.waschsalon-suche-item-maps-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    text-decoration: none;
}

.waschsalon-suche-item-maps-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.waschsalon-suche-item-website,
.waschsalon-suche-item-phone-link,
.waschsalon-suche-item-email-link,
.waschsalon-suche-item-address-link {
    display: inline;
    margin: 0;
}

.waschsalon-suche-pagination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 2rem 0 0;
    margin: 0;
}

.waschsalon-suche-pagination-link,
.waschsalon-suche-pagination-current {
    display: inline-block;
    min-width: 2.25rem;
    text-align: center;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
}

.waschsalon-suche-pagination-link {
    border: 1px solid var(--color-border-default);
    color: var(--color-brand-primary);
    background: var(--color-background-surface);
}

.waschsalon-suche-pagination-link:hover {
    border-color: var(--color-brand-primary);
    background: var(--color-brand-primary-alpha-10);
}

.waschsalon-suche-pagination-current {
    font-weight: 700;
    color: var(--color-background-primary);
    background: var(--color-brand-primary);
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
@media (min-width: 600px) {
    .waschsalon-suche-filter-header {
        padding: 1rem 1.15rem 0.2rem;
    }

    .waschsalon-suche-form-wrapper {
        padding: 0.65rem 1.15rem 1.1rem;
    }

    .waschsalon-suche-form-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0.65rem;
    }

    .waschsalon-suche-form-row-type {
        margin-top: 0.65rem;
    }

    .waschsalon-suche-country-wrapper {
        flex: 1 1 calc(50% - 0.35rem);
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .waschsalon-suche-city-wrapper {
        flex: 1 1 calc(50% - 0.35rem);
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .waschsalon-suche-facility-type-wrapper {
        flex: 1 1 calc(50% - 0.35rem);
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .waschsalon-suche-service-mode-wrapper {
        flex: 1 1 calc(50% - 0.35rem);
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .waschsalon-suche-price-level-wrapper {
        flex: 1 1 calc(50% - 0.35rem);
        width: auto;
        min-width: 0;
        max-width: 100%;
    }

    .waschsalon-suche-form-row-chips {
        margin-top: 0.7rem;
        gap: 0.45rem;
    }

    .waschsalon-suche-filter-select {
        min-height: 44px;
        font-size: 0.95rem;
    }
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
@media (min-width: 1024px) {
    .waschsalon-suche-filter-panel {
        margin-bottom: 1.75rem;
        border-radius: 16px;
    }

    .waschsalon-suche-filter-header {
        padding: 1.35rem 1.5rem 0.25rem;
    }

    .waschsalon-suche-filter-title {
        font-size: 0.8125rem;
        letter-spacing: 0.12em;
    }

    .waschsalon-suche-form-wrapper {
        padding: 1rem 1.5rem 1.5rem;
    }

    .waschsalon-suche-form-row {
        gap: 1rem;
    }

    .waschsalon-suche-form-row-type {
        margin-top: 0.875rem;
    }

    .waschsalon-suche-facility-type-wrapper {
        flex: 1 1 calc(33.333% - 0.7rem);
    }

    .waschsalon-suche-service-mode-wrapper {
        flex: 1 1 calc(33.333% - 0.7rem);
    }

    .waschsalon-suche-price-level-wrapper {
        flex: 1 1 calc(33.333% - 0.7rem);
    }

    .waschsalon-suche-form-row-chips {
        margin-top: 0.85rem;
        gap: 0.55rem;
    }

    .waschsalon-suche-filter-chip-text {
        min-height: 2.25rem;
        padding: 0.35rem 0.9rem;
        font-size: 0.875rem;
    }

    .waschsalon-suche-filter-select {
        min-height: 52px;
        padding: 0.9rem 1.15rem;
        padding-right: 2.75rem;
        border-radius: 12px;
        font-size: 1.02rem;
        background-position: right 1rem center;
        background-size: 16px 16px;
    }
}

@media (min-width: 768px) {
    .waschsalon-suche-item {
        padding: 1.5rem 1.6rem;
    }

    /* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | iPhone-Rahmen Desktop groesser Float */
    .waschsalon-suche-item-image-wrapper {
        width: 104px;
        margin-right: 1.15rem;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Preview Desktop */
    .waschsalon-suche-item-phone-preview {
        width: 104px;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Screen Desktop */
    .waschsalon-suche-item-phone-screen {
        height: 168px;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Frame Desktop */
    .waschsalon-suche-item-phone-frame {
        padding: 8px 7px 10px;
        border-radius: 16px;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Notch Desktop */
    .waschsalon-suche-item-phone-notch {
        width: 38px;
        height: 8px;
        margin-left: -19px;
        top: 10px;
    }

    .waschsalon-suche-item-title {
        font-size: 1.2rem;
    }

    .waschsalon-suche-item-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Infinite Scroll */
.waschsalon-suche-infinite-scroll-sentinel {
    height: 1px;
    width: 100%;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-ui-list-infinite-scroll, @skill-change-provenance | Loading-GIF beim AJAX-Nachladen */
.waschsalon-suche-infinite-scroll-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.waschsalon-suche-infinite-scroll-loading[hidden] {
    display: none;
}

.waschsalon-suche-infinite-scroll-loading-gif {
    display: block;
    width: 40px;
    height: 40px;
}

.waschsalon-suche-infinite-scroll-loading-label {
    margin: 0;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Hochwertiges No-Results-Panel */
.waschsalon-suche-no-results {
    position: relative;
    margin: 1.5rem 0 0;
    padding: 2rem 1.75rem 2.15rem;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, var(--color-background-surface) 52%, rgba(232, 244, 248, 0.92) 100%);
    border: 1px solid rgba(28, 119, 166, 0.14);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 10px 28px rgba(28, 119, 166, 0.08),
        0 2px 8px rgba(28, 119, 166, 0.05);
    box-sizing: border-box;
}

.waschsalon-suche-no-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-complementary-primary) 0%,
        var(--color-complementary-secondary) 45%,
        var(--color-brand-primary) 100%
    );
    pointer-events: none;
}

.waschsalon-suche-no-results-title {
    position: relative;
    z-index: 1;
    margin: 0 0 0.55rem;
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-brand-primary);
}

.waschsalon-suche-no-results-hint {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 34rem;
    font-family: var(--font-family-primary);
    font-size: 0.9375rem;
    line-height: 1.55;
    font-weight: 500;
    color: var(--color-text-muted);
}

@media (max-width: 575px) {
    .waschsalon-suche-page-title {
        font-size: 1.5rem;
    }

    .waschsalon-suche-item {
        padding: 1.15rem 1.1rem;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | iPhone Mobile mit Float, Text umfliesst */
    .waschsalon-suche-item-image-wrapper {
        float: left;
        width: 80px;
        margin: 0.2rem 0.75rem 0.55rem 0;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Preview Mobile */
    .waschsalon-suche-item-phone-preview {
        width: 80px;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Screen Mobile */
    .waschsalon-suche-item-phone-screen {
        height: 128px;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Frame Mobile */
    .waschsalon-suche-item-phone-frame {
        padding: 6px 5px 8px;
        border-radius: 12px;
    }

    /* Änderungsprotokoll: 2026-07-20 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | iPhone-Notch Mobile */
    .waschsalon-suche-item-phone-notch {
        width: 30px;
        height: 6px;
        margin-left: -15px;
        top: 8px;
    }

    .waschsalon-suche-item-content {
        padding-left: 0.75rem;
    }

    /* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Icon-Spalte auch mobil beibehalten */
    .waschsalon-suche-item-contact-row {
        grid-template-columns: 1.75rem 1fr;
        gap: 0.3rem 0.6rem;
    }

    /* Änderungsprotokoll: 2026-07-20 | cursor-agent | @skill-css-rules, @skill-change-provenance | Website-CTA mobil volle Breite und Abstand zur Kontaktbox */
    .waschsalon-suche-item-website-cta {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-self: stretch;
        margin-top: 1.5rem;
        text-align: center;
        min-height: 52px;
        line-height: 1.2;
        padding: 0.95rem 1.75rem;
    }
}

/* Änderungsprotokoll: 2026-07-20 | subagent-create-screen | @skill-css-rules, @skill-change-provenance | View-Tabs Liste/Globus (Light-Theme-Variante) */
.waschsalon-suche-container .waschsalon-view-tabs-toolbar {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    border: none;
}

.waschsalon-suche-container .waschsalon-view-tabs-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.waschsalon-suche-container .waschsalon-view-tabs-nav {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: 0.25rem;
    width: min(100%, 22.5rem);
    max-width: 100%;
    margin: 0 auto;
    padding: 0.25rem;
    border: 1px solid rgba(28, 119, 166, 0.18);
    border-radius: 999px;
    background: var(--color-background-surface);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 6px 18px rgba(28, 119, 166, 0.1);
}

.waschsalon-suche-container .waschsalon-view-tabs-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.625rem;
    margin: 0;
    padding: 0.5625rem 1.25rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.waschsalon-suche-container .waschsalon-view-tabs-nav #waschsalon-view-tab-list::before,
.waschsalon-suche-container .waschsalon-view-tabs-nav #waschsalon-view-tab-globe::before {
    content: '';
    flex-shrink: 0;
    width: 1.0625rem;
    height: 1.0625rem;
    background-color: currentColor;
    opacity: 0.85;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: opacity 0.2s ease;
}

.waschsalon-suche-container .waschsalon-view-tabs-nav #waschsalon-view-tab-list::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E");
}

.waschsalon-suche-container .waschsalon-view-tabs-nav #waschsalon-view-tab-globe::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

.waschsalon-suche-container .waschsalon-view-tabs-link:hover {
    color: var(--color-brand-accent);
    background: rgba(28, 119, 166, 0.08);
}

.waschsalon-suche-container .waschsalon-view-tabs-link:hover::before {
    opacity: 1;
}

.waschsalon-suche-container .waschsalon-view-tabs-link-active {
    border: none;
    background: linear-gradient(165deg, var(--color-brand-secondary) 0%, var(--color-brand-primary) 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.025em;
    box-shadow:
        0 2px 4px rgba(28, 119, 166, 0.28),
        0 8px 18px rgba(28, 119, 166, 0.28);
}

.waschsalon-suche-container .waschsalon-view-tabs-link-active::before {
    opacity: 1;
}

.waschsalon-suche-container .waschsalon-view-tabs-link-active:hover {
    color: #ffffff;
    background: linear-gradient(165deg, var(--color-brand-secondary) 0%, var(--color-brand-primary) 100%);
}

@media (max-width: 575px) {
    .waschsalon-suche-container .waschsalon-view-tabs-toolbar {
        margin-bottom: 1rem;
    }

    .waschsalon-suche-container .waschsalon-view-tabs-nav {
        width: 100%;
    }

    .waschsalon-suche-container .waschsalon-view-tabs-link {
        padding-inline: 0.75rem;
        font-size: 0.75rem;
        letter-spacing: 0.01em;
    }
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile/iPad kompakter */
@media (max-width: 1023px) {
    .waschsalon-suche-filter-select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 44px;
        height: 44px;
        padding: 0.4rem 0.75rem;
        padding-right: 2.1rem;
        font-size: 0.875rem;
        line-height: 1.2;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .waschsalon-suche-filter-chip-text {
        min-height: 44px;
        padding: 0.25rem 0.6rem;
        font-size: 0.78125rem;
        line-height: 1.15;
    }

    .waschsalon-suche-form-wrapper {
        padding: 0.45rem 0.85rem 0.85rem;
    }

    .waschsalon-suche-filter-header {
        padding: 0.75rem 0.85rem 0.05rem;
    }

    .waschsalon-suche-form-row {
        gap: 0.4rem;
    }

    .waschsalon-suche-form-row-type {
        margin-top: 0.4rem;
    }

    .waschsalon-suche-form-row-chips {
        gap: 0.35rem;
        margin-top: 0.45rem;
    }
}

/* Änderungsprotokoll: 2026-07-20 | subagent-optimize-mobile-view | @skill-css-rules, @skill-change-provenance | Filter Mobile dichter, Chips kompakter */
@media (max-width: 576px) {
    .waschsalon-suche-filter-select {
        min-height: 44px;
        height: 44px;
        padding: 0.35rem 0.7rem;
        padding-right: 2rem;
        font-size: 0.875rem;
        line-height: 1.15;
    }

    .waschsalon-suche-filter-chip-text {
        min-height: 36px;
        padding: 0.2rem 0.55rem;
        font-size: 0.75rem;
    }

    .waschsalon-suche-filter-panel {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .waschsalon-suche-form-wrapper {
        padding: 0.35rem 0.7rem 0.7rem;
    }

    .waschsalon-suche-filter-header {
        padding: 0.65rem 0.7rem 0;
    }

    .waschsalon-suche-form-row {
        gap: 0.35rem;
    }

    .waschsalon-suche-form-row-chips {
        gap: 0.3rem;
        margin-top: 0.4rem;
    }
}
