/* Home business setup search — blue/slate theme (matches booking widget family) */
.bssh-wrap {
    --bssh-accent: #1e40af;
    --bssh-accent-hover: #1e3a8a;
    --bssh-highlight: #2563eb;
    --bssh-border: #e2e8f0;
    --bssh-radius: 0.875rem;
}

.bssh-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.35rem;
    padding-left: 0.65rem;
    border-left: 3px solid var(--bssh-highlight);
}

.bssh-heading i { color: #1e40af; }

.bssh-sub {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1rem;
    max-width: 44rem;
    line-height: 1.5;
}

.bssh-search-card {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
    border: 1px solid var(--bssh-border);
    border-radius: calc(var(--bssh-radius) + 0.15rem);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    border-left: 3px solid var(--bssh-highlight);
}

@media (min-width: 640px) {
    .bssh-search-card { padding: 1.15rem 1.25rem; }
}

.bssh-validation {
    display: none;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.85rem;
    border-radius: 0.65rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 0.875rem;
}

.bssh-validation.is-visible { display: flex; }

.bssh-grid {
    display: grid;
    gap: 0.85rem;
    width: 100%;
}

.bssh-grid--primary {
    grid-template-columns: minmax(0, 1fr);
}

.bssh-grid--secondary {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0.85rem;
}

@media (min-width: 640px) {
    .bssh-grid--primary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bssh-grid--secondary { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (min-width: 1024px) {
    .bssh-grid--primary { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .bssh-grid--secondary { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); }
}

.bssh-field label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.bssh-field-icon {
    color: var(--bssh-accent);
    font-size: 0.75rem;
    width: 0.9rem;
    text-align: center;
}

.bssh-field input,
.bssh-field select {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.65rem;
    font-size: 0.95rem;
    background: #fff;
}

.bssh-field input:focus,
.bssh-field select:focus {
    outline: none;
    border-color: var(--bssh-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.bssh-actions {
    margin-top: 0.85rem;
}

.bssh-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
}

.bssh-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.bssh-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

.bssh-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.bssh-summary-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
    font-size: 0.8rem;
    font-weight: 600;
}

.bssh-summary-pill--muted {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #64748b;
    font-weight: 500;
}

.bssh-summary-pill.hidden { display: none; }

.bssh-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
}

.bssh-popular-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 0.15rem;
}

.bssh-chip {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #fff;
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
}

.bssh-chip:hover,
.bssh-chip.is-active {
    background: #dbeafe;
    border-color: var(--bssh-highlight);
}

.bssh-chip:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}
