/* =============================================================================
   ZEO Parfums — Brands Slider + Modal
   Solo lo que Tailwind no puede manejar.
============================================================================= */

/* ── Blaze-slider track ──────────────────────────────────────────────────── */
.zeo-brands-blaze {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.zeo-brands-blaze .blaze-container {
  overflow: hidden;
}
.zeo-brands-blaze .blaze-track {
  display: flex;
  align-items: flex-start;
}

/* ── Brand item hover ────────────────────────────────────────────────────── */
.zeo-brand-item:hover {
  transform: translateY(-2px);
}
.zeo-brand-item:hover .zeo-brand-img-wrap {
  border-color: #534dfa;
  box-shadow: 0 0 0 2px rgba(83, 77, 250, 0.3);
}

/* ── Expand button estado open ───────────────────────────────────────────── */
.zeo-brands-expand-btn {
  transition:
    background 0.2s,
    transform 0.3s;
}
.zeo-brands-expand-btn.is-open {
  transform: rotate(180deg);
}

/* ── Modal overlay (estado JS) ───────────────────────────────────────────── */
.zeo-brands-modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.zeo-brands-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Modal entrada animada ───────────────────────────────────────────────── */
.zeo-brands-modal {
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zeo-brands-modal-overlay.is-visible .zeo-brands-modal {
  transform: translateY(0) scale(1);
}

/* ── Alpha btn estados JS ────────────────────────────────────────────────── */
.zeo-alpha-btn {
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.zeo-alpha-btn:hover,
.zeo-alpha-btn.is-active {
  background: #534dfa;
  border-color: #534dfa;
  color: #fff;
}

/* ── Brand card selected ─────────────────────────────────────────────────── */
.zeo-brand-card.is-hidden {
  display: none;
}
.zeo-brand-card-inner {
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.zeo-brand-card-inner:hover,
.zeo-brand-card-inner.is-selected {
  border-color: #534dfa;
  background: #18163a;
  color: #fff;
}

/* ── Search focus-within ─────────────────────────────────────────────────── */
.zeo-brands-search-wrap:focus-within {
  border-color: #534dfa;
}

/* ── Products panel slide-in ─────────────────────────────────────────────── */
.zeo-brands-products-panel {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  /* Evitar que el scroll se propague al contenedor padre en iOS */
  overscroll-behavior: contain;
}
.zeo-brands-products-panel.is-open {
  transform: translateX(0);
}

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
.zeo-brands-products-grid {
  -webkit-overflow-scrolling: touch; /* scroll momentum en iOS */
  overscroll-behavior: contain; /* no propaga scroll al modal/body */
  overflow-y: auto;
}

.zeo-brands-modal-grid::-webkit-scrollbar,
.zeo-brands-products-grid::-webkit-scrollbar {
  width: 3px;
}
.zeo-brands-modal-grid::-webkit-scrollbar-track,
.zeo-brands-products-grid::-webkit-scrollbar-track {
  background: transparent;
}
.zeo-brands-modal-grid::-webkit-scrollbar-thumb,
.zeo-brands-products-grid::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}

/* ── Spinner ─────────────────────────────────────────────────────────────── */
.zeo-spin {
  animation: zeo-spin 1s linear infinite;
}
@keyframes zeo-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── WooCommerce grid overrides (!important requerido) ───────────────────── */
.zeo-bp-woo-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.zeo-bp-woo-grid > li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
  position: relative !important; /* necesario para el overlay absoluto */
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .zeo-brands-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .zeo-brands-modal {
    max-height: 92vh;
    height: 92vh;
    min-height: unset;
    border-radius: 14px 14px 0 0;
    align-self: flex-end;
    margin: 0;
    max-width: 100%;
  }
  .zeo-bp-woo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .zeo-brands-modal {
    max-width: 680px;
    max-height: 80vh;
  }
}
