.ayis-wrapper {
  position: relative;
  width: 100%;
}

.ayis-searchbox {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.ayis-searchbox input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.ayis-dropdown {
  z-index: 2147483000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: left;
  color: #222;
  font-family: inherit;
}

.ayis-dropdown * {
  box-sizing: border-box;
}

.ayis-dropdown-body {
  position: absolute;
}

.search-widget .ayis-dropdown,
#search_widget .ayis-dropdown {
  z-index: 2147483000;
}

.ayis-section + .ayis-section,
.ayis-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.ayis-title {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #f8f8f8;
  color: #222;
}

.ayis-title-soft {
  background: #fff;
  padding-bottom: 6px;
}

.ayis-list {
  max-height: 430px;
  overflow-y: auto;
  background: #fff;
}

.ayis-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 16px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.055);
  background: #fff;
  min-height: 78px;
}

.ayis-item:last-child {
  border-bottom: none;
}

.ayis-item:hover,
.ayis-item.is-active,
.ayis-category:hover,
.ayis-category.is-active,
.ayis-view-all:hover,
.ayis-view-all.is-active {
  background: rgba(192, 0, 0, 0.075);
  color: #111;
  text-decoration: none;
}

.ayis-image {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.045);
}

.ayis-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ayis-info {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ayis-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
}

.ayis-name mark,
.ayis-category-name mark {
  padding: 0 1px;
  background: rgba(192, 0, 0, 0.14);
  color: inherit;
}

.ayis-meta {
  font-size: 12px;
  line-height: 1.25;
  opacity: .68;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ayis-stock {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 7px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #333;
}

.ayis-stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.ayis-stock.is-in-stock {
  background: rgba(0, 128, 0, 0.10);
  color: #167a16;
}

.ayis-stock.is-out-stock {
  background: rgba(192, 0, 0, 0.08);
  color: #c00000;
}

.ayis-price {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  color: #c00000;
  margin-left: 8px;
}

.ayis-message {
  padding: 16px;
  font-size: 14px;
  color: #222;
  background: #fff;
}

.ayis-empty-hint {
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
  color: #666;
  font-size: 13px;
}

.ayis-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 12px;
  background: #fff;
}

.ayis-category {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f7f7f7;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  min-width: 0;
}

.ayis-category-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
}

.ayis-category-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ayis-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 16px 14px;
  background: #fff;
}

.ayis-chip {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #f8f8f8;
  color: #222;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.ayis-chip:hover {
  border-color: rgba(192, 0, 0, 0.30);
  background: rgba(192, 0, 0, 0.075);
  color: #111;
}

.ayis-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  background: #fff;
}

.ayis-view-all {
  display: block;
  flex: 1 1 auto;
  padding: 13px 16px;
  font-weight: 900;
  text-decoration: none;
  color: #c00000;
  background: #fff;
}

.ayis-enter-hint {
  flex: 0 0 auto;
  padding-right: 16px;
  color: #777;
  font-size: 12px;
}

@media (max-width: 767px) {
  .ayis-dropdown {
    border-radius: 8px;
    max-height: 75vh;
  }

  .ayis-category-list {
    grid-template-columns: 1fr;
  }

  .ayis-list {
    max-height: 55vh;
  }

  .ayis-item {
    gap: 10px;
    padding: 10px 12px;
    min-height: 74px;
  }

  .ayis-image {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .ayis-name {
    font-size: 13px;
  }

  .ayis-meta {
    font-size: 11px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .ayis-price {
    font-size: 13px;
    margin-left: 4px;
  }

  .ayis-footer {
    display: block;
  }

  .ayis-enter-hint {
    display: none;
  }
}

/* v1.0.4 - filtros por categoría y precio */
.ayis-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ayis-filter-toggle {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #f7f7f7;
  color: #111;
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.ayis-filter-toggle:hover {
  background: rgba(192, 0, 0, 0.075);
  border-color: rgba(192, 0, 0, 0.22);
}

.ayis-filter-toggle-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.ayis-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #c00000;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.ayis-result-count {
  color: #555;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.ayis-filter-backdrop[hidden],
.ayis-filter-panel[hidden] {
  display: none !important;
}

.ayis-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  z-index: 2147483200;
  opacity: 0;
  transition: opacity .16s ease;
}

.ayis-filter-backdrop.is-open {
  opacity: 1;
}

.ayis-filter-panel {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 52px;
  max-height: 520px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
  z-index: 2147483300;
  color: #111;
}

.ayis-filter-panel * {
  box-sizing: border-box;
}

.ayis-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ayis-filter-head strong {
  display: block;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: .02em;
}

.ayis-filter-head-kicker {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #777;
}

.ayis-filter-x {
  appearance: none;
  border: 0;
  background: #f3f3f3;
  color: #111;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.ayis-filter-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ayis-filter-group-title {
  appearance: none;
  width: 100%;
  border: 0;
  background: #fff;
  color: #111;
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.ayis-filter-group.is-collapsed .ayis-filter-group-title span {
  transform: rotate(180deg);
}

.ayis-filter-group.is-collapsed .ayis-filter-group-body {
  display: none;
}

.ayis-filter-group-body {
  padding: 0 18px 16px;
}

.ayis-filter-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  margin: 0;
  cursor: pointer;
  color: #111;
}

.ayis-filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ayis-fake-check {
  width: 21px;
  height: 21px;
  border-radius: 5px;
  border: 2px solid #d0d0d0;
  background: #fff;
  position: relative;
}

.ayis-filter-check input:checked + .ayis-fake-check {
  background: #c00000;
  border-color: #c00000;
}

.ayis-filter-check input:checked + .ayis-fake-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ayis-filter-check-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 750;
}

.ayis-filter-check-count {
  color: #777;
  font-size: 13px;
  font-weight: 750;
}

.ayis-price-range-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 11px;
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.ayis-price-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ayis-price-inputs label {
  display: block;
  margin: 0;
}

.ayis-price-inputs span {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #777;
  font-weight: 850;
}

.ayis-price-inputs input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  color: #111;
  background: #fff;
}

.ayis-price-inputs input:focus {
  outline: 2px solid rgba(192, 0, 0, 0.16);
  border-color: rgba(192, 0, 0, 0.45);
}

.ayis-filter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 18px;
  background: #fff;
}

.ayis-filter-clear,
.ayis-filter-apply {
  appearance: none;
  border: 0;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.ayis-filter-clear {
  background: #f0f0f0;
  color: #111;
  flex: 0 0 auto;
}

.ayis-filter-apply {
  background: #c00000;
  color: #fff;
  flex: 1 1 auto;
}

@media (max-width: 767px) {
  .ayis-filterbar {
    padding: 9px 10px;
  }

  .ayis-filter-toggle {
    border-radius: 8px;
    background: #fff;
    border-color: transparent;
    padding-left: 0;
    font-size: 14px;
  }

  .ayis-result-count {
    font-size: 13px;
  }

  .ayis-filter-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    width: min(84vw, 380px);
    max-height: none;
    border-radius: 0;
    border: 0;
    transform: translateX(-104%);
    transition: transform .16s ease;
  }

  .ayis-filter-panel.is-open {
    transform: translateX(0);
  }

  .ayis-filter-head {
    padding: 18px 18px;
  }

  .ayis-filter-group-title {
    padding: 17px 18px;
    font-size: 16px;
  }

  .ayis-filter-check {
    padding: 12px 0;
  }

  .ayis-filter-check-name {
    font-size: 15px;
  }

  .ayis-price-inputs {
    grid-template-columns: 1fr 1fr;
  }
}

/* v1.0.5 - mejoras de usabilidad: cierre, ver resultados y barra doble de precio */
.ayis-search-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ayis-search-actions-left {
  min-width: 0;
  color: #333;
  font-size: 13px;
  letter-spacing: .03em;
}

.ayis-search-actions-left strong {
  font-weight: 950;
}

.ayis-search-actions-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.ayis-mini-view-all,
.ayis-filter-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(192, 0, 0, 0.08);
  color: #c00000;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.ayis-mini-view-all:hover,
.ayis-filter-view-all:hover {
  background: #c00000;
  color: #fff;
  text-decoration: none;
}

.ayis-close-search {
  appearance: none;
  border: 0;
  background: #f1f1f1;
  color: #111;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
  text-align: center;
}

.ayis-close-search:hover {
  background: #111;
  color: #fff;
}

.ayis-filterbar {
  padding: 9px 14px;
}

.ayis-filter-toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
  font-size: 0;
}

.ayis-filter-toggle-icon::before,
.ayis-filter-toggle-icon::after,
.ayis-filter-toggle-icon {
  background-image:
    linear-gradient(#111, #111),
    linear-gradient(#111, #111),
    linear-gradient(#111, #111);
  background-repeat: no-repeat;
  background-size: 18px 2px, 18px 2px, 18px 2px;
  background-position: 0 0, 0 6px, 0 12px;
}

.ayis-filter-toggle-icon::before,
.ayis-filter-toggle-icon::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
}

.ayis-filter-toggle-icon::before {
  top: -3px;
  left: 3px;
}

.ayis-filter-toggle-icon::after {
  top: 9px;
  right: 3px;
}

.ayis-filter-panel {
  position: fixed;
  left: 50%;
  right: auto;
  top: 50%;
  width: min(760px, calc(100vw - 32px));
  max-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(.98);
  opacity: 0;
  transition: transform .17s ease, opacity .17s ease;
}

.ayis-filter-panel.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.ayis-filter-head {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  flex: 0 0 auto;
}

.ayis-filter-group {
  overflow: visible;
  flex: 0 0 auto;
}

.ayis-filter-group-body {
  max-height: 260px;
  overflow-y: auto;
}

.ayis-filter-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
}

.ayis-range-wrap {
  padding-top: 4px;
}

.ayis-range-values {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 14px;
  color: #111;
  font-size: 14px;
  font-weight: 950;
}

.ayis-range-slider {
  position: relative;
  height: 38px;
  margin: 0 8px 12px;
}

.ayis-range-track,
.ayis-range-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 4px;
  border-radius: 999px;
  pointer-events: none;
}

.ayis-range-track {
  background: #dedede;
}

.ayis-range-fill {
  background: #111;
}

.ayis-range-slider input[type="range"] {
  position: absolute;
  left: 0;
  top: 8px;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.ayis-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  pointer-events: auto;
}

.ayis-range-slider input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  pointer-events: auto;
}

.ayis-range-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.ayis-range-slider input[type="range"]::-moz-range-track {
  height: 4px;
  background: transparent;
}

.ayis-footer {
  position: sticky;
  bottom: 0;
  z-index: 3;
  box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .ayis-search-actions {
    padding: 9px 10px;
  }

  .ayis-search-actions-left {
    font-size: 12px;
  }

  .ayis-mini-view-all {
    display: none;
  }

  .ayis-filter-view-all {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .ayis-filter-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    width: min(86vw, 390px);
    max-height: none;
    border-radius: 0;
    border: 0;
    transform: translateX(-104%);
    opacity: 1;
    transition: transform .17s ease;
  }

  .ayis-filter-panel.is-open {
    transform: translateX(0);
  }

  .ayis-filter-group-body {
    max-height: none;
  }

  .ayis-range-slider {
    margin-left: 2px;
    margin-right: 2px;
  }

  .ayis-view-all {
    background: #c00000;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
  }
}

/* v1.0.6 - experiencia móvil profesional a pantalla completa */
html.ayis-scroll-locked,
body.ayis-scroll-locked {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.ayis-mobile-head {
  display: none;
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: var(--ayis-vh, 100dvh) !important;
    max-height: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff;
    z-index: 2147483600 !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 12px 10px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
    z-index: 5;
  }

  .ayis-mobile-back,
  .ayis-mobile-clear {
    appearance: none;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
    flex: 0 0 auto;
  }

  .ayis-mobile-back {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 36px;
    line-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ayis-mobile-back:active {
    background: #f2f2f2;
  }

  .ayis-mobile-clear {
    min-height: 38px;
    padding: 0 2px 0 6px;
    font-size: 13px;
    font-weight: 900;
    color: #c00000;
  }

  .ayis-mobile-field {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    background: #f3f3f3;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .ayis-mobile-field input {
    width: 100%;
    min-width: 0;
    height: 40px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    color: #111;
    font-size: 16px;
    font-weight: 750;
  }

  .ayis-mobile-field input::placeholder {
    color: #777;
    font-weight: 600;
  }

  .ayis-mobile-loupe {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 2px solid #111;
    border-radius: 50%;
    opacity: .75;
  }

  .ayis-mobile-loupe::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    right: -6px;
    bottom: -4px;
    background: #111;
    transform: rotate(45deg);
    border-radius: 999px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-search-actions {
    flex: 0 0 auto;
    padding: 10px 14px;
    background: #fff;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-search-actions-left {
    font-size: 13px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-close-search {
    display: none;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filterbar {
    flex: 0 0 auto;
    padding: 10px 14px;
    background: #fff;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-toggle {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f7f7f7;
    font-size: 13px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-view-all {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: #c00000;
    color: #fff;
    font-size: 12px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-categories-section {
    flex: 0 0 auto;
    max-height: 190px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-list {
    grid-template-columns: 1fr;
    padding: 8px 12px 10px;
    gap: 7px;
  }

  .ayis-dropdown.is-mobile-fullscreen > .ayis-section:not(.ayis-categories-section) {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-title {
    flex: 0 0 auto;
    padding: 9px 14px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 8px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-item {
    min-height: 82px;
    padding: 12px 14px;
    gap: 11px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 10px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-name {
    font-size: 14px;
    line-height: 1.25;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-price {
    font-size: 14px;
    align-self: center;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-message {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 20px 16px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-chip-list {
    padding: 8px 14px 14px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-footer {
    position: relative;
    bottom: auto;
    flex: 0 0 auto;
    padding: 10px 14px calc(env(safe-area-inset-bottom, 0px) + 12px);
    background: #fff;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    border-radius: 10px;
    background: #c00000;
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 950;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-enter-hint {
    display: none;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.34);
    z-index: 2147483700;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-panel {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: var(--ayis-vh, 100dvh) !important;
    max-height: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff;
    z-index: 2147483800 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    transform: translateY(102%) !important;
    opacity: 1 !important;
    transition: transform .22s ease !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-panel.is-open {
    transform: translateY(0) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-head {
    padding: calc(env(safe-area-inset-top, 0px) + 16px) 18px 16px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 3;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-x {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-group {
    flex: 0 0 auto;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-group-body {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 18px 18px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-check {
    min-height: 48px;
    padding: 10px 0;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-fake-check {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-actions {
    position: sticky;
    bottom: 0;
    padding: 12px 18px calc(env(safe-area-inset-bottom, 0px) + 14px);
    background: #fff;
    z-index: 4;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-clear,
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-apply {
    min-height: 48px;
    border-radius: 10px;
    font-size: 15px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider {
    height: 46px;
    margin: 4px 12px 14px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-track,
  .ayis-dropdown.is-mobile-fullscreen .ayis-range-fill {
    top: 21px;
    height: 5px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"] {
    top: 9px;
    height: 32px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"]::-webkit-slider-thumb {
    width: 32px;
    height: 32px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"]::-moz-range-thumb {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-panel[hidden],
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-backdrop[hidden] {
    display: none !important;
  }
}


/* v1.0.7 - mejoras UX móvil solicitadas */
.ayis-filter-view-all,
.ayis-view-all {
  color: #fff !important;
}

.ayis-filter-view-all {
  background: #c00000 !important;
  border: 1px solid #c00000 !important;
}

.ayis-filter-view-all:hover,
.ayis-view-all:hover,
.ayis-dropdown.is-mobile-fullscreen .ayis-filter-view-all:hover,
.ayis-dropdown.is-mobile-fullscreen .ayis-view-all:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-categories-section {
    max-height: 152px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px 12px;
    overflow: hidden;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    width: auto;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 1 auto;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category:hover,
  .ayis-dropdown.is-mobile-fullscreen .ayis-category.is-active {
    background: rgba(192,0,0,.09);
    border-color: rgba(192,0,0,.22);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    font-size: 10px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    font-size: 13px;
    line-height: 1.1;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filterbar {
    gap: 10px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-toggle,
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-view-all {
    flex: 1 1 0;
    justify-content: center;
  }
}


/* v1.0.8 - grid de productos en móvil */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen > .ayis-section:not(.ayis-categories-section) {
    overflow: hidden;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
    padding: 12px 12px 10px;
    background: #f7f7f7;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 100%;
    padding: 0;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-item:hover,
  .ayis-dropdown.is-mobile-fullscreen .ayis-item.is-active {
    background: #fff;
    border-color: rgba(192,0,0,.22);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image {
    width: 100%;
    height: 154px;
    flex: 0 0 auto;
    border-radius: 0;
    border: 0;
    background: #fff;
    padding: 8px;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 10px 4px;
    min-width: 0;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-name {
    font-size: 13px;
    font-weight: 850;
    line-height: 1.3;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-meta {
    display: none;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-stock {
    display: none;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-price {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 10px 12px;
    font-size: 14px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    text-align: left;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-footer {
    padding-top: 8px;
  }
}


/* v1.0.9 - vista buscador página completa en PC + grid estable */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    z-index: 2147483600 !important;
    overflow: hidden !important;
    grid-template-columns: 320px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
    color: #111;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head {
    display: flex !important;
    grid-column: 1 / 3;
    grid-row: 1;
    align-items: center;
    gap: 18px;
    padding: 22px clamp(34px, 7vw, 120px) 18px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-back {
    width: 42px;
    height: 42px;
    font-size: 42px;
    line-height: 36px;
    color: #111;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field {
    max-width: 880px;
    min-height: 52px;
    border-radius: 999px;
    background: #f4f4f4;
    padding: 0 18px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field input {
    height: 50px;
    font-size: 22px;
    font-weight: 800;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-clear {
    margin-left: auto;
    min-height: 42px;
    font-size: 13px;
    font-weight: 900;
    color: #c00000;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions {
    grid-column: 1 / 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(34px, 7vw, 120px);
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions-left strong {
    font-size: 18px;
    font-weight: 900;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mini-view-all,
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-view-all {
    min-height: 40px;
    padding: 0 20px;
    background: #c00000 !important;
    color: #fff !important;
    border-radius: 999px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-close-search {
    background: #111;
    color: #fff;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filterbar {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 14px clamp(34px, 7vw, 120px);
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-toggle {
    pointer-events: none;
    background: transparent;
    border-color: transparent;
    padding-left: 0;
    font-size: 15px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar {
    grid-column: 1;
    grid-row: 4 / 7;
    position: static !important;
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0;
    transform: none !important;
    opacity: 1 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    overflow-y: auto !important;
    border-right: 1px solid rgba(0,0,0,.10) !important;
    z-index: 1;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-head {
    display: none;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group {
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group-title {
    padding: 22px 28px 14px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group-body {
    padding: 0 28px 24px;
    max-height: none;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-check {
    min-height: 42px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-actions {
    position: sticky;
    bottom: 0;
    padding: 18px 22px;
    background: #fff;
    box-shadow: 0 -8px 20px rgba(0,0,0,.06);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-categories-section {
    grid-column: 2;
    grid-row: 4;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 24px 18px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-category {
    width: auto;
    min-height: 36px;
    border-radius: 999px;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,.08);
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    grid-column: 2;
    grid-row: 5;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-title {
    flex: 0 0 auto;
    padding: 16px 24px;
    font-size: 12px;
    background: #fff;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none !important;
    overflow-y: auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    align-content: start;
    gap: 24px;
    padding: 10px 24px 28px;
    background: #fff;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    min-height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    width: 100% !important;
    height: 210px !important;
    flex: 0 0 210px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    padding: 8px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-info {
    padding: 12px 0 4px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
    min-height: 2.7em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta,
  .ayis-dropdown.is-desktop-fullpage .ayis-stock {
    display: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    width: 100% !important;
    margin: 0 !important;
    padding: 6px 0 0 !important;
    color: #111 !important;
    text-align: left !important;
    font-size: 15px !important;
    font-weight: 850 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-footer {
    grid-column: 2;
    grid-row: 6;
    padding: 14px 24px;
    background: #fff;
    box-shadow: 0 -8px 20px rgba(0,0,0,.06);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-view-all {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    background: #c00000 !important;
    color: #fff !important;
    font-weight: 950;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-enter-hint {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-content: start !important;
    padding: 12px !important;
    background: #f7f7f7 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 240px !important;
    padding: 0 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 14px !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image {
    width: 100% !important;
    height: 150px !important;
    flex: 0 0 150px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    padding: 8px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-info {
    display: flex !important;
    flex: 1 1 auto !important;
    padding: 10px 10px 2px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-name {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: #111 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 850 !important;
    min-height: 2.6em !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-price {
    display: block !important;
    color: #111 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 4px 10px 12px !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 900 !important;
  }
}


/* v1.0.11 - bloqueo real del fondo solo en móvil */
@media (max-width: 767px) {
  html.ayis-scroll-locked,
  body.ayis-scroll-locked {
    overflow: hidden !important;
    height: 100% !important;
    overscroll-behavior: none !important;
  }

  body.ayis-scroll-locked {
    touch-action: none !important;
  }

  body.ayis-scroll-locked .ayis-dropdown.is-mobile-fullscreen,
  body.ayis-scroll-locked .ayis-dropdown.is-mobile-fullscreen .ayis-list,
  body.ayis-scroll-locked .ayis-dropdown.is-mobile-fullscreen .ayis-filter-panel,
  body.ayis-scroll-locked .ayis-dropdown.is-mobile-fullscreen .ayis-categories-section,
  body.ayis-scroll-locked .ayis-dropdown.is-mobile-fullscreen .ayis-message {
    touch-action: pan-y !important;
  }
}

/* Seguridad: si el dropdown está oculto por JS, nunca debe verse en escritorio. */
.ayis-dropdown.is-desktop-fullpage[style*="display: none"] {
  display: none !important;
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen {
    contain: layout paint style;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
  }
}


/* v1.0.12 - desktop UX redesign */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage {
    background: #f6f6f8 !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto minmax(0, auto) minmax(0, 1fr) auto !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head {
    position: sticky;
    top: 0;
    z-index: 30;
    gap: 16px;
    padding: 18px 28px 16px;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-back {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
    font-size: 34px;
    line-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field {
    max-width: 760px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 8px 26px rgba(0,0,0,.05);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field input {
    height: 52px;
    font-size: 20px;
    font-weight: 800;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-clear {
    margin-left: 10px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    color: #c00000;
    background: transparent;
    font-size: 13px;
    font-weight: 900;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 14px 28px 8px;
    background: #f6f6f8;
    border-bottom: 0;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions-left strong {
    font-size: 16px;
    color: #1a1a1a;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions-right {
    gap: 10px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mini-view-all {
    display: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-close-search {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    color: #111;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-close-search:hover {
    background: #111;
    color: #fff;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filterbar {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 0 28px 18px;
    background: #f6f6f8;
    border-bottom: 0;
    align-items: center;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-toggle {
    pointer-events: none;
    padding: 0;
    background: transparent;
    border-color: transparent;
    font-size: 15px;
    font-weight: 900;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-view-all {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: #c00000 !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(192,0,0,.18);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar {
    grid-column: 1;
    grid-row: 4 / 7;
    margin: 0 0 0 28px;
    width: auto !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.05) !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group-title {
    padding: 18px 20px 14px;
    font-size: 15px;
    font-weight: 900;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group-body {
    padding: 0 20px 18px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-check {
    min-height: 40px;
    border-radius: 10px;
    padding: 0 8px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-check:hover {
    background: #f8f8f8;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-actions {
    gap: 10px;
    padding: 16px 18px 18px;
    background: #fff;
    box-shadow: 0 -6px 20px rgba(0,0,0,.04);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-clear,
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-apply {
    min-height: 42px;
    border-radius: 12px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-categories-section {
    grid-column: 2;
    grid-row: 4;
    margin: 0 28px 0 20px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.04);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-title {
    padding: 18px 22px 10px;
    font-size: 11px;
    letter-spacing: .12em;
    background: transparent;
    color: #444;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 18px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-category {
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid rgba(0,0,0,.08);
    transition: all .16s ease;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-category:hover,
  .ayis-dropdown.is-desktop-fullpage .ayis-category.is-active {
    background: rgba(192,0,0,.06);
    border-color: rgba(192,0,0,.18);
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    grid-column: 2;
    grid-row: 5;
    margin: 16px 28px 0 20px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.04);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 6px 20px 24px;
    background: #fff;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 100% !important;
    padding: 14px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.03) !important;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item:hover,
  .ayis-dropdown.is-desktop-fullpage .ayis-item.is-active {
    transform: translateY(-2px);
    border-color: rgba(192,0,0,.16) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.08) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    width: 100% !important;
    height: 220px !important;
    flex: 0 0 220px !important;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,.06) !important;
    border-radius: 14px !important;
    background: #fafafa !important;
    padding: 10px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-info {
    padding: 0 !important;
    gap: 6px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
    min-height: 2.75em !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    display: block !important;
    font-size: 12px !important;
    color: #707070 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-stock {
    display: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 10px !important;
    color: #c00000 !important;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: 900 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-footer {
    grid-column: 2;
    grid-row: 6;
    margin: 16px 28px 20px 20px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-top: 0;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-view-all {
    min-height: 52px;
    border-radius: 14px;
    background: #c00000 !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(192,0,0,.18);
    font-size: 16px;
  }
}


/* v1.0.13 - fix cards desktop */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    display: grid !important;
    grid-template-rows: 220px minmax(56px, auto) auto;
    align-content: start;
    min-width: 0;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    grid-row: 1;
    margin-bottom: 0;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-info {
    grid-row: 2;
    min-width: 0;
    padding: 12px 14px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
    gap: 6px;
    align-self: start;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    min-height: 2.7em !important;
    max-height: 2.7em !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    display: block !important;
    min-height: 1.3em;
    max-height: 1.3em;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    grid-row: 3;
    margin: 0 !important;
    padding: 10px 14px 14px !important;
    align-self: end;
    line-height: 1.2;
  }
}


/* v1.0.14 - fichas responsive PC/zoom */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage {
    grid-template-columns: clamp(230px, 17vw, 300px) minmax(0, 1fr) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    grid-template-columns: repeat(auto-fill, minmax(clamp(150px, 13vw, 220px), 1fr)) !important;
    gap: clamp(12px, 1.2vw, 20px) !important;
    padding: clamp(8px, 1vw, 16px) clamp(12px, 1.4vw, 20px) clamp(16px, 1.8vw, 24px) !important;
    align-items: stretch !important;
    grid-auto-rows: auto !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    padding: clamp(8px, .9vw, 14px) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    width: 100% !important;
    height: clamp(120px, 12vw, 220px) !important;
    flex: 0 0 clamp(120px, 12vw, 220px) !important;
    margin-bottom: clamp(8px, .8vw, 12px) !important;
    padding: clamp(6px, .7vw, 10px) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-info {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: 5px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    font-size: clamp(12px, .78vw, 14px) !important;
    line-height: 1.28 !important;
    min-height: calc(clamp(12px, .78vw, 14px) * 2.56) !important;
    max-height: calc(clamp(12px, .78vw, 14px) * 2.56) !important;
    -webkit-line-clamp: 2 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    display: block !important;
    font-size: clamp(10px, .68vw, 12px) !important;
    min-height: 1.25em !important;
    max-height: 1.25em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    margin-top: auto !important;
    padding: clamp(6px, .7vw, 10px) 0 0 !important;
    font-size: clamp(13px, .95vw, 18px) !important;
    line-height: 1.15 !important;
  }
}

@media (min-width: 768px) and (max-width: 1500px), (min-width: 768px) and (max-height: 850px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head {
    padding-top: 12px !important;
    padding-bottom: 10px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field {
    min-height: 46px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field input {
    height: 44px !important;
    font-size: 18px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions {
    padding-top: 10px !important;
    padding-bottom: 6px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filterbar {
    padding-bottom: 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-title {
    padding-top: 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    height: clamp(105px, 10vw, 170px) !important;
    flex-basis: clamp(105px, 10vw, 170px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1200px), (min-width: 768px) and (max-height: 700px) {
  .ayis-dropdown.is-desktop-fullpage {
    grid-template-columns: clamp(210px, 20vw, 260px) minmax(0, 1fr) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)) !important;
    gap: 10px !important;
    padding: 8px 12px 16px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    padding: 8px !important;
    border-radius: 14px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    height: 105px !important;
    flex-basis: 105px !important;
    border-radius: 10px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    font-size: 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    font-size: 10px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    font-size: 13px !important;
  }
}


/* v1.0.15 - PC responsive real: evita recortes con zoom */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-content: start !important;
    grid-template-rows: auto auto auto auto auto auto !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    -webkit-overflow-scrolling: touch;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar {
    grid-column: 1 !important;
    grid-row: 4 / 7 !important;
    align-self: start !important;
    position: sticky !important;
    top: 116px !important;
    max-height: calc(100dvh - 132px) !important;
    overflow-y: auto !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-categories-section {
    grid-column: 2 !important;
    grid-row: 4 !important;
    align-self: start !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    grid-column: 2 !important;
    grid-row: 5 !important;
    align-self: start !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    flex: none !important;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 185px), 1fr)) !important;
    grid-auto-rows: auto !important;
    align-items: stretch !important;
    align-content: start !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    height: clamp(110px, 10vw, 190px) !important;
    flex: 0 0 auto !important;
    min-height: 110px !important;
    max-height: 190px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-info {
    flex: 0 0 auto !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    min-height: 2.6em !important;
    max-height: 2.6em !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    display: block !important;
    min-height: 1.25em !important;
    max-height: 1.25em !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    flex: 0 0 auto !important;
    margin-top: auto !important;
    display: block !important;
    visibility: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-footer {
    grid-column: 2 !important;
    grid-row: 6 !important;
    align-self: start !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 25 !important;
  }
}

@media (min-width: 768px) and (max-width: 1300px), (min-width: 768px) and (max-height: 780px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr)) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    height: clamp(95px, 9vw, 150px) !important;
    min-height: 95px !important;
    max-height: 150px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    padding: 8px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    font-size: 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    font-size: 13px !important;
  }
}


/* v1.0.16 - filtros escritorio a la izquierda */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-backdrop {
    display: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel,
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar {
    position: fixed !important;
    left: 24px !important;
    top: 210px !important;
    right: auto !important;
    bottom: 24px !important;
    width: 280px !important;
    max-width: 280px !important;
    max-height: calc(100dvh - 234px) !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    border: 1px solid rgba(0,0,0,.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 40px rgba(0,0,0,.10) !important;
    background: #fff !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 2147483650 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel[hidden] {
    display: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-open,
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar.is-open {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-head-kicker {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 2px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-head strong {
    font-size: 16px;
    color: #111;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-x {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    color: #111;
    font-size: 22px;
    line-height: 1;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group-title {
    padding: 16px 18px 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-group-body {
    padding: 0 18px 16px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-actions {
    position: sticky;
    bottom: 0;
    padding: 14px 16px 16px !important;
    background: #fff;
    box-shadow: 0 -6px 20px rgba(0,0,0,.05);
  }
}


/* v1.0.17 - fuerza filtros PC a izquierda, incluso con cache de estilos anterior */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-backdrop {
    display: none !important;
  }

  body .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-open,
  body .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar.is-open {
    position: fixed !important;
    left: 24px !important;
    right: auto !important;
    top: 205px !important;
    bottom: 24px !important;
    width: 280px !important;
    max-width: 280px !important;
    height: auto !important;
    max-height: calc(100dvh - 229px) !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: 2147483650 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 40px rgba(0,0,0,.10) !important;
  }
}


/* v1.0.18 - botón Ver todos debajo del listado en escritorio */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-footer {
    position: static !important;
    sticky: auto !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    grid-column: 2 !important;
    grid-row: 6 !important;
    align-self: start !important;
    margin: 16px 28px 28px 20px !important;
    padding: 0 !important;
    z-index: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-top: 0 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-view-all {
    position: static !important;
    width: 100% !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    margin-bottom: 0 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    padding-bottom: 26px !important;
  }
}


/* v1.0.20 - botón final y scroll unificado */
.ayis-filter-view-all {
  display: none !important;
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen {
    display: block !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
    touch-action: pan-y !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-head,
  .ayis-dropdown.is-mobile-fullscreen .ayis-search-actions,
  .ayis-dropdown.is-mobile-fullscreen .ayis-filterbar,
  .ayis-dropdown.is-mobile-fullscreen .ayis-title,
  .ayis-dropdown.is-mobile-fullscreen .ayis-footer {
    flex: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-categories-section {
    max-height: none !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-list {
    overflow: visible !important;
  }

  .ayis-dropdown.is-mobile-fullscreen > .ayis-section:not(.ayis-categories-section) {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    flex: none !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    -webkit-overflow-scrolling: auto !important;
    overscroll-behavior: auto !important;
    padding-bottom: 12px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-message {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-footer {
    position: static !important;
    bottom: auto !important;
    top: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 10px 14px calc(env(safe-area-inset-bottom, 0px) + 18px) !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #fff !important;
  }
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-content: start !important;
    grid-template-rows: auto auto auto auto auto auto !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filterbar {
    justify-content: flex-start !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    grid-column: 2 !important;
    grid-row: 5 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 20px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-footer {
    position: static !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    grid-column: 2 !important;
    grid-row: 6 !important;
    align-self: start !important;
    margin: 16px 28px 32px 20px !important;
    padding: 0 !important;
    z-index: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-top: 0 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-view-all {
    position: static !important;
    width: 100% !important;
  }
}


/* v1.0.22 - corrección pantalla blanca móvil
   Si el JS mantiene el dropdown oculto con display:none, esta regla debe ganar
   al display:block!important usado para el scroll unificado. */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen[style*="display: none"] {
    display: none !important;
  }
}


/* v1.0.24 - botón final realmente debajo del grid de productos en PC */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    grid-column: 2 !important;
    grid-row: 5 / auto !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) .ayis-list {
    display: grid !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding-bottom: 20px !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) .ayis-footer {
    display: block !important;
    position: static !important;
    float: none !important;
    clear: both !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: auto !important;
    justify-self: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 20px 24px !important;
    z-index: 1 !important;
    background: #fff !important;
    border-top: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) .ayis-view-all {
    position: static !important;
    display: flex !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
  }
}

/* v1.0.25 - textos de producto limpios dentro de la ficha */
.ayis-item,
.ayis-info,
.ayis-name,
.ayis-meta,
.ayis-price {
  min-width: 0;
  max-width: 100%;
}

.ayis-name {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.ayis-meta {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.ayis-stock {
  display: none !important;
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-info {
    width: 100% !important;
    flex: 0 0 auto !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    width: 100% !important;
    min-height: calc(1.28em * 2) !important;
    max-height: calc(1.28em * 2) !important;
    line-height: 1.28 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    width: 100% !important;
    min-height: 1.25em !important;
    max-height: 1.25em !important;
    margin-top: 4px !important;
    font-size: clamp(10px, .68vw, 12px) !important;
    line-height: 1.25 !important;
    color: #777 !important;
    opacity: 1 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    display: block !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 8px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-item {
    overflow: hidden !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-info {
    width: 100% !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-name {
    min-height: calc(1.25em * 2) !important;
    max-height: calc(1.25em * 2) !important;
    line-height: 1.25 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-meta {
    width: 100% !important;
    font-size: 11px !important;
    color: #777 !important;
    opacity: 1 !important;
  }
}


/* v1.0.26 - móvil: categorías de filtros cerradas y precio arrastrable */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-group.is-collapsed .ayis-filter-group-body {
    display: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-group-title span {
    transition: transform .16s ease;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider {
    touch-action: none !important;
    user-select: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"] {
    touch-action: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }
}

/* v1.0.29 - productos recomendados en slider horizontal */
.ayis-recommended-section {
  background: #fff !important;
  overflow: hidden !important;
}

.ayis-recommended-shell {
  position: relative;
  padding: 0 54px 22px !important;
  background: #fff !important;
}

.ayis-recommended-track {
  display: flex !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x !important;
  padding: 4px 2px 12px !important;
}

.ayis-recommended-track::-webkit-scrollbar {
  height: 8px;
}

.ayis-recommended-track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item,
.ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item,
.ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item {
  flex: 0 0 190px !important;
  width: 190px !important;
  max-width: 190px !important;
  min-height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.035) !important;
  scroll-snap-align: start;
  overflow: hidden !important;
  text-decoration: none !important;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item:hover,
.ayis-dropdown .ayis-recommended-track .ayis-recommended-item.is-active {
  transform: translateY(-1px);
  border-color: rgba(192,0,0,.18) !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.08) !important;
  background: #fff !important;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item .ayis-image,
.ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-image,
.ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-image {
  width: 100% !important;
  height: 150px !important;
  flex: 0 0 150px !important;
  margin: 0 0 10px 0 !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 13px !important;
  background: #fafafa !important;
  padding: 8px !important;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item .ayis-info,
.ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-info,
.ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-info {
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  gap: 4px !important;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item .ayis-name {
  min-height: calc(1.25em * 2) !important;
  max-height: calc(1.25em * 2) !important;
  line-height: 1.25 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item .ayis-meta {
  min-height: 1.2em !important;
  max-height: 1.2em !important;
  margin-top: 4px !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  color: #777 !important;
}

.ayis-dropdown .ayis-recommended-track .ayis-recommended-item .ayis-price,
.ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-price,
.ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-price {
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: 8px !important;
  color: #c00000 !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.ayis-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
  cursor: pointer;
}

.ayis-slider-btn:hover {
  background: #c00000;
  color: #fff;
}

.ayis-slider-prev {
  left: 10px;
}

.ayis-slider-next {
  right: 10px;
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-section {
    grid-column: 2 !important;
    grid-row: auto !important;
    margin: 16px 28px 24px 20px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.04) !important;
  }
}

@media (max-width: 767px) {
  .ayis-recommended-shell {
    padding: 0 12px 22px !important;
  }

  .ayis-slider-btn {
    display: none !important;
  }

  .ayis-dropdown .ayis-recommended-track .ayis-recommended-item,
  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item {
    flex-basis: 158px !important;
    width: 158px !important;
    max-width: 158px !important;
    padding: 10px !important;
  }

  .ayis-dropdown .ayis-recommended-track .ayis-recommended-item .ayis-image,
  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-image {
    height: 118px !important;
    flex-basis: 118px !important;
  }
}

/* v1.0.30 - estado de carga de recomendados en móvil */
.ayis-rec-loading-card {
  width: 100% !important;
  min-height: 86px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px dashed rgba(0,0,0,.12) !important;
  border-radius: 14px !important;
  background: #fafafa !important;
  color: #777 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-loading .ayis-recommended-shell {
    padding-bottom: 14px !important;
  }
}

/* v1.0.33 - logo configurable en cabecera del buscador PC */
.ayis-brand-logo {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none !important;
}

.ayis-brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo {
    display: flex !important;
    width: clamp(110px, 13vw, 220px);
    height: 54px;
    padding: 6px 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 26px rgba(0,0,0,.04);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo img {
    max-height: 42px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 220px !important;
  }
}

@media (min-width: 768px) and (max-width: 1200px), (min-width: 768px) and (max-height: 700px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo {
    width: clamp(86px, 11vw, 150px);
    height: 46px;
    padding: 5px 8px;
    border-radius: 12px;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo img {
    max-height: 34px;
  }
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-brand-logo {
    display: none !important;
  }
}


/* v1.0.34 - cabecera PC premium con logo compacto y borrar dentro del buscador */
.ayis-field-clear {
  display: none;
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head {
    display: grid !important;
    grid-template-columns: auto auto minmax(320px, 900px) minmax(0, 1fr);
    align-items: center !important;
    gap: 14px !important;
    min-height: 86px !important;
    padding: 16px clamp(24px, 3.2vw, 56px) !important;
    background: rgba(255,255,255,.94) !important;
    border-bottom: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,.045) !important;
    backdrop-filter: saturate(180%) blur(14px);
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo {
    width: clamp(150px, 12vw, 220px) !important;
    height: 50px !important;
    padding: 7px 13px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #111 !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.12) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo img {
    max-height: 38px !important;
    max-width: 100% !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-back {
    width: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.055) !important;
    font-size: 0 !important;
    line-height: 1 !important;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-back::before {
    content: '←';
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-back:hover {
    transform: translateY(-1px);
    background: #f7f7f7 !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.075) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field {
    width: 100% !important;
    max-width: none !important;
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 8px 0 18px !important;
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.055) !important;
    gap: 13px !important;
    transition: border-color .16s ease, box-shadow .16s ease;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field:focus-within {
    border-color: rgba(192,0,0,.28) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.07), 0 0 0 4px rgba(192,0,0,.07) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-loupe {
    width: 19px !important;
    height: 19px !important;
    flex: 0 0 19px !important;
    border-width: 2px !important;
    opacity: .55 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-loupe::after {
    width: 8px !important;
    height: 2px !important;
    right: -6px !important;
    bottom: -4px !important;
    opacity: .8 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field input {
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: clamp(17px, 1.05vw, 20px) !important;
    font-weight: 750 !important;
    letter-spacing: .01em !important;
    color: #111 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field input::placeholder {
    color: #8a8a8a !important;
    font-weight: 650 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-field-clear {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: #f3f3f3 !important;
    color: #777 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: background .16s ease, color .16s ease;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-field-clear:hover {
    background: #111 !important;
    color: #fff !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-clear {
    display: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions {
    padding-top: 16px !important;
  }
}

@media (min-width: 768px) and (max-width: 1200px), (min-width: 768px) and (max-height: 700px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head {
    grid-template-columns: auto auto minmax(260px, 1fr) !important;
    min-height: 72px !important;
    padding: 12px 22px !important;
    gap: 10px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo {
    width: clamp(105px, 12vw, 160px) !important;
    height: 44px !important;
    border-radius: 13px !important;
    padding: 6px 10px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-brand-logo img {
    max-height: 32px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-back {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field {
    min-height: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-field input {
    height: 44px !important;
    min-height: 44px !important;
    font-size: 17px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-field-clear {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
    border-radius: 11px !important;
  }
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-field-clear {
    display: none !important;
  }
}

/* v1.0.36 - PC premium: 5 columnas grandes + estado de scroll infinito */
.ayis-load-more[hidden] {
  display: none !important;
}

.ayis-load-more {
  margin: 0 20px 18px !important;
  min-height: 48px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  background: #fafafa !important;
  color: #555 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  letter-spacing: .02em !important;
  align-items: center !important;
  justify-content: center !important;
}

.ayis-load-more.is-visible {
  display: flex !important;
}

.ayis-load-more.is-visible::before {
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.14);
  border-top-color: #c00000;
  animation: ayisSpin .72s linear infinite;
}

@keyframes ayisSpin {
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-products-section {
    overflow: visible !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    gap: 24px !important;
    padding: 8px 24px 26px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-item {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    height: clamp(190px, 14vw, 260px) !important;
    min-height: 190px !important;
    max-height: 260px !important;
    flex-basis: auto !important;
    border-radius: 16px !important;
    padding: 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-name {
    font-size: clamp(14px, .86vw, 16px) !important;
    line-height: 1.32 !important;
    min-height: calc(clamp(14px, .86vw, 16px) * 2.64) !important;
    max-height: calc(clamp(14px, .86vw, 16px) * 2.64) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-meta {
    font-size: 12px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-price {
    font-size: clamp(17px, 1vw, 19px) !important;
    padding-top: 12px !important;
  }
}

@media (min-width: 1400px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1100px) and (max-width: 1399px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-list {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
    gap: 16px !important;
    padding: 8px 16px 22px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-image {
    height: clamp(150px, 18vw, 210px) !important;
    min-height: 150px !important;
  }
}


/* v1.0.37 - móvil profesional: 2 columnas x 2 filas + scroll infinito */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-products-section {
    overflow: visible !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 12px 12px 14px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-item {
    min-height: 246px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.06) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image {
    height: 154px !important;
    flex: 0 0 154px !important;
    padding: 10px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-load-more {
    margin: 2px 12px 14px !important;
    min-height: 44px !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
    font-size: 13px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-footer {
    padding-top: 8px !important;
  }
}

/* v1.0.38 - móvil premium: logo, cabecera compacta, categorías en chips e imágenes protagonistas */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen {
    background: #f6f6f7 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-head {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) auto !important;
    grid-template-areas:
      "logo logo logo"
      "back field clear" !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 14px 12px !important;
    background: rgba(255,255,255,.96) !important;
    border-bottom: 1px solid rgba(0,0,0,.07) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.045) !important;
    backdrop-filter: saturate(180%) blur(12px);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-brand-logo {
    grid-area: logo !important;
    display: flex !important;
    justify-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(190px, 58vw) !important;
    height: 40px !important;
    padding: 5px 12px !important;
    border-radius: 16px !important;
    background: #111 !important;
    box-shadow: 0 9px 22px rgba(0,0,0,.12) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-brand-logo img {
    max-width: 100% !important;
    max-height: 30px !important;
    object-fit: contain !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-back {
    grid-area: back !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,.045) !important;
    color: #111 !important;
    font-size: 0 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-back::before {
    content: '←';
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-field {
    grid-area: field !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #f4f4f4 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-field input {
    height: 46px !important;
    min-height: 46px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-mobile-clear {
    grid-area: clear !important;
    min-width: auto !important;
    height: 42px !important;
    padding: 0 4px !important;
    color: #b40000 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-search-actions {
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    padding: 14px 16px 8px !important;
    background: #fff !important;
    border-bottom: 0 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-search-actions-left strong {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
    color: #181818 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-search-actions-right {
    display: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filterbar {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin: -50px 16px 10px auto !important;
    padding: 0 !important;
    min-height: 42px !important;
    background: transparent !important;
    border: 0 !important;
    position: relative !important;
    z-index: 3 !important;
    pointer-events: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-toggle {
    pointer-events: auto !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 128px !important;
    max-width: 180px !important;
    min-height: 40px !important;
    padding: 0 15px !important;
    border-radius: 15px !important;
    background: #111 !important;
    border: 1px solid rgba(0,0,0,.92) !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.14) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .01em !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-toggle-icon,
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-toggle-icon::before,
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-toggle-icon::after {
    border-color: #fff !important;
    color: #fff !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-count {
    background: #c00000 !important;
    color: #fff !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-categories-section {
    max-height: 78px !important;
    overflow: hidden !important;
    background: #fff !important;
    border-top: 1px solid rgba(0,0,0,.045) !important;
    border-bottom: 1px solid rgba(0,0,0,.055) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-categories-section .ayis-title {
    padding: 9px 14px 5px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: .16em !important;
    color: #333 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    padding: 0 14px 10px !important;
    scrollbar-width: none !important;
    scroll-snap-type: x proximity !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-list::-webkit-scrollbar {
    display: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 210px !important;
    min-height: 34px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: #f7f7f7 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.035) !important;
    scroll-snap-align: start !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-icon {
    display: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-category-name {
    max-width: 180px !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #222 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-products-section {
    background: #f6f6f7 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-products-section > .ayis-title {
    padding: 14px 14px 10px !important;
    font-size: 11px !important;
    letter-spacing: .18em !important;
    color: #222 !important;
    background: #f6f6f7 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-list {
    gap: 10px !important;
    padding: 0 10px 12px !important;
    background: #f6f6f7 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-item {
    min-height: 286px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0,0,0,.075) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.055) !important;
    background: #fff !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    aspect-ratio: 1 / 1 !important;
    padding: 2px !important;
    border: 0 !important;
    border-radius: 18px 18px 0 0 !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-info {
    padding: 9px 10px 3px !important;
    gap: 5px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-name {
    font-size: 14px !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
    min-height: calc(14px * 2.44) !important;
    max-height: calc(14px * 2.44) !important;
    letter-spacing: .005em !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-meta {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    color: #858585 !important;
    margin-top: 1px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-price {
    padding: 5px 10px 12px !important;
    font-size: 17px !important;
    line-height: 1.1 !important;
    color: #c00000 !important;
    font-weight: 950 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-load-more {
    margin: 4px 10px 14px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-footer {
    background: #f6f6f7 !important;
    border-top: 0 !important;
  }
}


/* v1.0.39 - mejora visual premium de productos recomendados en móvil */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-section {
    background: #fff !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-shell {
    padding: 0 14px 24px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track {
    gap: 14px !important;
    padding: 6px 2px 14px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item {
    flex: 0 0 182px !important;
    width: 182px !important;
    max-width: 182px !important;
    padding: 12px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(192,0,0,.08) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.06) !important;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 76%, #fcfcfc 100%) !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-image {
    width: 100% !important;
    height: 156px !important;
    flex: 0 0 156px !important;
    margin: 0 0 12px 0 !important;
    padding: 6px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0,0,0,.05) !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(1.03);
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-info {
    gap: 6px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-name {
    min-height: calc(1.28em * 2) !important;
    max-height: calc(1.28em * 2) !important;
    line-height: 1.28 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-meta {
    margin-top: 2px !important;
    font-size: 12px !important;
    color: #767676 !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-recommended-track .ayis-recommended-item .ayis-price {
    padding-top: 10px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
  }
}


/* v1.0.40 - PC: ocultar X nativa azul y ampliar imagen de fichas */
.ayis-dropdown input[type="search"]::-webkit-search-decoration,
.ayis-dropdown input[type="search"]::-webkit-search-cancel-button,
.ayis-dropdown input[type="search"]::-webkit-search-results-button,
.ayis-dropdown input[type="search"]::-webkit-search-results-decoration,
.ayis-mobile-head input[type="search"]::-webkit-search-decoration,
.ayis-mobile-head input[type="search"]::-webkit-search-cancel-button,
.ayis-mobile-head input[type="search"]::-webkit-search-results-button,
.ayis-mobile-head input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
}

.ayis-dropdown input[type="search"],
.ayis-mobile-head input[type="search"] {
  -webkit-appearance: textfield !important;
  appearance: textfield !important;
}

@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-products-section .ayis-item {
    padding: 14px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-products-section .ayis-image {
    height: clamp(220px, 15.5vw, 300px) !important;
    min-height: 220px !important;
    max-height: 300px !important;
    padding: 0 !important;
    border: 0 !important;
    background: #fff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-products-section .ayis-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(1.16);
    transform-origin: center center;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-products-section .ayis-info {
    padding-top: 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-products-section .ayis-image {
    height: clamp(180px, 20vw, 240px) !important;
    min-height: 180px !important;
    max-height: 240px !important;
  }
}


/* v1.0.41 - móvil: limitar categorías del panel de filtros y desplegar con Ver más */
@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-group.has-limited-categories:not(.is-categories-expanded) .ayis-filter-check.is-extra-category {
    display: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-group.has-limited-categories.is-categories-expanded .ayis-filter-show-more-categories {
    display: none !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-show-more-categories {
    width: 100% !important;
    margin: 8px 0 2px !important;
    padding: 12px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    border: 1px solid rgba(192,0,0,.16) !important;
    border-radius: 12px !important;
    background: #fff5f5 !important;
    color: #c00000 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .01em !important;
    cursor: pointer !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-filter-show-more-categories strong {
    min-width: 30px !important;
    height: 24px !important;
    padding: 0 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #c00000 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }
}

@media (min-width: 768px) {
  .ayis-filter-show-more-categories {
    display: none !important;
  }
}


/* v1.0.42 - PC y móvil: resumir categorías y marcas a 5 opciones + Ver más */
.ayis-filter-group.has-limited-categories:not(.is-facet-expanded) .ayis-filter-check.is-extra-category,
.ayis-filter-group.has-limited-brands:not(.is-facet-expanded) .ayis-filter-check.is-extra-brand {
  display: none !important;
}

.ayis-filter-group.has-limited-categories.is-facet-expanded .ayis-filter-show-more,
.ayis-filter-group.has-limited-brands.is-facet-expanded .ayis-filter-show-more {
  display: none !important;
}

.ayis-filter-show-more {
  width: 100% !important;
  margin: 8px 0 2px !important;
  padding: 11px 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  border: 1px solid rgba(192,0,0,.16) !important;
  border-radius: 12px !important;
  background: #fff5f5 !important;
  color: #c00000 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .01em !important;
  cursor: pointer !important;
}

.ayis-filter-show-more:hover {
  border-color: rgba(192,0,0,.28) !important;
  background: #fff0f0 !important;
}

.ayis-filter-show-more strong {
  min-width: 30px !important;
  height: 24px !important;
  padding: 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #c00000 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

@media (min-width: 768px) {
  .ayis-filter-show-more-categories,
  .ayis-filter-show-more-brands,
  .ayis-filter-show-more {
    display: flex !important;
  }
}


/* v1.0.43 - selector de precio premium */
.ayis-range-wrap {
  margin-top: 8px !important;
  padding: 14px 14px 16px !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 22px rgba(0,0,0,.035) !important;
}

.ayis-range-values {
  align-items: center !important;
  margin: 0 0 16px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  color: #111 !important;
}

.ayis-range-values span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 54px !important;
  min-height: 30px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(0,0,0,.12) !important;
}

.ayis-range-slider {
  height: 42px !important;
  margin: 0 6px 14px !important;
}

.ayis-range-track,
.ayis-range-fill {
  top: 19px !important;
  height: 7px !important;
  border-radius: 999px !important;
}

.ayis-range-track {
  background: #ececec !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.10) !important;
}

.ayis-range-fill {
  background: linear-gradient(90deg, #c00000 0%, #e00000 100%) !important;
  box-shadow: 0 4px 12px rgba(192,0,0,.18) !important;
}

.ayis-range-slider input[type="range"] {
  top: 6px !important;
  height: 34px !important;
}

.ayis-range-slider input[type="range"]::-webkit-slider-thumb {
  width: 30px !important;
  height: 30px !important;
  border: 4px solid #fff !important;
  background: #c00000 !important;
  box-shadow: 0 7px 16px rgba(0,0,0,.20), 0 0 0 1px rgba(192,0,0,.20) !important;
}

.ayis-range-slider input[type="range"]::-moz-range-thumb {
  width: 30px !important;
  height: 30px !important;
  border: 4px solid #fff !important;
  background: #c00000 !important;
  box-shadow: 0 7px 16px rgba(0,0,0,.20), 0 0 0 1px rgba(192,0,0,.20) !important;
}

.ayis-price-inputs {
  gap: 10px !important;
}

.ayis-price-inputs span {
  margin-bottom: 7px !important;
  color: #666 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
}

.ayis-price-inputs input {
  min-height: 44px !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.035) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
}

.ayis-price-inputs input:focus {
  outline: none !important;
  border-color: rgba(192,0,0,.48) !important;
  box-shadow: 0 0 0 4px rgba(192,0,0,.10), 0 7px 16px rgba(0,0,0,.055) !important;
}

@media (max-width: 767px) {
  .ayis-dropdown.is-mobile-fullscreen .ayis-range-wrap {
    margin: 8px 0 2px !important;
    padding: 14px 12px 15px !important;
    border-radius: 16px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-values {
    margin-bottom: 17px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-values span {
    min-width: 56px !important;
    min-height: 32px !important;
    font-size: 13px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider {
    height: 48px !important;
    margin: 0 8px 15px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-track,
  .ayis-dropdown.is-mobile-fullscreen .ayis-range-fill {
    top: 22px !important;
    height: 7px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"] {
    top: 7px !important;
    height: 38px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"]::-webkit-slider-thumb {
    width: 34px !important;
    height: 34px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-range-slider input[type="range"]::-moz-range-thumb {
    width: 34px !important;
    height: 34px !important;
  }

  .ayis-dropdown.is-mobile-fullscreen .ayis-price-inputs input {
    min-height: 46px !important;
    border-radius: 12px !important;
  }
}


/* v1.0.44 - productos recomendados premium en PC con imagen más grande */
@media (min-width: 768px) {
  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-shell {
    padding: 0 62px 28px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track {
    gap: 20px !important;
    padding: 6px 4px 16px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item {
    flex: 0 0 232px !important;
    width: 232px !important;
    max-width: 232px !important;
    padding: 10px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.055) !important;
    background: #fff !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item:hover,
  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item.is-active {
    transform: translateY(-2px) !important;
    border-color: rgba(192,0,0,.22) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.095) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-image {
    width: 100% !important;
    height: 206px !important;
    flex: 0 0 206px !important;
    margin: 0 0 12px 0 !important;
    padding: 2px !important;
    border: 0 !important;
    border-radius: 17px !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(1.12) !important;
    transform-origin: center center !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-info {
    padding: 0 2px !important;
    gap: 5px !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-name {
    min-height: calc(1.28em * 2) !important;
    max-height: calc(1.28em * 2) !important;
    line-height: 1.28 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-meta {
    margin-top: 2px !important;
    font-size: 12px !important;
    color: #777 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-recommended-track .ayis-recommended-item .ayis-price {
    padding: 10px 2px 0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
  }
}


/* v1.0.51 - etiqueta de stock para referencia exacta sin disponibilidad */
.ayis-stock-badge {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-top: 5px !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
}

.ayis-stock-badge-out {
  color: #b00000 !important;
  background: rgba(192,0,0,.08) !important;
  border: 1px solid rgba(192,0,0,.16) !important;
}

.ayis-dropdown.is-mobile-fullscreen .ayis-stock-badge {
  margin-top: 3px !important;
  padding: 4px 7px !important;
  font-size: 10px !important;
}


/* v1.0.53 - PC: filtro lateral sin solaparse y scroll bloqueado a la capa del buscador */
@media (min-width: 768px) {
  html.ayis-desktop-scroll-locked,
  body.ayis-desktop-scroll-locked {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  .ayis-dropdown.is-desktop-fullpage {
    grid-template-columns: clamp(330px, 22vw, 370px) minmax(0, 1fr) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-mobile-head,
  .ayis-dropdown.is-desktop-fullpage .ayis-search-actions,
  .ayis-dropdown.is-desktop-fullpage .ayis-filterbar {
    grid-column: 1 / 3 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel,
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar,
  body .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-open,
  body .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar.is-open {
    left: clamp(16px, 1.5vw, 24px) !important;
    width: clamp(260px, 18vw, 300px) !important;
    max-width: clamp(260px, 18vw, 300px) !important;
    z-index: 2147483645 !important;
    overscroll-behavior: contain !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-categories-section,
  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    grid-column: 2 !important;
    margin-left: 0 !important;
    min-width: 0 !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-categories-section {
    margin-right: 28px !important;
  }

  .ayis-dropdown.is-desktop-fullpage > .ayis-section:not(.ayis-categories-section) {
    margin-right: 28px !important;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .ayis-dropdown.is-desktop-fullpage {
    grid-template-columns: 310px minmax(0, 1fr) !important;
  }

  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel,
  .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar,
  body .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-open,
  body .ayis-dropdown.is-desktop-fullpage .ayis-filter-panel.is-desktop-sidebar.is-open {
    width: 260px !important;
    max-width: 260px !important;
    left: 14px !important;
  }
}
