
.mcp-quick-search { font-family: 'Inter', sans-serif; position: relative; }
.qs-form {
    background: #fff; border-radius: 16px; padding: 28px 40px 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15); position: relative; z-index: 10;
}
.qs-label { font-family: 'Lexend', sans-serif; font-size: 15px; font-weight: 600; color: #111; margin-bottom: 10px; display: block; text-align: center; }
/* Category TABS */
.qs-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.qs-tab {
    padding: 7px 14px; background: #fff; border: 1.5px solid #E0E0E0; border-radius: 8px;
    font-size: 12.5px; font-weight: 500; color: #555; cursor: pointer; transition: all 0.2s;
    white-space: nowrap; font-family: 'Inter', sans-serif; line-height: 1.3;
}
.qs-tab:hover { border-color: #F5C800; color: #111; background: #FFFDF0; }
.qs-tab.active { background: #F5C800; border-color: #F5C800; color: #111; font-weight: 600; }
.qs-row { margin-top: 16px; }
.qs-cats-row { margin-top: 0; }
.qs-dates { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 12px; align-items: end; }
.qs-field label { font-size: 13px; font-weight: 600; color: #111; margin-bottom: 6px; display: block; letter-spacing: -0.01em; }
/* Picker triggers */
.qs-picker-trigger {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border: 1px solid #E5E5E5; border-radius: 10px;
    font-size: 14px; color: #111; background: #fff; cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s; user-select: none; min-height: 42px;
    box-sizing: border-box;
}
.qs-picker-trigger:hover { border-color: #ccc; }
.qs-picker-trigger.active { border-color: #F5C800; box-shadow: 0 0 0 3px rgba(245,200,0,0.15); }
.qs-picker-trigger i { color: #999; font-size: 14px; flex-shrink: 0; }
.qs-picker-trigger .qs-chev { font-size: 10px; margin-left: auto; }
.qs-picker-trigger .qs-picker-text { flex: 1; }
.qs-picker-trigger .qs-picker-text.placeholder { color: #999; }
/* Overlay */
.qs-overlay { display: none; position: fixed; inset: 0; z-index: 98; }
.qs-overlay.active { display: block; }
/* Dropdowns */
.qs-dropdown {
    display: none; position: absolute; left: 0; right: 0;
    z-index: 99; background: #fff; border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18); border: 1px solid #E5E5E5;
    animation: qsDropIn 0.2s ease;
}
.qs-dropdown.open { display: block; }
@keyframes qsDropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
/* Calendar */
.qs-cal-drop { padding: 16px 8px; margin-top: 8px; }
.qs-cal-layout {
    display: flex; align-items: center; gap: 8px;
}
.qs-cal-nav {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid #E5E5E5;
    background: #fff; cursor: pointer; display: flex; align-items: center;
    justify-content: center; font-size: 13px; color: #444; transition: all 0.2s;
    flex-shrink: 0;
}
.qs-cal-nav:hover { background: #F5F5F5; border-color: #ccc; }
.qs-cal-nav:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.qs-cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; flex: 1; min-width: 0; }
.qs-cal-month-name { font-family: 'Lexend', sans-serif; font-size: 14px; font-weight: 600; color: #111; text-align: center; margin-bottom: 8px; text-transform: capitalize; }
.qs-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; text-align: center; }
.qs-cal-dow { font-size: 10px; font-weight: 600; color: #999; padding: 4px 0; text-transform: uppercase; letter-spacing: 0.02em; }
.qs-cal-day {
    padding: 6px 2px; font-size: 13px; color: #111; border-radius: 6px;
    cursor: pointer; transition: all 0.15s; position: relative;
}
.qs-cal-day:hover { background: #FFF3CC; }
.qs-cal-day.past { color: #ccc; pointer-events: none; }
.qs-cal-day.today { font-weight: 700; }
.qs-cal-day.selected { background: #F5C800; color: #111; font-weight: 600; border-radius: 6px; }
.qs-cal-day.in-range { background: #FFF3CC; border-radius: 0; }
.qs-cal-day.range-start { background: #F5C800; color: #111; font-weight: 600; border-radius: 6px 0 0 6px; }
.qs-cal-day.range-end { background: #F5C800; color: #111; font-weight: 600; border-radius: 0 6px 6px 0; }
.qs-cal-empty { padding: 6px 2px; }
/* Time picker */
.qs-time-drop { padding: 20px; margin-top: 8px; max-width: 380px; }
.qs-time-drop-title { font-family: 'Lexend', sans-serif; font-size: 14px; font-weight: 600; color: #111; margin-bottom: 12px; }
.qs-time-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.qs-time-slot {
    padding: 8px 4px; font-size: 13px; text-align: center; border-radius: 8px;
    border: 1px solid #E5E5E5; cursor: pointer; transition: all 0.15s;
    background: #fff; color: #111; font-family: 'Inter', sans-serif;
}
.qs-time-slot:hover { border-color: #F5C800; background: #FFF3CC; }
.qs-time-slot.selected { background: #F5C800; border-color: #F5C800; font-weight: 600; }
/* Standalone search row */
.qs-search-row { margin-top: 20px; }
.qs-search-row .qs-search-btn { width: 100%; height: 48px; font-size: 16px; border-radius: 12px; }
/* Options bar — hidden for now */
.qs-options-bar {
    display: none;
}
.qs-inline-field {
    display: flex; align-items: center; gap: 4px;
}
.qs-inline-label {
    font-size: 13px; color: #666; white-space: nowrap;
}
.qs-inline-select {
    border: none; background: transparent; font-size: 13px; font-weight: 700;
    color: #111; cursor: pointer; font-family: 'Inter', sans-serif;
    padding: 4px 2px; -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 2px center; padding-right: 16px;
}
.qs-inline-select:focus { outline: none; }
.qs-km-select { text-align: right; direction: rtl; }
.qs-km-select option { direction: ltr; }
/* KM inline */
.qs-km-field {
    margin-left: auto;
    display: flex; align-items: center; gap: 4px; flex-wrap: nowrap;
    position: relative;
}
.qs-km-field .qs-km-hint {
    position: absolute; bottom: -16px; right: 0; white-space: nowrap;
}
.qs-km-custom-wrap {
    display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
}
.qs-km-custom {
    border: none; border-bottom: 1.5px solid #ccc; background: transparent;
    font-size: 13px; font-weight: 700; color: #111; width: 50px; text-align: center;
    font-family: 'Inter', sans-serif; padding: 2px 4px; -moz-appearance: textfield;
    transition: border-color 0.2s;
}
.qs-km-custom::-webkit-inner-spin-button,
.qs-km-custom::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.qs-km-custom:focus { outline: none; border-bottom-color: #F5C800; }
.qs-km-hint {
    font-size: 11.5px; color: #999; font-style: italic; white-space: nowrap;
}
.qs-km-hint strong { color: #999; font-weight: 500; }
/* Search button */
.qs-search-field { margin-left: 8px; }
.qs-search-btn {
    padding: 9px 32px; background: #F5C800; border: none; border-radius: 10px;
    font-size: 14px; font-weight: 600; color: #111; cursor: pointer; transition: all 0.2s;
    white-space: nowrap; font-family: 'Inter', sans-serif; height: 36px;
    display: flex; align-items: center; justify-content: center;
}
.qs-search-btn:hover { background: #D4AD00; }
/* Results */
.qs-results { margin-top: 32px; animation: qsFadeIn 0.4s ease; }
@keyframes qsFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.qs-results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.qs-results-title { font-family: 'Lexend', sans-serif; font-size: 22px; font-weight: 600; color: #fff; letter-spacing: -0.03em; }
.qs-results-count { font-size: 14px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); padding: 4px 14px; border-radius: 999px; }
.qs-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qs-vcard { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #E5E5E5; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.qs-vcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.qs-vcard-img { width: 100%; aspect-ratio: 16/10; object-fit: contain; background: #F5F5F5; padding: 16px; box-sizing: border-box; }
.qs-vcard-body { padding: 16px 20px; flex-grow: 1; }
.qs-vcard-cat { display: inline-block; font-size: 11px; font-weight: 500; background: #FFF3CC; color: #111; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.qs-vcard-name { font-family: 'Lexend', sans-serif; font-size: 15px; font-weight: 600; color: #111; line-height: 1.3; letter-spacing: -0.02em; }
.qs-vcard-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid #E5E5E5; }
.qs-vcard-price { font-size: 12px; color: #999; line-height: 1.2; }
.qs-vcard-price strong { display: block; font-size: 20px; font-weight: 700; color: #111; margin: 2px 0; }
.qs-vcard-price span { font-size: 13px; color: #666; }
.qs-vcard-cta { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; background: #F5C800; border-radius: 999px; font-size: 13px; font-weight: 600; color: #111; text-decoration: none; transition: background 0.2s; }
.qs-vcard-cta:hover { background: #D4AD00; color: #111; }
.qs-no-results { text-align: center; padding: 48px 24px; }
.qs-no-results i { font-size: 48px; margin-bottom: 16px; display: block; color: rgba(255,255,255,0.3); }
.qs-no-results p { color: rgba(255,255,255,0.6); font-size: 15px; }
/* Responsive */
@media (max-width: 991px) {
    .qs-dates { grid-template-columns: 1fr 1fr; }
    .qs-options-bar { gap: 12px; }
    .qs-km-field { margin-left: 0; }
    .qs-results-grid { grid-template-columns: repeat(2, 1fr); }
    .qs-cal-months { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
    .qs-form { padding: 14px 16px 16px; border-radius: 12px; }
    .qs-dates { grid-template-columns: 1fr 1fr; gap: 8px; }
    .qs-options-bar { flex-direction: column; align-items: stretch; gap: 10px; }
    .qs-inline-field { justify-content: space-between; }
    .qs-km-field { margin-left: 0; }
    .qs-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .qs-results-grid { grid-template-columns: 1fr; }
    .qs-search-field { margin-left: 0; }
    .qs-search-btn { width: 100%; }
    .qs-time-grid { grid-template-columns: repeat(4, 1fr); }
}
