/* Hero Section — structural base only.
   Home ATF sizing/composition authority: css/phase-a-home.css (H2). */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* min-height intentionally omitted — owned by phase-a-home.css */
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(74, 127, 212, 0.07) 0%, transparent 42%),
              radial-gradient(circle at bottom left, rgba(197, 204, 214, 0.04) 0%, var(--color-bg) 62%);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  z-index: -1;
  filter: blur(80px);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  z-index: 10;
  text-align: left;
}

/* Hero Carousel */
.hero-carousel-card {
  background: var(--color-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.03);
}

.hero-carousel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-carousel-img.active {
  opacity: 1;
}

.hero-title {
  font-size: 5rem; /* Clean modern size */
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  font-weight: 700;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-icon {
  color: var(--color-text);
}

.trust-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Catalog Page */
.page-header {
  padding: 140px 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.catalog-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  letter-spacing: -0.02em;
}

.cta-card {
  background: linear-gradient(135deg, rgba(10,20,37,0.8) 0%, rgba(0,0,0,1) 100%);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  margin-bottom: 3rem;
}

.search-bar input {
  background: transparent;
  border: none;
  color: white;
  flex: 1;
  outline: none;
  margin-left: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

/* Catalog page — filtros */
.catalog-page-body {
  padding: 0.7rem 24px 3rem;
  animation-delay: 0.2s;
}

.catalog-header.page-header {
  padding: 104px 0 0.55rem;
  border-bottom: 0;
}

.catalog-header-lead {
  margin-top: 0.28rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.catalog-search-bar {
  max-width: 600px;
  margin: 0 auto 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50px;
  padding: 16px 24px;
  border-bottom: none;
}

.catalog-search-icon {
  color: var(--color-text-muted);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.catalog-search-bar input {
  font-size: 1rem;
  width: 100%;
  margin-left: 12px;
}

.catalog-filters {
  max-width: 920px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.catalog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.catalog-filter-pill {
  appearance: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.catalog-filter-pill:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.catalog-filter-pill.is-active {
  color: var(--color-text);
  border-color: rgba(74, 127, 212, 0.45);
  background: rgba(74, 127, 212, 0.12);
}

.catalog-filter-pill--clear {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--color-text);
}

.catalog-filter-pill--clear:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.catalog-section-block {
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
}

.catalog-empty-state {
  padding: 6rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(10, 20, 37, 0.4);
}

.catalog-empty-icon {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.catalog-empty-title {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.catalog-empty-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

.catalog-empty-clear {
  margin-top: 0.5rem;
}

/* Admin Panel */
.admin-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 1rem 0;
  cursor: pointer;
  transition: color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
}

.tab-btn.active {
  color: var(--color-text);
  border-color: var(--color-text);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 1.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.admin-table th {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--color-bg);
  border: 1px solid var(--glass-border);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
}

/* Footer Component — continuous with page bg (iOS overscroll) */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--glass-border);
  padding: 6rem 0 3rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero {
    /* Home sizing owned by phase-a-home.css (M3) */
    min-height: auto;
  }

  .catalog-section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .catalog-filter-pill {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .catalog-filters {
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .site-footer {
    margin-top: 2rem;
    padding: 2.75rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: var(--color-bg);
  }

  /* Reduce excessive section spacing on mobile */
  section[style*="margin-bottom: 5rem"] {
    margin-bottom: 3rem !important;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}

/* Luxury Quiz Recommender Styles */
.quiz-progress-bar {
  width: 100%;
  height: 2px;
  background: var(--glass-border);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.quiz-progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--color-gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-option-btn {
  padding: 1.5rem !important;
  font-size: 1rem !important;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(10, 20, 37, 0.5);
}

.quiz-option-btn:hover {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(197, 160, 89, 0.2);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-card img {
  transition: transform 0.5s ease;
}

.result-card:hover img {
  transform: scale(1.05);
}

/* —— C5 Intelligent catalog — desktop control system —— */
.catalog-page-body {
  max-width: 1120px;
}
.catalog-system {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.catalog-toolbar-row1 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(9.5rem, 11rem) auto;
  gap: 0.55rem;
  align-items: stretch;
}
/* Desktop: wrappers dissolve so grid columns stay identical to Block 1 */
.catalog-toolbar-controls,
.catalog-toolbar-actions {
  display: contents;
}
.catalog-filters-label-short,
.catalog-sheet-title-short,
.catalog-clear-label-short {
  display: none;
}
.catalog-filters-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: rgba(74, 127, 212, 0.85);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: middle;
}
.catalog-filters-badge[hidden] {
  display: none !important;
}
.catalog-filters-sheet-handle {
  display: none;
}
.catalog-sheet-apply {
  display: none;
}
.catalog-filters-panel-scroll {
  display: contents;
}
.catalog-control {
  box-sizing: border-box;
  min-height: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(8, 14, 28, 0.72);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.catalog-search-bar.catalog-control {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  margin: 0;
  width: 100%;
}
.catalog-search-bar input {
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  width: 100%;
  height: 100%;
  margin-left: 0.55rem;
  font: inherit;
  font-size: 0.9rem;
}
.catalog-search-bar input::placeholder {
  color: rgba(180, 195, 215, 0.5);
}
.catalog-category-segment {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 44px;
  background: rgba(8, 14, 28, 0.72);
}
.catalog-seg-btn {
  appearance: none;
  border: 0;
  border-right: 1px solid var(--glass-border);
  background: transparent;
  color: var(--color-text-muted);
  min-height: 44px;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.catalog-seg-btn:last-child { border-right: 0; }
.catalog-seg-btn:hover { color: #fff; background: rgba(255,255,255,0.04); }
.catalog-seg-btn.is-active {
  color: #fff;
  background: rgba(74, 127, 212, 0.14);
}
.catalog-sort-wrap {
  margin: 0;
  display: block;
  min-width: 0;
}
.catalog-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0 2.1rem 0 0.85rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(210,220,235,0.85) 50%),
    linear-gradient(135deg, rgba(210,220,235,0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.catalog-select:hover,
.catalog-control:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.catalog-select:focus-visible,
.catalog-control:focus-visible,
.catalog-seg-btn:focus-visible,
.catalog-intent-chip:focus-visible,
.catalog-filter-pill:focus-visible,
.catalog-filters-toggle:focus-visible {
  outline: 2px solid rgba(158, 182, 216, 0.65);
  outline-offset: 2px;
}
.catalog-filters-toggle {
  padding: 0 1rem;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  color: rgba(230, 235, 245, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catalog-filters-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.24);
}
.catalog-filters-toggle.has-advanced,
.catalog-filters-toggle[aria-expanded="true"] {
  border-color: rgba(74, 127, 212, 0.42);
  color: #fff;
  background: rgba(74, 127, 212, 0.1);
}
.catalog-intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}
.catalog-intent-chip {
  appearance: none;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(180, 195, 220, 0.16);
  background: transparent;
  color: rgba(190, 200, 215, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.catalog-intent-chip:hover {
  color: rgba(230, 235, 245, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}
.catalog-intent-chip.is-active {
  color: #fff;
  border-color: rgba(74, 127, 212, 0.4);
  background: rgba(74, 127, 212, 0.1);
}
.catalog-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  min-height: 1.1rem;
}
.catalog-result-count {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.catalog-active-row {
  margin: 0;
}
.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.catalog-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  appearance: none;
  font-size: 0.74rem;
  padding: 0.35rem 0.65rem 0.35rem 0.8rem;
  border: 1px solid rgba(74, 127, 212, 0.35);
  background: rgba(74, 127, 212, 0.1);
  color: rgba(235, 240, 248, 0.95);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-body);
}
.catalog-active-chip:hover {
  border-color: rgba(74, 127, 212, 0.45);
  background: rgba(74, 127, 212, 0.14);
}
.catalog-active-chip-x {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1;
}
.catalog-clear-all {
  appearance: none;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(230, 235, 245, 0.9);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.catalog-clear-all:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.catalog-header-lead {
  margin-top: 0.28rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.catalog-filters-panel {
  border: 1px solid rgba(180, 200, 230, 0.16);
  padding: 0.9rem 1rem 0.95rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 28, 48, 0.82), rgba(8, 14, 28, 0.88));
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}
.catalog-filters-panel:not(.is-open) {
  display: none;
}
.catalog-filters-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(180, 200, 230, 0.12);
}
.catalog-filters-panel-head strong {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(220, 228, 240, 0.92);
}
.catalog-filters-close {
  min-width: 34px;
  min-height: 34px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: var(--radius-full);
  cursor: pointer;
}
.catalog-filters-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 0.85rem;
}
.catalog-filter-group { margin-bottom: 0; }
.catalog-filter-group--brands,
.catalog-filter-group--profile { grid-column: 1 / -1; }
.catalog-filter-label {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.catalog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-start;
}
.catalog-filter-pill {
  appearance: none;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  min-height: 32px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.catalog-filter-pill:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.catalog-filter-pill.is-active {
  color: var(--color-text);
  border-color: rgba(74, 127, 212, 0.42);
  background: rgba(74, 127, 212, 0.12);
}
.catalog-brand-picker {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(200px, 340px);
  gap: 0.55rem;
  align-items: center;
  max-width: 600px;
}
.catalog-brand-query,
.catalog-brand-select {
  width: 100%;
  padding: 0 0.85rem;
}
.catalog-brand-select {
  padding-right: 2.1rem;
}
.catalog-brand-query::placeholder {
  color: rgba(180, 195, 215, 0.5);
}
.catalog-filters-panel-foot {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(180, 200, 230, 0.12);
}
.catalog-empty-constraints {
  text-align: left;
  max-width: 420px;
  margin: 1rem auto 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.card-scent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0.65rem;
}
.card-scent-chip {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(180,195,220,0.25);
  color: rgba(220,228,240,0.85);
  border-radius: var(--radius-full);
}
.badge-stock { opacity: 0.85; }
.catalog-recent {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
@media (max-width: 980px) {
  .catalog-toolbar-row1 {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-search-bar.catalog-control { grid-column: 1 / -1; }
  .catalog-category-segment { grid-column: 1 / -1; }
}

/* —— C8 M2 / M2.1 mobile catalog (≤860). Desktop ≥861 unchanged. —— */
/* C8 M2.2 — Liquid Glass mobile catalog (≤860). Desktop ≥861 unchanged. */
@media (max-width: 860px) {
  .catalog-header.page-header {
    padding: 56px 0 0;
  }
  .catalog-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .catalog-header h1 {
    margin: 0;
    font-family: var(--font-body), 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: none;
  }
  .catalog-header-lead {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(180, 195, 215, 0.72);
  }

  .catalog-page-body {
    padding: 8px 16px calc(1.5rem + var(--lpvp-bottom-nav-h, 48px) + env(safe-area-inset-bottom, 0px));
    overflow-x: clip;
    max-width: 100%;
  }

  .catalog-system {
    gap: 12px;
    margin-bottom: 16px;
    overflow-x: clip;
    max-width: 100%;
  }

  .catalog-toolbar-row1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .catalog-toolbar-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
  }

  .catalog-toolbar-actions {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .catalog-sort-wrap--toolbar {
    display: none !important;
  }

  /* Search — primary glass surface */
  .catalog-search-bar.catalog-control {
    grid-column: auto;
    height: 48px;
    min-height: 48px;
    border-radius: 20px;
    padding: 0 16px;
    background: rgba(14, 24, 42, 0.82);
    border: 1px solid rgba(210, 225, 245, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 24px rgba(0, 0, 0, 0.18);
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .catalog-search-bar.catalog-control {
      background: rgba(16, 28, 48, 0.55);
      -webkit-backdrop-filter: blur(18px) saturate(1.35);
      backdrop-filter: blur(18px) saturate(1.35);
    }
  }
  .catalog-search-bar input {
    font-size: 15px;
    font-weight: 400;
  }
  .catalog-search-bar input::placeholder {
    font-size: 14px;
    opacity: 0.55;
  }
  .catalog-search-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
  }

  /* Category segment — full-width glass capsule (separate from Filtros) */
  .catalog-category-segment {
    flex: none;
    width: 100%;
    min-width: 0;
    grid-column: auto;
    border-radius: 18px;
    min-height: 44px;
    height: 44px;
    padding: 3px;
    background: rgba(14, 24, 42, 0.82);
    border: 1px solid rgba(210, 225, 245, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .catalog-category-segment {
      background: rgba(16, 28, 48, 0.5);
      -webkit-backdrop-filter: blur(14px) saturate(1.25);
      backdrop-filter: blur(14px) saturate(1.25);
    }
  }
  .catalog-seg-btn {
    min-height: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 15px;
    color: rgba(210, 220, 235, 0.78);
  }
  .catalog-seg-btn.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #f5f8fc;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 2px 8px rgba(0, 0, 0, 0.12);
  }

  /* Filtros — compact glass */
  .catalog-filters-toggle {
    height: 44px;
    min-height: 44px;
    min-width: 5.5rem;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    background: rgba(14, 24, 42, 0.82);
    border: 1px solid rgba(210, 225, 245, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .catalog-filters-toggle {
      background: rgba(16, 28, 48, 0.5);
      -webkit-backdrop-filter: blur(14px) saturate(1.25);
      backdrop-filter: blur(14px) saturate(1.25);
    }
  }
  .catalog-filters-label-long,
  .catalog-sheet-title-long {
    display: none;
  }
  .catalog-filters-label-short,
  .catalog-sheet-title-short,
  .catalog-clear-label-short {
    display: inline;
  }
  .catalog-clear-label-long {
    display: none;
  }

  /* Intent chips — Montserrat, first fully visible, peek, last reachable */
  .catalog-intent-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 2px 16px 2px 16px;
    max-width: none;
    scroll-padding-inline: 16px;
    overscroll-behavior-x: contain;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 20px), transparent);
  }
  .catalog-intent-row::-webkit-scrollbar {
    display: none;
  }
  .catalog-intent-chip {
    flex: 0 0 auto;
    min-height: 36px;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-family: var(--font-body), 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    background: transparent;
    border: 1px solid rgba(200, 215, 235, 0.14);
    color: rgba(200, 210, 225, 0.78);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .catalog-intent-chip:first-child {
    margin-left: 0;
  }
  .catalog-intent-chip:last-child {
    margin-right: 8px; /* keep last chip fully reachable past mask fade */
  }
  .catalog-intent-chip.is-active {
    background: rgba(74, 127, 212, 0.14);
    border-color: rgba(140, 180, 230, 0.28);
    color: #eef4fb;
    font-weight: 600;
  }

  .catalog-meta-row {
    display: none;
  }
  .catalog-active-row {
    margin-top: 0;
  }
  .catalog-active-filters {
    gap: 8px;
  }
  .catalog-active-chip {
    font-size: 12px;
    font-weight: 400;
    padding: 4px 8px 4px 12px;
    min-height: 28px;
    letter-spacing: 0;
    text-transform: none;
  }
  .catalog-clear-all {
    min-height: 28px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
  }

  /* Filter sheet */
  .catalog-filters-panel-grid { grid-template-columns: 1fr; }
  .catalog-brand-picker { grid-template-columns: 1fr; max-width: none; gap: 8px; }

  .catalog-filters-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: auto 0 0 0;
    z-index: var(--lpvp-z-filter-sheet, 75);
    max-height: min(82vh, 720px);
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(210, 225, 245, 0.12);
    border-bottom: 0;
    transform: translateY(110%);
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
    padding: 0;
    background: rgba(10, 16, 30, 0.97);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.4);
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .catalog-filters-panel {
      background: rgba(12, 20, 36, 0.88);
      -webkit-backdrop-filter: blur(24px) saturate(1.3);
      backdrop-filter: blur(24px) saturate(1.3);
    }
  }
  .catalog-filters-panel:not(.is-open) {
    display: flex;
    pointer-events: none;
  }
  .catalog-filters-panel.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .catalog-filters-sheet-handle {
    display: block;
    width: 36px;
    height: 4px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: rgba(220, 230, 245, 0.28);
    flex-shrink: 0;
  }

  .catalog-filters-panel-head {
    flex-shrink: 0;
    margin: 0;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(180, 200, 230, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .catalog-filters-panel-head strong {
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    color: #f2f5fa;
  }
  .catalog-filters-close {
    min-width: 40px;
    min-height: 40px;
    border-radius: 999px;
    border-color: rgba(180, 200, 230, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .catalog-filters-panel-scroll {
    display: block;
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 16px 8px;
    min-height: 0;
    background: rgba(8, 14, 26, 0.92);
  }

  .catalog-filter-group {
    margin-bottom: 16px;
  }
  .catalog-filter-group--sort {
    margin-bottom: 16px;
  }
  .catalog-filter-label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(190, 205, 225, 0.7);
  }
  .catalog-sort-wrap--sheet {
    display: block;
    width: 100%;
  }
  .catalog-sort-wrap--sheet .catalog-select {
    width: 100%;
    height: 44px;
    min-height: 44px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 215, 235, 0.12);
  }
  .catalog-filter-row {
    gap: 8px;
  }
  .catalog-filter-row--segment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .catalog-filter-pill {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(200, 215, 235, 0.14);
  }
  .catalog-filter-pill.is-active {
    background: rgba(74, 127, 212, 0.16);
    border-color: rgba(140, 180, 230, 0.32);
    color: #eef4fb;
  }
  .catalog-filter-row--segment .catalog-filter-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .catalog-brand-query,
  .catalog-brand-select {
    height: 44px;
    min-height: 44px;
    border-radius: 14px;
  }

  .catalog-filters-panel-foot {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 8px;
    margin: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(180, 200, 230, 0.1);
    background: rgba(10, 16, 28, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .catalog-filters-panel-foot {
      background: rgba(12, 20, 34, 0.72);
      -webkit-backdrop-filter: blur(16px) saturate(1.2);
      backdrop-filter: blur(16px) saturate(1.2);
    }
  }
  .catalog-sheet-clear {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
  }
  .catalog-sheet-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: #0a1425;
    font-family: var(--font-body), 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
  }
  .catalog-sheet-apply:active {
    transform: scale(0.98);
  }

  /* Section heading */
  .catalog-page-body .catalog-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 12px;
    border: 0;
    padding: 0;
  }
  .catalog-page-body .catalog-section-title {
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    margin: 0;
    color: rgba(240, 244, 250, 0.96);
  }
  .catalog-page-body .catalog-section-count {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(170, 185, 205, 0.68);
    white-space: nowrap;
  }

  /* Product tiles — unboxed Apple retail */
  .catalog-page-body .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 12px !important;
    padding: 0 !important;
  }
  .catalog-page-body .product-card.product-tile {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
  .catalog-page-body .product-card.product-tile:hover {
    transform: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
  .catalog-page-body .product-tile-media.product-image-wrap,
  .catalog-page-body .product-tile-media {
    position: relative !important;
    aspect-ratio: 1 / 1.05 !important;
    padding: 10px !important;
    margin: 0 !important;
    border-radius: 22px !important;
    /* C8 M7 — dissolve photo field into page navy (Advisor philosophy, lighter) */
    background: #02111f !important;
    border: 0 !important;
    box-shadow: inset 0 0 52px 30px var(--color-bg, #0a1425) !important;
    overflow: hidden !important;
    display: block !important;
    isolation: isolate;
  }
  .catalog-page-body .product-tile-hit {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }
  .catalog-page-body .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: scale(1.04) !important;
    transform-origin: center center;
    filter: none !important;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
    mask-composite: intersect;
  }
  .catalog-page-body .product-tile-oos {
    display: inline-flex !important;
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(235, 240, 248, 0.9);
    background: rgba(8, 12, 22, 0.72);
    border: 1px solid rgba(210, 225, 245, 0.1);
    z-index: 1;
  }
  .catalog-page-body .product-tile-add {
    display: inline-flex !important;
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #f5f8fc;
    background: rgba(14, 24, 42, 0.88);
    border: 1px solid rgba(210, 225, 245, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.22);
  }
  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .catalog-page-body .product-tile-add {
      background: rgba(16, 28, 48, 0.55);
      -webkit-backdrop-filter: blur(12px) saturate(1.3);
      backdrop-filter: blur(12px) saturate(1.3);
    }
  }
  .catalog-page-body .product-tile-add i {
    width: 18px;
    height: 18px;
  }
  .catalog-page-body .product-tile-add:disabled {
    opacity: 0.38;
  }

  .catalog-page-body .product-info {
    padding: 12px 4px 0 !important;
    gap: 0 !important;
    background: transparent !important;
  }
  .catalog-page-body .product-tile-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .catalog-page-body .product-brand {
    color: rgba(180, 195, 215, 0.78) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin: 0 0 4px !important;
  }
  .catalog-page-body .product-name {
    font-family: var(--font-body), 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    height: auto !important;
    max-height: 2.4em !important;
    margin: 0 0 4px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }
  .catalog-page-body .card-scent-chips,
  .catalog-page-body .product-details,
  .catalog-page-body .product-card-price-desktop,
  .catalog-page-body .product-actions--full,
  .catalog-page-body .product-actions--compact {
    display: none !important;
  }
  .catalog-page-body .product-meta-line {
    display: block !important;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(175, 190, 210, 0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .catalog-page-body .product-price-block--tile {
    display: block !important;
    margin: 0 !important;
  }
  .catalog-page-body .product-price-block--tile .product-price {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
  }

  /* WA placement owned by css/style.css (bottom-right above nav).
     Do not park assist FAB in top discovery chrome. */
}

@media (max-width: 360px) {
  .catalog-header h1 {
    font-size: 26px;
  }
  .catalog-page-body {
    padding-left: 12px;
    padding-right: 12px;
  }
  /* Match body pad — avoid root scrollWidth bleed from intent rail */
  .catalog-intent-row {
    margin: 0 -12px;
    padding: 0 12px;
    mask-image: linear-gradient(90deg, transparent 0, #000 10px, #000 calc(100% - 12px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10px, #000 calc(100% - 12px), transparent);
  }
  .catalog-toolbar-controls {
    gap: 8px;
  }
  .catalog-filters-toggle {
    min-width: 4.75rem;
    padding: 0 12px;
  }
  .catalog-page-body .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 8px;
  }
  .catalog-page-body .product-name {
    font-size: 14px !important;
  }
  .catalog-page-body .product-price-block--tile .product-price {
    font-size: 16px !important;
  }
}

@media (min-width: 861px) {
  .catalog-page-body {
    max-width: 1120px;
  }
  .catalog-section-count {
    display: none;
  }
  .catalog-section-heading {
    display: block;
  }
  .catalog-filters-label-short,
  .catalog-sheet-title-short,
  .catalog-clear-label-short,
  .catalog-filters-sheet-handle,
  .catalog-sheet-apply,
  .catalog-filter-group--sort,
  .catalog-sort-wrap--sheet {
    display: none;
  }
  .catalog-filters-label-long,
  .catalog-sheet-title-long,
  .catalog-clear-label-long {
    display: inline;
  }
  .catalog-filters-panel-scroll {
    display: contents;
  }
  .catalog-toolbar-controls,
  .catalog-toolbar-actions {
    display: contents;
  }
  .product-meta-line,
  .product-actions--compact,
  .product-tile-add,
  .product-tile-oos,
  .product-price-block--tile {
    display: none !important;
  }
  .product-tile-copy {
    display: contents;
  }
  .product-card-price-desktop {
    display: block;
  }
  .product-actions--full {
    display: flex;
  }
}


/* Catalog enter: opacity-only so fixed filter sheet is not trapped by a transform containing block */
@keyframes catalogEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}
.catalog-enter {
  animation: catalogEnter 0.55s var(--transition-smooth, ease) forwards;
}

/* Filter scrim — above WA, below sheet; only while advanced filters open */
html.lpvp-chrome-filters .catalog-filters-scrim {
  display: block;
}
.catalog-filters-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--lpvp-z-filter-scrim, 70);
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* —— Advisor UI v1.2 (C6) — desktop CRO visual system —— */
.adv-app {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.adv-progress { margin-bottom: 1.75rem; }
.adv-progress-bar {
  height: 3px;
  background: rgba(180, 200, 230, 0.14);
  overflow: hidden;
  border-radius: var(--radius-full);
}
.adv-progress-fill {
  height: 100%;
  background: rgba(74, 127, 212, 0.95);
  transition: width 0.35s ease;
  border-radius: var(--radius-full);
}
.adv-progress-label {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 500;
}
.adv-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.45rem, 4.5vw, 1.9rem);
  text-align: center;
  margin: 0 0 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.adv-sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: -0.55rem auto 1.65rem;
  max-width: 30rem;
  line-height: 1.5;
}
.adv-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 28rem;
  margin: 0 auto;
}
.adv-option {
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(180, 200, 230, 0.18);
  border-radius: var(--radius-md);
  background: rgba(12, 20, 38, 0.72);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.adv-option:hover {
  border-color: rgba(74, 127, 212, 0.45);
  background: rgba(18, 30, 54, 0.92);
}
.adv-option.is-selected {
  border-color: rgba(74, 127, 212, 0.65);
  background: rgba(74, 127, 212, 0.16);
  color: #fff;
}
.adv-nav {
  margin-top: 1.75rem;
  text-align: center;
}
.adv-nav--row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.adv-nav--row .btn {
  min-height: 44px;
  border-radius: var(--radius-md);
}
.adv-nav--refine {
  margin-top: 1.75rem;
  text-align: center;
}
.adv-nav-quiet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 0.85rem;
}
.adv-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(170, 200, 240, 0.88);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(170, 200, 240, 0.28);
  padding: 0.35rem 0.15rem;
  min-height: 44px;
  cursor: pointer;
}
.adv-link:hover,
.adv-link:focus-visible {
  color: rgba(210, 225, 250, 0.98);
  border-bottom-color: rgba(210, 225, 250, 0.55);
}
.adv-refine-groups {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}
.adv-refine-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(180, 200, 230, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(10, 18, 34, 0.55);
}
.adv-refine-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(210, 220, 235, 0.78);
  font-weight: 600;
}
.adv-refine-label--sub {
  margin-top: 0.35rem;
}
.adv-seg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.adv-seg-btn {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(180, 200, 230, 0.18);
  border-radius: var(--radius-md);
  background: rgba(8, 14, 28, 0.65);
  color: rgba(230, 236, 245, 0.92);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.adv-seg--pills .adv-seg-btn {
  border-radius: var(--radius-full);
}
.adv-seg-btn:hover {
  border-color: rgba(74, 127, 212, 0.45);
}
.adv-seg-btn.is-selected {
  border-color: rgba(74, 127, 212, 0.7);
  background: rgba(74, 127, 212, 0.18);
  color: #fff;
}
.adv-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.adv-field--amount {
  margin-top: 0.25rem;
}
.adv-field input {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(180, 200, 230, 0.2);
  background: rgba(8, 14, 28, 0.72);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.adv-field input:focus {
  border-color: rgba(74, 127, 212, 0.55);
}
.adv-results-head { margin-bottom: 1.35rem; }
.adv-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: 1.15rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(180, 200, 230, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(10, 18, 34, 0.55);
}
.adv-card.is-top {
  border-color: rgba(74, 127, 212, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.adv-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-light, var(--color-surface));
  border-radius: var(--radius-lg);
}
.adv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.adv-card-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0.15rem 0 0.65rem;
}
.adv-audience {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 127, 212, 0.35);
  background: rgba(74, 127, 212, 0.12);
  color: rgba(220, 230, 245, 0.95);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.adv-audience--unspecified {
  border-color: rgba(180, 200, 230, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
}
.adv-ml {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.adv-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-items: center;
}
.adv-band {
  color: rgba(160, 195, 240, 0.98);
  font-weight: 600;
}
.adv-conf {
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.78rem;
}
.adv-partial {
  color: var(--color-text-muted);
  border: 1px solid rgba(180, 200, 230, 0.2);
  border-radius: var(--radius-full);
  padding: 0.15rem 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.adv-brand {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.adv-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.adv-card-identity {
  margin-bottom: 0.35rem;
}
.adv-card-match {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0.15rem 0 0.55rem;
}
.adv-back-quiet {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(170, 200, 240, 0.82);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0.55rem 0.35rem;
  min-height: 44px;
  cursor: pointer;
}
.adv-back-quiet:hover,
.adv-back-quiet:focus-visible {
  color: rgba(210, 225, 250, 0.98);
  outline: none;
}
.adv-back-quiet:focus-visible {
  box-shadow: 0 0 0 2px rgba(74, 127, 212, 0.45);
  border-radius: 8px;
}
.adv-option:focus-visible,
.adv-seg-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 127, 212, 0.55);
}
.adv-stock {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.adv-stock.is-in { color: #9ec7b0; }
.adv-stock.is-out { color: #c9a0a0; }
.adv-reasons {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.adv-reasons li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(74, 127, 212, 0.35);
}
.adv-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.adv-card-cta .btn {
  min-height: 44px;
  flex: 1 1 auto;
  border-radius: var(--radius-md);
}
.adv-results-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 1.75rem 0 1rem;
}
.adv-loading, .adv-empty {
  text-align: center;
  padding: 2.5rem 0.5rem;
}
.adv-loading .spinner { margin: 0 auto 1.25rem; }
.adv-card-hit {
  display: none;
}
.adv-optional {
  margin: -0.35rem 0 0.85rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(180, 200, 230, 0.72);
  text-transform: none;
}
.adv-refine-head .adv-question {
  margin-bottom: 0.35rem;
}
.adv-page-lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  text-align: center;
}
.adv-page {
  padding: 1.5rem 24px 8rem;
  animation-delay: 0.15s;
}

@media (min-width: 720px) {
  .adv-app { max-width: 880px; }
  .adv-card {
    grid-template-columns: minmax(200px, 240px) 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.25rem;
  }
  .adv-options { max-width: 32rem; }
}
@media (max-width: 390px) {
  .adv-option { font-size: 0.98rem; }
  .adv-name { font-size: 1.2rem; }
}

/* ——— C8 M5 mobile Advisor / M5.1 polish / v2 Q6 (≤860) — desktop ≥861 unchanged ——— */
@media (max-width: 860px) {
  /* Keep institutional footer below the active Advisor viewport */
  html.lpvp-chrome-advisor #app {
    min-height: calc(100svh - var(--lpvp-bottom-nav-h, 48px) - env(safe-area-inset-bottom, 0px));
  }

  html.lpvp-chrome-advisor footer {
    margin-top: 0;
  }

  html.lpvp-chrome-advisor {
    scroll-padding-bottom: calc(var(--lpvp-bottom-nav-h, 48px) + env(safe-area-inset-bottom, 0px) + 16px);
  }

  html.lpvp-chrome-advisor .adv-nav--refine {
    scroll-margin-bottom: calc(var(--lpvp-bottom-nav-h, 48px) + env(safe-area-inset-bottom, 0px) + 16px);
  }

  .adv-page-header {
    padding-top: calc(52px + env(safe-area-inset-top, 0px) + 16px);
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .adv-page-header .container {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }

  .adv-page-header h1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 auto;
    max-width: 28rem;
  }

  .adv-page-lead {
    display: none;
  }

  .adv-page {
    padding: 12px 16px calc(4rem + var(--lpvp-bottom-nav-h, 48px) + env(safe-area-inset-bottom, 0px));
    overflow-x: clip;
    overflow-anchor: none;
    min-height: calc(100svh - 88px);
  }

  .adv-app {
    max-width: none;
    overflow-anchor: none;
  }

  .adv-progress {
    margin-bottom: 10px;
  }

  .adv-progress-label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    color: rgba(200, 210, 230, 0.78);
  }

  .adv-progress-bar {
    height: 2px;
    background: rgba(180, 200, 230, 0.12);
  }

  .adv-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .adv-question {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 14px;
    line-height: 1.22;
  }

  .adv-sub {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 12px;
    max-width: none;
  }

  .adv-optional {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 4px;
  }

  .adv-refine .adv-sub {
    display: block;
    margin-bottom: 10px;
    opacity: 0.82;
  }

  .adv-refine-head {
    margin-bottom: 0;
    text-align: center;
  }

  .adv-refine-head .adv-question {
    margin-bottom: 4px;
  }

  .adv-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: none;
    margin: 0;
  }

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

  .adv-option {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .adv-option {
      background: rgba(16, 28, 48, 0.46);
      -webkit-backdrop-filter: blur(16px) saturate(1.28);
      backdrop-filter: blur(16px) saturate(1.28);
    }
  }

  .adv-option:hover {
    border-color: rgba(74, 127, 212, 0.38);
    background: rgba(18, 30, 54, 0.7);
  }

  .adv-option.is-selected {
    border-color: rgba(180, 210, 245, 0.42);
    background: rgba(74, 127, 212, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 0 1px rgba(74, 127, 212, 0.22);
    color: #fff;
  }

  .adv-nav {
    margin-top: 14px;
    text-align: center;
  }

  .adv-nav .adv-back,
  .adv-nav .adv-back-quiet {
    min-height: 44px;
  }

  .adv-nav--row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .adv-nav--row .btn {
    width: auto;
    min-width: 12.5rem;
    max-width: 100%;
    min-height: 48px;
    border-radius: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
  }

  .adv-nav--row .btn-primary {
    order: -1;
  }

  .adv-nav--refine {
    margin-top: 16px;
    text-align: center;
    padding-bottom: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .adv-nav--refine .btn-primary,
  .adv-refine-primary {
    width: auto;
    min-width: 14rem;
    max-width: 100%;
    min-height: 52px;
    border-radius: 18px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
  }

  .adv-nav-quiet {
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
    margin-bottom: 0.25rem;
  }

  .adv-link {
    font-size: 14px;
    font-weight: 500;
    min-height: 44px;
  }

  /* Results — centered product-first tiles with peek */
  .adv-results-head {
    margin-bottom: 10px;
    text-align: center;
  }

  .adv-results-head .adv-question,
  .adv-results-head .adv-sub {
    text-align: center;
  }

  .adv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 0 18px;
    margin-bottom: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .adv-card.is-top {
    border: 0;
    box-shadow: none;
  }

  .adv-card-hit {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
  }

  .adv-card-cta {
    position: relative;
    z-index: 3;
  }

  /* C8 M5.2 / v2 final — dissolve slightly less soft (~20% less feather) */
  .adv-card-media {
    position: relative;
    width: 100%;
    border-radius: 12px;
    background: #02111f;
    box-shadow: inset 0 0 56px 32px var(--color-bg, #0a1425);
    max-height: min(30vh, 210px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    isolation: isolate;
  }

  .adv-card-media img {
    object-fit: contain;
    padding: 0;
    box-sizing: border-box;
    filter: none;
    width: 100%;
    height: 100%;
    transform: scale(1.14);
    transform-origin: center center;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-composite: intersect;
  }

  .adv-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background:
      radial-gradient(
        ellipse 72% 70% at 50% 45%,
        transparent 36%,
        rgba(10, 20, 37, 0.22) 62%,
        rgba(10, 20, 37, 0.62) 82%,
        var(--color-bg, #0a1425) 100%
      ),
      linear-gradient(
        to bottom,
        var(--color-bg, #0a1425) 0%,
        transparent 12%,
        transparent 88%,
        var(--color-bg, #0a1425) 100%
      ),
      linear-gradient(
        to right,
        var(--color-bg, #0a1425) 0%,
        transparent 10%,
        transparent 90%,
        var(--color-bg, #0a1425) 100%
      );
  }

  .adv-card-body {
    padding: 0 8px;
    min-width: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .adv-card-identity {
    text-align: center;
    margin-bottom: 6px;
  }

  .adv-brand {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 2px;
  }

  .adv-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.25;
  }

  .adv-card-match {
    justify-content: center;
    gap: 8px;
    margin: 0 0 8px;
  }

  .adv-card-facts {
    display: none;
  }

  .adv-audience {
    min-height: 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border-color: rgba(180, 200, 230, 0.2);
    background: rgba(255, 255, 255, 0.04);
  }

  .adv-ml,
  .adv-stock {
    display: none;
  }

  .adv-card-meta {
    gap: 8px;
    margin-bottom: 6px;
    letter-spacing: 0;
    text-transform: none;
    justify-content: center;
  }

  .adv-band {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(74, 127, 212, 0.35);
    background: rgba(74, 127, 212, 0.12);
    font-size: 12px;
    font-weight: 500;
  }

  .adv-conf,
  .adv-partial {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .adv-conf {
    opacity: 0.72;
  }

  .adv-reasons {
    margin: 0 0 8px;
    gap: 2px;
    align-items: center;
    width: 100%;
    max-width: 22rem;
  }

  .adv-reasons li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .adv-card .product-price-block--quiz,
  .adv-card .product-price-block {
    text-align: center;
  }

  .adv-card .product-price-block--quiz .product-price,
  .adv-card .product-price {
    font-size: 17px;
    font-weight: 600;
  }

  .adv-card .cash-price,
  .adv-card .product-cash-price {
    display: none;
  }

  .adv-card-cta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    width: 100%;
  }

  .adv-card-cta .btn,
  .adv-cta-pdp {
    width: auto;
    min-width: 9.5rem;
    max-width: 12rem;
    min-height: 44px;
    padding: 0 1.15rem;
    border-radius: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    flex: 0 0 auto;
  }

  .adv-card-cta .btn-outline {
    display: none;
  }

  .adv-results-foot {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 4px 0 16px;
  }

  .adv-results-foot .btn {
    width: auto;
    min-width: 12rem;
    max-width: 100%;
    min-height: 48px;
    border-radius: 16px;
    letter-spacing: 0;
    text-transform: none;
  }

  /* Refine — editorial separators, glass on controls only */
  .adv-refine-groups {
    gap: 0;
    max-width: none;
    margin: 0 0 8px;
  }

  .adv-refine-group {
    gap: 8px;
    padding: 12px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(180, 200, 230, 0.1);
  }

  .adv-refine-group:last-child {
    border-bottom: 0;
  }

  .adv-refine-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
  }

  .adv-seg {
    gap: 8px;
    justify-content: center;
  }

  .adv-seg-btn {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    border-color: rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .adv-seg-btn {
      background: rgba(16, 28, 48, 0.45);
      -webkit-backdrop-filter: blur(12px) saturate(1.2);
      backdrop-filter: blur(12px) saturate(1.2);
    }
  }

  .adv-seg-btn.is-selected {
    border-color: rgba(180, 210, 245, 0.42);
    background: rgba(74, 127, 212, 0.16);
  }

  .adv-field input {
    min-height: 48px;
    border-radius: 14px;
    font-size: 15px;
  }

  .adv-loading,
  .adv-empty {
    text-align: center;
    padding: 28px 8px;
  }

  .adv-empty .adv-nav--row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .adv-question {
    font-size: 22px;
  }

  .adv-option {
    min-height: 52px;
    font-size: 14px;
    padding: 12px 14px;
  }

  .adv-card-media {
    max-height: min(28vh, 188px);
  }

  .adv-card-media img {
    transform: scale(1.1);
  }
}

@media (min-width: 861px) {
  .adv-card-hit {
    display: none !important;
  }
}


.catalog-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.catalog-empty-advisor { min-height: 44px; }
