/* K360 advanced search — v2.0 */

/* ─── Variables globales ─────────────────────────────────────────────────── */
.k360-search{
  --k360-search-radius:999px;
  --k360-search-border:var(--k360-search-border-custom,var(--k360-input-border,var(--k360-border,#e2e8f0)));
  --k360-search-bg:var(--k360-search-bg-custom,var(--k360-input-bg,#fff));
  --k360-search-text:var(--k360-search-text-custom,var(--k360-text,#0f172a));
  --k360-search-placeholder:var(--k360-search-placeholder-custom,var(--k360-text-muted,#64748b));
  --k360-search-cats-color:var(--k360-search-cats-custom,var(--k360-search-text));
  --k360-search-btn-bg:var(--k360-search-btn-bg-custom,transparent);
  --k360-search-btn-text:var(--k360-search-btn-text-custom,var(--k360-accent,#ad0000));
  --k360-search-icon:var(--k360-search-icon-custom,var(--k360-search-btn-text));
  --k360-search-muted:var(--k360-search-placeholder);
  --k360-search-accent:var(--k360-accent,#ad0000);
  --k360-search-on-accent:var(--k360-on-accent,#fff);
  --k360-search-surface:var(--k360-surface,#f8fafc);
  --k360-search-soft:var(--k360-accent-soft,#ffebeb);
  --k360-search-fs:14px;
  --k360-search-cats-fs:13px;
  --k360-search-shadow:0 4px 24px rgba(15,23,42,.12);
  display:inline-flex;align-items:stretch;gap:.5rem;
  width:auto;max-width:100%;vertical-align:middle;
  font-size:var(--k360-search-fs);box-sizing:border-box;margin:0;
  color:var(--k360-search-text);position:relative;z-index:5;min-width:0;
}
.k360-search *,.k360-search *::before,.k360-search *::after{box-sizing:border-box}
/* Solo la barra PC: no tocar modal / FAB / honeypots Escudo */
.k360-search-bar-form input:not([aria-hidden="true"]):not([tabindex="-1"]),
.k360-search-bar-form select,
.k360-search-bar-form > .k360-search-submit,
.k360-search-shell > input:not([aria-hidden="true"]),
.k360-search-shell > select,
.k360-search-shell > .k360-search-submit{
  float:none!important;
  position:relative!important;
  top:auto!important;right:auto!important;bottom:auto!important;left:auto!important;
  max-width:100%;
}
/* Honeypots anti-spam (Escudo, etc.) siempre fuera de vista */
.k360-search input[aria-hidden="true"],
.k360-search input[name="website_url"],
.k360-search input.escudo-honeypot{
  position:absolute!important;left:-9999px!important;top:auto!important;
  width:1px!important;height:1px!important;opacity:0!important;
  overflow:hidden!important;pointer-events:none!important;margin:0!important;padding:0!important;
  border:0!important;clip:rect(0,0,0,0)!important;
}
.k360-search--shape-square{--k360-search-radius:6px}
.k360-search--block,.k360-search--full{display:flex;width:100%;max-width:100%}
.k360-search--pc-bar{min-width:0;max-width:100%}
.k360-search--pc-bar.k360-search--full{width:100%}

/* ─── Barra clásica (pc_mode=bar) ───────────────────────────────────────── */
.k360-search-bar-form{
  display:flex;align-items:stretch;gap:.5rem;width:100%;min-width:0;margin:0;
}
.k360-search-shell{
  flex:1 1 auto;display:flex;flex-wrap:nowrap;align-items:stretch;min-width:0;width:100%;
  background:var(--k360-search-bg);border-radius:var(--k360-search-radius);overflow:hidden;
}
.k360-search--border .k360-search-shell{border:1px solid var(--k360-search-border)}
.k360-search--noborder .k360-search-shell{border:1px solid transparent;box-shadow:0 1px 2px rgba(15,23,42,.06)}
.k360-search-field{
  flex:1 1 6rem;min-width:0;border:0;background:transparent;padding:.7rem .85rem;
  color:var(--k360-search-text);font:inherit;font-size:var(--k360-search-fs);outline:none;
  line-height:1.3;height:auto;min-height:2.6rem;
}
.k360-search-field::placeholder{color:var(--k360-search-placeholder);opacity:1}
.k360-search-cats{
  flex:0 1 9rem;min-width:5.5rem;max-width:12rem;width:auto;
  border:0;border-left:1px solid var(--k360-search-border);
  background-color:transparent;padding:.55rem .65rem;color:var(--k360-search-cats-color);
  font:inherit;font-size:var(--k360-search-cats-fs);line-height:1.3;min-height:2.6rem;
  appearance:none;-webkit-appearance:none;-moz-appearance:none;
  text-overflow:ellipsis;white-space:nowrap;overflow:hidden;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2364748b' d='M1 1l5 5 5-5'/></svg>");
  background-repeat:no-repeat;background-position:right .55rem center;padding-right:1.45rem;cursor:pointer;
  scrollbar-width:thin;scrollbar-color:var(--k360-search-border) transparent;
}
.k360-search-cats::-webkit-scrollbar{width:5px;height:5px}
.k360-search-cats::-webkit-scrollbar-thumb{background:var(--k360-search-border);border-radius:99px}
.k360-search-cats::-webkit-scrollbar-track{background:transparent}
.k360-search-submit{
  appearance:none;border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:.35rem;
  background:var(--k360-search-btn-bg);color:var(--k360-search-btn-text);padding:.55rem .85rem;
  font:inherit;font-size:var(--k360-search-fs);font-weight:600;transition:opacity .15s;
  flex:0 0 auto;align-self:stretch;min-width:2.5rem;min-height:2.6rem;line-height:1;
}
.k360-search-submit:hover{opacity:.85}
.k360-search-submit .k360-search-icon,
.k360-search-submit .k360-search-icon svg{color:var(--k360-search-icon);stroke:currentColor}
.k360-search--layout-inside .k360-search-submit{
  border-left:1px solid var(--k360-search-border);border-radius:0;
}
.k360-search--layout-adjacent{gap:0}
.k360-search--layout-adjacent .k360-search-shell{border-top-right-radius:0;border-bottom-right-radius:0}
.k360-search--layout-adjacent .k360-search-submit{
  background:var(--k360-search-btn-bg-custom,var(--k360-search-accent));
  color:var(--k360-search-btn-text-custom,var(--k360-search-on-accent));
  border-radius:0 var(--k360-search-radius) var(--k360-search-radius) 0;padding:0 1.1rem;
}
.k360-search--layout-adjacent.k360-search--border .k360-search-submit{
  border:1px solid var(--k360-search-border);border-left:0;
}
.k360-search--layout-split .k360-search-submit{
  background:var(--k360-search-btn-bg-custom,var(--k360-search-accent));
  color:var(--k360-search-btn-text-custom,var(--k360-search-on-accent));
  border-radius:var(--k360-search-radius);padding:0 1.15rem;min-width:3rem;
}
.k360-search-icon{display:inline-flex;line-height:0;color:var(--k360-search-icon)}
.k360-search-icon--lg svg{width:22px;height:22px}
.k360-search-btn-text{white-space:nowrap}

/* ─── Estilos visuales ───────────────────────────────────────────────────── */
.k360-search--style-soft .k360-search-shell{
  background:var(--k360-search-soft);border-color:transparent;box-shadow:none;
}
.k360-search--style-soft.k360-search--border .k360-search-shell{border-color:transparent}
.k360-search--style-soft .k360-search-cats{border-left-color:rgba(15,23,42,.08)}
.k360-search--style-soft.k360-search--layout-inside .k360-search-submit{border-left-color:rgba(15,23,42,.08)}

.k360-search--style-minimal .k360-search-shell{
  background:transparent;border-radius:0;border:0;border-bottom:2px solid var(--k360-search-border);box-shadow:none;
}
.k360-search--style-minimal.k360-search--border .k360-search-shell{border:0;border-bottom:2px solid var(--k360-search-accent)}
.k360-search--style-minimal .k360-search-cats{border-left:0}
.k360-search--style-minimal.k360-search--layout-inside .k360-search-submit{border-left:0}

.k360-search--style-filled .k360-search-shell{background:var(--k360-search-surface);border-color:transparent;box-shadow:none}
.k360-search--style-filled .k360-search-submit,
.k360-search--style-filled.k360-search--layout-inside .k360-search-submit{
  background:var(--k360-search-accent);color:var(--k360-search-on-accent);border-left:0;
}
.k360-search--style-filled.k360-search--layout-inside .k360-search-shell{padding-right:0}

.k360-search--style-outline .k360-search-shell{background:transparent;border:2px solid var(--k360-search-accent);box-shadow:none}
.k360-search--style-outline .k360-search-cats{border-left-color:var(--k360-search-accent)}
.k360-search--style-outline.k360-search--layout-inside .k360-search-submit{border-left-color:var(--k360-search-accent);color:var(--k360-search-accent)}
.k360-search--style-outline.k360-search--layout-adjacent .k360-search-submit,
.k360-search--style-outline.k360-search--layout-split .k360-search-submit{
  background:var(--k360-search-accent);color:var(--k360-search-on-accent);
}

/* ─── Trigger genérico (expandable / overlay) ────────────────────────────── */
.k360-search-trigger{
  appearance:none;border:0;cursor:pointer;display:inline-flex;align-items:center;gap:.4rem;
  background:transparent;color:var(--k360-search-accent);
  padding:.5rem;font:inherit;font-size:var(--k360-search-fs);font-weight:600;
  border-radius:var(--k360-search-radius);transition:background .15s;
}
.k360-search-trigger:hover{background:var(--k360-search-soft)}
.k360-search--border .k360-search-trigger{
  border:1px solid var(--k360-search-border);padding:.45rem .9rem;
}
.k360-search-close{
  appearance:none;border:0;cursor:pointer;background:transparent;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--k360-search-muted);padding:.4rem;border-radius:50%;
  transition:background .15s,color .15s;line-height:0;flex-shrink:0;
}
.k360-search-close:hover{background:var(--k360-search-surface);color:var(--k360-search-text)}

/* ─── MODO EXPANDABLE ────────────────────────────────────────────────────── */
.k360-search--pc-expandable{position:relative}
.k360-search-expand-panel{
  position:absolute;top:50%;right:0;transform:translateY(-50%) scaleX(0);transform-origin:right center;
  width:320px;max-width:90vw;
  background:var(--k360-search-bg);border-radius:var(--k360-search-radius);
  box-shadow:var(--k360-search-shadow);
  opacity:0;pointer-events:none;
  transition:transform .22s cubic-bezier(.4,0,.2,1), opacity .18s;
  z-index:1000;overflow:hidden;
}
.k360-search--pc-expandable.k360-is-open .k360-search-expand-panel{
  transform:translateY(-50%) scaleX(1);opacity:1;pointer-events:all;
}
.k360-search-expand-form{
  display:flex;align-items:center;gap:0;padding:.35rem .35rem .35rem .75rem;
}
.k360-search-expand-form .k360-search-field{
  flex:1;border:0;background:transparent;font:inherit;font-size:var(--k360-search-fs);
  outline:none;padding:.5rem 0;color:var(--k360-search-text);
}
.k360-search-expand-form .k360-search-field::placeholder{color:var(--k360-search-muted)}
.k360-search-expand-form .k360-search-cats{
  flex:0 0 auto;max-width:9rem;border:0;border-left:1px solid var(--k360-search-border);
  font:inherit;font-size:var(--k360-search-cats-fs);appearance:none;-webkit-appearance:none;
  background:transparent;padding:.4rem .75rem;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path fill='%2364748b' d='M1 1l4 4 4-4'/></svg>");
  background-repeat:no-repeat;background-position:right .5rem center;padding-right:1.4rem;cursor:pointer;
}
.k360-search-expand-form .k360-search-submit{color:var(--k360-search-accent);padding:.4rem .6rem}
.k360-search-expand-form .k360-search-close{margin-left:.1rem}

/* ─── MODO OVERLAY ───────────────────────────────────────────────────────── */
.k360-search-overlay{
  position:fixed;inset:0;z-index:99999;display:flex;align-items:flex-start;justify-content:center;
  padding-top:8vh;
}
.k360-search-overlay[hidden]{display:none}
.k360-search-overlay-backdrop{
  position:absolute;inset:0;background:rgba(15,23,42,.6);
  animation:k360FadeIn .2s ease;
}
.k360-search-overlay-box{
  position:relative;width:min(680px,90vw);
  background:var(--k360-search-bg);border-radius:16px;
  box-shadow:var(--k360-search-shadow);
  animation:k360SlideDown .22s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
}
.k360-search-overlay-head{
  display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;
  border-bottom:1px solid var(--k360-search-border);
}
.k360-search-overlay-form{
  display:flex;align-items:center;gap:.5rem;flex:1;min-width:0;
}
.k360-search-overlay-form .k360-search-field{
  flex:1;border:0;background:transparent;font-size:1.125rem;outline:none;
  padding:.4rem 0;color:var(--k360-search-text);
}
.k360-search-overlay-form .k360-search-field::placeholder{color:var(--k360-search-muted)}
.k360-search-overlay-form .k360-search-cats{
  flex:0 0 auto;max-width:10rem;border:0;border-left:1px solid var(--k360-search-border);
  font:inherit;font-size:var(--k360-search-cats-fs);appearance:none;-webkit-appearance:none;
  background:transparent;padding:.45rem .75rem;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path fill='%2364748b' d='M1 1l4 4 4-4'/></svg>");
  background-repeat:no-repeat;background-position:right .5rem center;padding-right:1.4rem;cursor:pointer;
}
.k360-search-overlay .k360-search-close{width:2.25rem;height:2.25rem;flex-shrink:0}

/* ─── Panel de resultados AJAX ───────────────────────────────────────────── */
.k360-search-live-panel{
  position:absolute;top:calc(100% + .4rem);left:0;right:0;
  background:var(--k360-search-bg);border-radius:12px;
  box-shadow:var(--k360-search-shadow);z-index:999;
  max-height:420px;overflow-y:auto;
  scrollbar-width:thin;scrollbar-color:var(--k360-search-border) transparent;
}
.k360-search-live-panel::-webkit-scrollbar{width:5px}
.k360-search-live-panel::-webkit-scrollbar-thumb{background:var(--k360-search-border);border-radius:99px}
.k360-search-live-panel::-webkit-scrollbar-track{background:transparent}
.k360-search-live-panel[hidden]{display:none}
/* Para overlay: integrado dentro del box */
.k360-search-overlay-box .k360-search-live-panel{
  position:static;border-radius:0;box-shadow:none;max-height:360px;
}
/* Para expandable: integrado */
.k360-search-expand-panel .k360-search-live-panel{
  position:static;border-radius:0;box-shadow:none;max-height:320px;
}

.k360-live-panel-section{padding:.65rem .75rem .3rem;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--k360-search-muted)}
.k360-live-item{
  display:flex;align-items:center;gap:.75rem;padding:.6rem .75rem;
  text-decoration:none;color:var(--k360-search-text);transition:background .12s;cursor:pointer;
}
.k360-live-item:hover,.k360-live-item:focus{background:var(--k360-search-surface);outline:none}
.k360-live-item-thumb{
  width:42px;height:42px;object-fit:cover;border-radius:6px;flex-shrink:0;
  background:var(--k360-search-surface);
}
.k360-live-item-thumb-placeholder{
  width:42px;height:42px;border-radius:6px;flex-shrink:0;background:var(--k360-search-surface);
  display:flex;align-items:center;justify-content:center;color:var(--k360-search-muted);
}
.k360-live-item-body{flex:1;min-width:0}
.k360-live-item-title{font-size:.875rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.k360-live-item-price{font-size:.8rem;color:var(--k360-search-accent);font-weight:700;margin-top:.1rem}
.k360-live-item-type{font-size:.7rem;color:var(--k360-search-muted);margin-top:.05rem}
.k360-live-empty{padding:1rem .75rem;text-align:center;color:var(--k360-search-muted);font-size:.875rem}
.k360-live-footer{padding:.5rem .75rem;text-align:center;border-top:1px solid var(--k360-search-border)}
.k360-live-footer a{font-size:.8rem;color:var(--k360-search-accent);text-decoration:none;font-weight:600}
.k360-live-footer a:hover{text-decoration:underline}
.k360-live-loading{padding:.9rem;text-align:center;color:var(--k360-search-muted);font-size:.85rem}

/* ─── MOBILE: trigger de barra compacto ──────────────────────────────────── */
.k360-search-mob-trigger{
  display:none; /* solo visible en mobile */
  align-items:center;gap:.5rem;
  appearance:none;border:1px solid var(--k360-search-border);cursor:pointer;
  background:var(--k360-search-bg);color:var(--k360-search-muted);
  padding:.6rem .9rem;border-radius:var(--k360-search-radius);
  font:inherit;font-size:var(--k360-search-fs);width:100%;text-align:left;
  transition:border-color .15s;
}
.k360-search-mob-trigger:hover{border-color:var(--k360-search-accent)}
.k360-search-mob-trigger-text{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.k360-search--noborder .k360-search-mob-trigger{box-shadow:0 1px 3px rgba(15,23,42,.08)}
.k360-search-mob-trigger--icon{
  width:2.6rem;height:2.6rem;padding:0;justify-content:center;flex:0 0 auto;
  color:var(--k360-search-accent);
}
.k360-search-mob-trigger--fab{
  position:fixed;right:1rem;bottom:1.15rem;z-index:99990;
  width:3.25rem;height:3.25rem;min-width:3.25rem;padding:0;justify-content:center;
  border:0;border-radius:999px;
  background:var(--k360-search-accent);color:var(--k360-search-on-accent);
  box-shadow:0 8px 22px rgba(15,23,42,.22);
}

/* ─── MOBILE: modal full-screen / sheet (siempre al viewport, no al header) ─ */
.k360-search-mob-modal,
.k360-search-mob-modal.k360-search-mob-modal--ported{
  position:fixed!important;
  inset:0!important;top:0!important;right:0!important;bottom:0!important;left:0!important;
  width:100vw!important;max-width:100vw!important;
  height:100vh!important;height:100dvh!important;
  margin:0!important;padding:0!important;
  z-index:2147483000!important;
  background:var(--k360-search-bg,#fff);
  display:flex;flex-direction:column;
  overscroll-behavior:contain;
  transform:none!important;
  float:none!important;
}
.k360-search-mob-modal[hidden]{display:none!important}
.k360-search-mob-modal--sheet{
  inset:auto 0 0 0!important;top:auto!important;
  height:auto!important;max-height:78vh!important;
  border-radius:18px 18px 0 0;
  box-shadow:0 -10px 32px rgba(15,23,42,.18);
}
.k360-search-mob-modal--sheet::before{
  content:"";position:fixed;inset:0;background:rgba(15,23,42,.45);z-index:-1;
}
.k360-search-mob-sheet-handle{
  width:40px;height:4px;border-radius:999px;background:var(--k360-search-border);
  margin:.55rem auto .15rem;flex-shrink:0;
}
.k360-search-mob-modal-head{
  display:flex;align-items:center;gap:.5rem;
  padding:.75rem 1rem;border-bottom:1px solid var(--k360-search-border);
  flex-shrink:0;background:inherit;
}
.k360-search-mob-form{flex:1;display:flex;min-width:0}
.k360-search-mob-form .k360-search-field{
  flex:1;border:0;background:transparent;font-size:1.05rem;outline:none;
  padding:.45rem .5rem;color:var(--k360-search-text);
}
.k360-search-mob-form .k360-search-field::placeholder{color:var(--k360-search-muted)}
.k360-search-mob-cats{
  padding:.5rem 1rem;border-bottom:1px solid var(--k360-search-border);flex-shrink:0;
}
.k360-search-mob-cats .k360-search-cats{
  width:100%;max-width:none;min-width:0;border:1px solid var(--k360-search-border);
  border-radius:8px;padding:.55rem .75rem;font-size:.9rem;
  background:var(--k360-search-surface);color:var(--k360-search-cats-color);
}
.k360-search-live-panel--mob{
  position:static;flex:1;border-radius:0;box-shadow:none;max-height:none;overflow-y:auto;
  overscroll-behavior:contain;
}

/* ─── Animaciones ────────────────────────────────────────────────────────── */
@keyframes k360FadeIn{from{opacity:0}to{opacity:1}}
@keyframes k360SlideDown{from{transform:translateY(-12px);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes k360MobSlideUp{from{transform:translateY(12px);opacity:0}to{transform:translateY(0);opacity:1}}
.k360-search-mob-modal:not([hidden]){animation:k360MobSlideUp .18s ease-out}

/* ─── RESPONSIVE: solo viewport (k360-is-mobile). Contenedor estrecho ≠ modal ─ */
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-fullscreen .k360-search-mob-trigger,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-icon .k360-search-mob-trigger,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-sheet .k360-search-mob-trigger,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-floating .k360-search-mob-trigger{
  display:flex!important;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-fullscreen .k360-search-bar-form,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-icon .k360-search-bar-form,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-sheet .k360-search-bar-form,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-floating .k360-search-bar-form{
  display:none!important;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-icon{
  display:inline-flex!important;width:auto!important;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-floating{
  display:contents;
}
.k360-search.k360-is-mobile.k360-search--pc-expandable .k360-search-expand-panel{
  position:fixed!important;
  top:auto!important;bottom:0!important;left:0!important;right:0!important;
  transform:none!important;transform-origin:bottom center!important;
  width:100%!important;max-width:none!important;
  border-radius:16px 16px 0 0;
  transition:opacity .18s;
}
.k360-search.k360-is-mobile.k360-search--pc-expandable.k360-is-open .k360-search-expand-panel{
  opacity:1;pointer-events:all;
}

.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline{
  display:flex!important;
  flex-direction:column;
  align-items:stretch;
  gap:.45rem;
  width:100%!important;max-width:100%!important;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline .k360-search-bar-form{
  flex-direction:column;gap:.45rem;width:100%;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline .k360-search-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  grid-template-areas:"field submit" "cats cats";
  width:100%;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline .k360-search-field{grid-area:field;font-size:16px}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--layout-inside .k360-search-submit{grid-area:submit}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline .k360-search-cats{
  grid-area:cats;flex:none;width:100%;max-width:none;min-width:0;
  border-left:0;border-top:1px solid var(--k360-search-border);font-size:15px;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--no-cats .k360-search-shell{
  grid-template-areas:"field submit";grid-template-columns:minmax(0,1fr) auto;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--layout-adjacent,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--layout-split{
  flex-direction:column;gap:.45rem;
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--layout-adjacent .k360-search-shell{
  border-radius:var(--k360-search-radius);
  grid-template-areas:"field field" "cats cats";
}
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--layout-adjacent .k360-search-submit,
.k360-search.k360-is-mobile.k360-search--pc-bar.k360-search--mob-inline.k360-search--layout-split .k360-search-submit{
  width:100%;min-height:2.75rem;border-radius:var(--k360-search-radius);
}

.k360-search.k360-is-mobile .k360-search-live-panel--desktop{display:none!important}

/* Compacto en PC (columna estrecha): sigue siendo barra, sin modal */
.k360-search.k360-is-compact:not(.k360-is-mobile){
  width:100%!important;max-width:100%!important;
}
.k360-search.k360-is-compact:not(.k360-is-mobile) .k360-search-cats{
  flex:0 1 6.5rem;min-width:4.5rem;max-width:8.5rem;
}
.k360-search.k360-is-compact:not(.k360-is-mobile) .k360-search-field{
  padding-left:.65rem;padding-right:.5rem;
}
