.catalogo {
  min-height: 85vh;
  margin-top: -92px;
  padding: calc(92px + 40px) 0 80px;
}

.catalogo .container {
  position: relative;
  z-index: 1;
}

.cat-head {
  text-align: center;
  margin-bottom: 34px;
}

.cat-kicker {
  display: inline-block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cat-head h1 {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.cat-head p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.cat-filters-wrap {
  display: grid;
  gap: 22px;
  margin-bottom: 40px;
  position: relative;
  z-index: 30;
  overflow: visible;
}

.cat-filters-wrap:has(.cat-filter-dropdown.is-open),
.cat-filters-wrap.cat-filters-wrap--menu-open {
  z-index: 50;
}

.cat-search-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 0;
  min-width: 0;
}

.cat-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cat-filters-toolbar-artists {
  min-width: 0;
}

.cat-filters-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.cat-search-field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.cat-search-label {
  margin: 0;
}

.cat-search-label-icon {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cat-filter-panel {
  max-width: min(var(--content-max), 680px);
  margin: 0 auto;
  width: 100%;
  padding: 16px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 162, 0, 0.04) 100%);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: visible;
}

.cat-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.cat-search-input {
  width: 100%;
  min-height: 58px;
  padding: 14px 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 12, 0.72);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.cat-search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.cat-search-input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.cat-search-input:focus {
  outline: none;
  border-color: rgba(255, 162, 0, 0.42);
  background: rgba(12, 12, 18, 0.88);
  box-shadow:
    0 0 0 3px rgba(255, 162, 0, 0.18),
    0 12px 28px rgba(255, 162, 0, 0.12);
}

.cat-search-input.is-filter-active {
  border-color: rgba(255, 162, 0, 0.35);
  background: linear-gradient(145deg, rgba(255, 162, 0, 0.08) 0%, rgba(12, 12, 16, 0.96) 100%);
}

.cat-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cat-search-clear:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cat-search-input::-webkit-search-cancel-button,
.cat-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

@media (min-width: 960px) {
  .cat-filters-controls {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .cat-search-wrap {
    flex: 1 1 320px;
    min-width: 0;
  }

  .cat-filter-panel {
    flex: 0 1 auto;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cat-filter-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    width: auto;
    grid-template-columns: none;
  }

  .cat-filter-row > [data-catalog-category-wrap],
  .cat-filter-row > [data-catalog-theme-wrap] {
    width: min(220px, 24vw);
    min-width: 170px;
  }

  .catalogo--artist .cat-filters-toolbar-artists .artist-filter-grid {
    margin: 0;
    max-width: none;
  }
}

.catalogo:not(.catalogo--artist) .cat-filters-controls {
  max-width: min(var(--content-max), 980px);
  margin: 0 auto;
}

.cat-filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.cat-filter-row > [data-catalog-category-wrap],
.cat-filter-row > [data-catalog-theme-wrap] {
  min-width: 0;
}

.cat-mobile-filter-trigger {
  display: none;
}

.cat-mobile-filter-body {
  display: block;
}

@media (max-width: 959px) {
  .cat-filter-panel {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-width: none;
  }

  .cat-mobile-filter-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 16, 0.94);
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .cat-mobile-filter-trigger:hover,
  .cat-mobile-filter-trigger:focus-visible {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(18, 18, 22, 0.98);
    outline: none;
  }

  .cat-mobile-filter-trigger.is-filter-active {
    border-color: rgba(255, 162, 0, 0.35);
    background: linear-gradient(145deg, rgba(255, 162, 0, 0.1) 0%, rgba(12, 12, 16, 0.96) 100%);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.24),
      inset 0 0 0 1px rgba(255, 162, 0, 0.14);
  }

  .cat-mobile-filter-trigger[aria-expanded="true"] .cat-mobile-filter-trigger__chevron {
    transform: rotate(180deg);
  }

  .cat-mobile-filter-trigger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    color: #ffb347;
    background: rgba(255, 162, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 162, 0, 0.2);
  }

  .cat-mobile-filter-trigger__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
  }

  .cat-mobile-filter-trigger__label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
  }

  .cat-mobile-filter-trigger__summary {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cat-mobile-filter-trigger__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.22s ease, background 0.2s ease;
  }

  .cat-mobile-filter-body {
    margin-top: 10px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 162, 0, 0.04) 100%);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cat-mobile-filter-body[hidden] {
    display: none;
  }

  .cat-filters-wrap--mobile-filter-open {
    z-index: 50;
  }
}

@media (min-width: 960px) {
  .cat-mobile-filter-trigger {
    display: none !important;
  }

  .cat-mobile-filter-body,
  .cat-mobile-filter-body[hidden] {
    display: block !important;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.cat-filter-group--select {
  gap: 8px;
  min-width: 0;
}

.cat-filter-group--select .cat-filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.48);
}

.cat-filter-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  flex-shrink: 0;
}

.cat-filter-group--category .cat-filter-label-icon {
  color: #ffb347;
  background: rgba(255, 162, 0, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 162, 0, 0.22);
}

.cat-filter-group--theme .cat-filter-label-icon {
  color: #6ee7a8;
  background: rgba(34, 197, 94, 0.14);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.22);
}

.cat-filter-field {
  position: relative;
}

.cat-filter-dropdown {
  position: relative;
}

.cat-filter-dropdown.is-open {
  z-index: 5;
}

.cat-filter-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.cat-filter-dropdown-value {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-filter-value-text,
.cat-filter-option-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat-filter-value-text {
  flex: 1;
}

.cat-filter-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.cat-filter-option-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cat-filter-group--category .cat-filter-option-icon {
  color: #ffb347;
  background: rgba(255, 162, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 162, 0, 0.2);
}

.cat-filter-group--theme .cat-filter-option-icon {
  color: #6ee7a8;
  background: rgba(34, 197, 94, 0.12);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.cat-filter-dropdown-trigger .cat-filter-option-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.cat-filter-dropdown-trigger .cat-filter-option-icon svg {
  width: 17px;
  height: 17px;
}

.cat-filter-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.2s ease, color 0.2s ease;
}

.cat-filter-dropdown-trigger:hover .cat-filter-chevron,
.cat-filter-dropdown.is-open .cat-filter-chevron {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cat-filter-dropdown.is-open .cat-filter-chevron {
  transform: rotate(180deg);
}

.cat-filter-dropdown-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 16, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-height: min(280px, 52vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: cat-dropdown-in 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-filter-dropdown-menu[hidden] {
  display: none;
}

@keyframes cat-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cat-filter-dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.cat-filter-dropdown-option:hover,
.cat-filter-dropdown-option:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cat-filter-group--category .cat-filter-dropdown-option.is-selected {
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.24), rgba(255, 162, 0, 0.1));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 162, 0, 0.28);
}

.cat-filter-group--theme .cat-filter-dropdown-option.is-selected {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(34, 197, 94, 0.08));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.28);
}

.cat-filter-dropdown.is-open .cat-filter-dropdown-trigger {
  transform: translateY(-1px);
}

.cat-filter-group--category .cat-filter-dropdown.is-open .cat-filter-dropdown-trigger {
  border-color: var(--orange);
  box-shadow:
    0 0 0 3px rgba(255, 162, 0, 0.18),
    0 12px 28px rgba(255, 162, 0, 0.12);
}

.cat-filter-group--theme .cat-filter-dropdown.is-open .cat-filter-dropdown-trigger {
  border-color: #22c55e;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.18),
    0 12px 28px rgba(34, 197, 94, 0.1);
}

.cat-filter-select-native {
  display: none !important;
}

.cat-filter-select {
  width: 100%;
  min-width: 0;
  padding: 14px 14px 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 12, 0.72);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.cat-filter-select--category {
  border-color: rgba(255, 162, 0, 0.22);
}

.cat-filter-select--theme {
  border-color: rgba(34, 197, 94, 0.22);
}

.cat-filter-select:hover {
  background: rgba(12, 12, 18, 0.88);
}

.cat-filter-dropdown-trigger:hover {
  transform: translateY(-1px);
}

.cat-filter-select--category:hover {
  border-color: rgba(255, 162, 0, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(255, 162, 0, 0.08);
}

.cat-filter-select--theme:hover {
  border-color: rgba(34, 197, 94, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(34, 197, 94, 0.08);
}

.cat-filter-field:hover .cat-filter-chevron {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cat-filter-dropdown-trigger:focus {
  outline: none;
  transform: translateY(-1px);
}

.cat-filter-select--category:focus {
  border-color: var(--orange);
  box-shadow:
    0 0 0 3px rgba(255, 162, 0, 0.18),
    0 12px 28px rgba(255, 162, 0, 0.12);
}

.cat-filter-select--theme:focus {
  border-color: #22c55e;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.18),
    0 12px 28px rgba(34, 197, 94, 0.1);
}

.cat-filter-select.is-filter-active {
  color: #fff;
}

.cat-filter-select--category.is-filter-active {
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.16), rgba(8, 8, 12, 0.9));
}

.cat-filter-select--theme.is-filter-active {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(8, 8, 12, 0.9));
}

.cat-filter-select option {
  color: #111;
  background: #fff;
  text-transform: none;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .cat-filter-dropdown-trigger:hover,
  .cat-filter-dropdown-trigger:focus,
  .cat-filter-dropdown.is-open .cat-filter-dropdown-trigger {
    transform: none;
  }

  .cat-filter-dropdown-menu {
    animation: none;
  }
}

/* Landing: elegir sección */
.catalogo.is-landing {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 92px 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.catalogo.is-landing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 0 1 auto;
}

.catalogo.is-landing .cat-head--landing {
  margin-bottom: 28px;
  flex-shrink: 0;
}

.catalogo.is-landing .cat-head--landing .cat-kicker {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.catalogo.is-landing .cat-head--landing h1 {
  font-size: clamp(2.8rem, 7.5vw, 4.2rem);
}

.catalogo.is-landing .cat-head--landing p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.catalog-chooser {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 24px;
  max-width: min(var(--content-max), 1280px);
  margin: 0 auto;
  align-items: stretch;
}

.catalog-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  min-height: 420px;
  padding: 56px 36px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 14, 18, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.catalog-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(255, 255, 255, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.catalog-choice-shine {
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.07) 50%, transparent 62%);
  transform: translateX(-120%) rotate(8deg);
  animation: catalog-choice-shine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.catalog-choice-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.catalog-choice-orbs i {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: catalog-choice-float 9s ease-in-out infinite;
}

.catalog-choice-orbs i:nth-child(1) {
  width: 140px;
  height: 140px;
  top: -30px;
  right: -20px;
  opacity: 0.55;
}

.catalog-choice-orbs i:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: 18%;
  left: -18px;
  animation-delay: -3s;
  opacity: 0.4;
}

.catalog-choice-orbs i:nth-child(3) {
  width: 56px;
  height: 56px;
  bottom: 8%;
  right: 22%;
  animation-delay: -5.5s;
  opacity: 0.35;
}

.catalog-choice--edogo {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 162, 0, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(248, 104, 66, 0.14) 0%, transparent 55%),
    rgba(18, 14, 10, 0.88);
}

.catalog-choice--edogo .catalog-choice-orbs i {
  background: radial-gradient(circle, rgba(255, 162, 0, 0.45) 0%, transparent 70%);
}

.catalog-choice--artist {
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(168, 85, 247, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(147, 51, 234, 0.18) 0%, transparent 55%),
    rgba(14, 10, 22, 0.88);
}

.catalog-choice--artist .catalog-choice-orbs i {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
}

.catalog-choice:hover,
.catalog-choice:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.38);
}

.catalog-choice--edogo:hover,
.catalog-choice--edogo:focus-visible {
  border-color: rgba(255, 162, 0, 0.5);
  box-shadow: 0 32px 70px rgba(255, 120, 0, 0.12), 0 24px 50px rgba(0, 0, 0, 0.3);
}

.catalog-choice--artist:hover,
.catalog-choice--artist:focus-visible {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 32px 70px rgba(147, 51, 234, 0.18), 0 24px 50px rgba(0, 0, 0, 0.3);
}

.catalog-choice-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.catalog-choice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(255, 162, 0, 0.14);
  color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 162, 0, 0.2), 0 16px 40px rgba(255, 162, 0, 0.12);
  animation: catalog-choice-pulse 4s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.catalog-choice-icon svg {
  width: 52px;
  height: 52px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-choice:hover .catalog-choice-icon,
.catalog-choice:focus-visible .catalog-choice-icon {
  transform: translateY(-6px) scale(1.08) rotate(-4deg);
}

.catalog-choice:hover .catalog-choice-icon svg,
.catalog-choice:focus-visible .catalog-choice-icon svg {
  transform: scale(1.06);
}

.catalog-choice--edogo:hover .catalog-choice-icon,
.catalog-choice--edogo:focus-visible .catalog-choice-icon {
  background: rgba(255, 162, 0, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 162, 0, 0.45), 0 22px 52px rgba(255, 162, 0, 0.28);
}

.catalog-choice--artist .catalog-choice-icon {
  background: rgba(168, 85, 247, 0.14);
  color: #c084fc;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.28), 0 16px 40px rgba(147, 51, 234, 0.14);
  animation-name: catalog-choice-pulse-artist;
}

.catalog-choice--artist:hover .catalog-choice-icon,
.catalog-choice--artist:focus-visible .catalog-choice-icon {
  background: rgba(168, 85, 247, 0.26);
  color: #e9d5ff;
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.5), 0 22px 52px rgba(147, 51, 234, 0.3);
}

.catalog-choice-tags {
  display: none;
}

.catalog-choice-desc {
  display: none;
}

.catalog-choice-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.catalog-choice strong {
  font-size: clamp(2.1rem, 4.2vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.catalog-choice-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: gap 0.25s ease, color 0.25s ease;
}

.catalog-choice-cta::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.catalog-choice:hover .catalog-choice-cta::after,
.catalog-choice:focus-visible .catalog-choice-cta::after {
  transform: translateX(5px);
}

.catalog-choice--edogo:hover .catalog-choice-cta,
.catalog-choice--edogo:focus-visible .catalog-choice-cta {
  color: var(--orange);
}

.catalog-choice--artist:hover .catalog-choice-cta,
.catalog-choice--artist:focus-visible .catalog-choice-cta {
  color: #c084fc;
}

@keyframes catalog-choice-shine {
  0%, 72% { transform: translateX(-120%) rotate(8deg); }
  100% { transform: translateX(120%) rotate(8deg); }
}

@keyframes catalog-choice-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -12px) scale(1.06); }
}

@keyframes catalog-choice-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 162, 0, 0.2), 0 16px 40px rgba(255, 162, 0, 0.12); }
  50% { box-shadow: 0 0 0 1px rgba(255, 162, 0, 0.45), 0 20px 48px rgba(255, 162, 0, 0.22); }
}

@keyframes catalog-choice-pulse-artist {
  0%, 100% { box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.28), 0 16px 40px rgba(147, 51, 234, 0.12); }
  50% { box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.5), 0 20px 48px rgba(168, 85, 247, 0.26); }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-choice-shine,
  .catalog-choice-orbs i,
  .catalog-choice-icon {
    animation: none !important;
  }

  .catalog-choice:hover,
  .catalog-choice:focus-visible {
    transform: none;
  }

  .catalog-choice:hover .catalog-choice-icon,
  .catalog-choice:focus-visible .catalog-choice-icon,
  .catalog-choice:hover .catalog-choice-icon svg,
  .catalog-choice:focus-visible .catalog-choice-icon svg {
    transform: none;
  }
}

/* Barra de sección activa */
.cat-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cat-back {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cat-back:hover {
  color: var(--orange);
}

.cat-section-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 162, 0, 0.12);
  border: 1px solid rgba(255, 162, 0, 0.3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cat-filter-group {
  display: grid;
  gap: 10px;
}

.cat-filter-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: 0.2s ease;
  background: rgba(255, 255, 255, 0.03);
  font-family: inherit;
  cursor: pointer;
}

.chip:hover {
  border-color: var(--orange);
  background: rgba(255, 162, 0, 0.08);
}

.chip-active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}

.chip-theme.chip-active {
  background: #22c55e;
  border-color: #22c55e;
  color: #000;
}

.chip-theme:hover {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

/* Filtro de artistas — foto grande arriba */
.catalogo--artist:not(.is-landing) {
  overflow: visible;
  contain: style;
}

.catalogo:not(.is-landing):not(.catalogo--artist) {
  overflow: visible;
  contain: style;
}

.catalogo:not(.is-landing) .cat-filters-wrap {
  overflow: visible;
}

.catalogo--artist .cat-filters-wrap--artists,
.catalogo--artist [data-catalog-artist-filters],
.catalogo--artist .artist-filter-grid {
  overflow: visible;
}

.catalogo--artist [data-catalog-artist-filters] {
  padding-top: 10px;
}

.artist-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  max-width: min(var(--content-max), 1120px);
  margin: 0 auto;
  padding-top: 6px;
}

.artist-filter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 12px 18px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    background 0.28s ease,
    opacity 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}

.artist-filter-card:hover {
  border-color: rgba(255, 162, 0, 0.35);
  background: rgba(255, 162, 0, 0.06);
  transform: scale(1.02);
}

.artist-filter-card.is-active {
  border-color: var(--orange);
  background: rgba(255, 162, 0, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 162, 0, 0.25);
  transform: scale(1.03);
}

.catalogo--artist .cat-filters-wrap.has-artist-picked .artist-filter-card:not(.is-active) {
  opacity: 0.55;
  transform: scale(0.96);
  filter: saturate(0.7);
}

.catalogo--artist .cat-filters-wrap.has-artist-picked .artist-filter-card.is-active {
  opacity: 1;
  filter: none;
}

.catalogo--artist .artist-filter-grid {
  transition: gap 0.25s ease;
}

.catalogo--artist .catalog-grid.is-artist-filtering .producto-card.is-filter-enter {
  animation-name: catalog-card-in-artist;
}

@keyframes catalog-card-in-artist {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.artist-filter-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-filter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-filter-photo--all {
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.2), rgba(248, 104, 66, 0.15));
  font-size: 2.4rem;
  color: var(--orange);
}

.artist-filter-initial {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.artist-filter-name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

.empty {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 60px 0;
}

.catalog-empty {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.catalog-empty.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Filtrado en vivo del catálogo */
.catalog-grid {
  position: relative;
}

.catalog-grid.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (min-width: 721px) {
  .catalog-grid .producto-card .pimg {
    aspect-ratio: 1 / 1;
    width: 100%;
    flex-shrink: 0;
  }

  .catalog-grid .producto-card .pimg img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }
}

/* Zona agregar — catálogo (toda la franja es clicable) */
.catalog-grid .producto-card .pcard-action {
  border-radius: 0 0 24px 24px;
}

/* Catálogo: un poco más de zoom solo al hover */
.catalog-grid .producto-card:hover .pimg img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .catalog-grid.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Móvil: lista horizontal (miniatura + info) */
@media (max-width: 720px) {
  .catalog-grid .producto-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
  }

  .catalog-grid .producto-card,
  .catalog-grid .producto-card .pimg img {
    transition: none !important;
  }

  .catalog-grid .producto-card:hover,
  .catalog-grid .producto-card:hover .pimg img {
    transform: none !important;
  }

  .catalog-grid .producto-card .pcard-action::after {
    display: none;
  }

  .catalogo--artist .cat-filters-wrap.has-artist-picked .artist-filter-card:not(.is-active) {
    filter: none;
    opacity: 0.62;
    transform: none;
  }

  .catalogo--artist .cat-filters-wrap.has-artist-picked .artist-filter-card.is-active {
    transform: none;
  }

  .artist-filter-card:hover {
    transform: none;
  }

  .chip,
  .size-chip {
    touch-action: manipulation;
  }

  .catalog-grid.grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-grid .producto-card {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .catalog-grid .producto-card .pcard-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 1;
    min-width: 0;
  }

  .catalog-grid .producto-card:hover {
    transform: translateY(-2px);
  }

  .catalog-grid .producto-card .pimg {
    flex: 0 0 208px;
    width: 208px;
    border-radius: 20px 0 0 0;
    align-self: stretch;
  }

  .catalog-grid .producto-card .pimg img {
    width: 100%;
    height: 100%;
    min-height: 208px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .catalog-grid .producto-card .badge-edogo,
  .catalog-grid .producto-card .badge-artist {
    display: none;
  }

  .catalog-grid .producto-card .badge {
    top: 6px;
    right: 6px;
    padding: 2px 7px;
    font-size: 0.55rem;
  }

  .catalog-grid .producto-card .badge-nsfw {
    bottom: 6px;
    left: 6px;
    font-size: 0.55rem;
  }

  .catalog-grid .producto-card .pbody {
    flex: 1;
    min-width: 0;
    padding: 14px 14px 12px 12px;
    text-align: left;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow: visible;
  }

  .catalog-grid .producto-card .pbody-top {
    align-items: flex-start;
    width: 100%;
    flex: 0 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .catalog-grid .producto-card .pbody-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    min-width: 0;
  }

  .catalog-grid .producto-card .pbody-mid {
    flex: 0 0 auto;
    padding: 0;
    min-height: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 4px;
    overflow: visible;
  }

  .catalog-grid .producto-card .pbody-foot {
    display: block;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    flex: 0 0 auto;
  }

  .catalog-grid .producto-card .pcat {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: rgba(255, 162, 0, 0.88);
    line-height: 1.2;
  }

  .catalog-grid .producto-card h3 {
    font-size: clamp(1.1rem, 4.8vw, 1.38rem);
    line-height: 1.18;
    margin: 0 0 5px;
    text-transform: none;
    font-weight: 800;
    color: #f3f3f3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    flex: none;
    min-height: calc(1.18em * 2);
  }

  .catalog-grid .producto-card .pdesc {
    display: none;
  }

  .catalog-grid .producto-card .catalog-creator-label,
  .catalog-grid .producto-card .pbody-meta .p-artist {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    margin: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 0;
    max-width: 100%;
  }

  .catalog-grid .producto-card .catalog-creator-label {
    padding: 3px 8px;
    border-radius: 999px;
    background: #111;
    color: var(--orange);
    border: 1px solid rgba(255, 162, 0, 0.35);
  }

  .catalog-grid .producto-card .pbody-meta .p-artist {
    color: rgba(255, 255, 255, 0.72);
    justify-content: flex-start;
  }

  .catalog-grid .producto-card .pbody-meta .p-artist span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  .catalog-grid .producto-card .p-artist-avatar,
  .catalog-grid .producto-card .p-artist-avatar--initial {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }

  .catalog-grid .producto-card .p-sizes--single {
    margin-top: 0;
  }

  .catalog-grid .producto-card .p-sizes--single .size-chip--solo {
    min-width: auto;
    flex-direction: row;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 999px;
    pointer-events: none;
  }

  .catalog-grid .producto-card .p-sizes--single .size-chip--solo.size-chip--artist-area {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 56px;
    padding: 5px 8px;
    border-radius: 8px;
  }

  .catalog-grid .producto-card .p-sizes--single .size-chip--solo.size-chip--artist-area .size-chip-tier {
    margin-bottom: 0;
  }

  .catalog-grid .producto-card .p-sizes-wrap {
    gap: 5px;
    align-items: center;
    width: 100%;
  }

  .catalog-grid .producto-card .p-sizes-heading {
    font-size: 0.54rem;
    text-align: center;
    width: 100%;
  }

  .catalog-grid .producto-card .p-sizes-track {
    width: 100%;
    padding: 2px 0 4px;
  }

  .catalog-grid .producto-card .p-sizes-track.has-size-arrows {
    position: relative;
    overflow: hidden;
  }

  .catalog-grid .producto-card .p-sizes-arrow {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 4;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--orange);
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 2px;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .catalog-grid .producto-card .p-sizes-arrow--prev {
    left: 2px;
  }

  .catalog-grid .producto-card .p-sizes-arrow--next {
    right: 2px;
  }

  .catalog-grid .producto-card .p-sizes-track.has-size-arrows .p-sizes-arrow {
    display: inline-flex;
  }

  .catalog-grid .producto-card .p-sizes-arrow:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
  }

  .catalog-grid .producto-card .p-sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 6px;
    padding: 2px 0 4px;
  }

  .catalog-grid .producto-card .p-sizes.is-carousel {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 2px 10px 4px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-grid .producto-card .p-sizes.is-carousel::-webkit-scrollbar {
    display: none;
  }

  .catalog-grid .producto-card .p-sizes.is-carousel .size-chip {
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .catalog-grid .producto-card .size-chip {
    min-width: 56px;
    flex-shrink: 0;
    padding: 5px 8px;
    border-radius: 8px;
  }

  .catalog-grid .producto-card .size-chip.is-active {
    border-width: 2px;
    background: rgba(255, 162, 0, 0.24);
    box-shadow: 0 0 0 2px rgba(255, 162, 0, 0.3);
  }

  .catalog-grid .producto-card .size-chip--artist-area.is-active .size-chip-tier {
    color: #ffe2b0;
  }

  .catalog-grid .producto-card .size-chip-label {
    font-size: 0.5rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .catalog-grid .producto-card .size-chip-tier {
    font-size: 0.68rem;
    margin-bottom: 3px;
    line-height: 1.1;
  }

  .catalog-grid .producto-card .size-chip--artist-area {
    min-width: 58px;
    padding: 5px 7px;
  }

  .catalog-grid .producto-card .size-chip--artist-area .size-chip-label {
    font-size: 0.5rem;
  }

  .catalog-grid .producto-card .size-chip-dim {
    font-size: 0.5rem;
  }

  .catalog-grid .producto-card .p-price-row {
    margin: 0;
    text-align: left;
    line-height: 1;
    padding-top: 2px;
  }

  .catalog-grid .producto-card .price {
    font-size: clamp(1.24rem, 5.8vw, 1.55rem);
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .catalog-grid .producto-card .old {
    font-size: clamp(0.74rem, 3.2vw, 0.88rem);
    margin-right: 5px;
    opacity: 0.65;
  }

  .catalog-grid .producto-card .pcard-action {
    padding: 15px 16px;
    border-radius: 0 0 20px 20px;
    font-size: 0.76rem;
    border-top: 1px solid rgba(255, 190, 90, 0.35);
    background: linear-gradient(90deg, rgba(255, 194, 71, 0.98) 0%, rgba(255, 159, 26, 0.98) 50%, rgba(255, 122, 0, 0.98) 100%);
  }
}

.catalog-pagination,
.catalog-page-summary {
  margin-top: 28px;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.catalog-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.catalog-page-btn:hover {
  border-color: rgba(255, 162, 0, 0.45);
  background: rgba(255, 162, 0, 0.1);
  transform: translateY(-1px);
}

.catalog-page-btn.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.catalog-page-info,
.catalog-page-summary {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.catalog-results{
  position:relative;
  z-index: 1;
  min-height: 200px;
}
.catalog-results.is-loading{
  pointer-events:none;
}
.catalog-results.is-loading .catalog-grid{
  opacity:.72;
}
.catalog-grid.is-loading{
  min-height:140px;
}

.catalog-grid .producto-card {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  min-width: 0;
}

.catalog-grid.is-filtering .producto-card {
  will-change: opacity, transform;
}

.catalog-grid .producto-card.is-filter-leave {
  opacity: 0;
  transform: scale(0.98) translateY(8px);
  pointer-events: none;
}

.catalog-grid .producto-card.is-filter-hidden {
  display: none;
}

.catalog-grid .producto-card.is-filter-enter {
  animation: catalog-card-in 0.28s ease both;
  animation-delay: var(--filter-delay, 0ms);
}

@keyframes catalog-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-grid.is-filtering {
  pointer-events: none;
}

.chip.is-popping,
.artist-filter-card.is-popping {
  animation: filter-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes filter-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-grid .producto-card,
  .catalog-empty {
    transition: none !important;
    animation: none !important;
  }

  .catalog-grid .producto-card.is-filter-leave,
  .catalog-grid .producto-card.is-filter-enter {
    opacity: 1;
    transform: none;
  }

  .catalog-grid.is-filtering .producto-card {
    will-change: auto;
  }
}

@media (min-width: 721px) {
  .catalogo--edogo .catalog-grid .producto-card .badge-edogo {
    display: none;
  }
}

/* Product card extras */
.producto-card .badge-edogo {
  left: 12px;
  right: auto;
  background: #111;
  color: var(--orange);
  border: 1px solid rgba(255, 162, 0, 0.35);
}

.producto-card .badge-artist {
  left: 12px;
  right: auto;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-artist {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.p-artist-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.p-artist-avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 162, 0, 0.18);
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.catalog-creator-label {
  display: none;
}

@media (min-width: 721px) {
  .catalog-grid .producto-card .badge-artist {
    display: none;
  }

  .catalog-grid .producto-card .pbody-meta .p-artist {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 100%;
  }

  .catalog-grid .producto-card .pbody-meta .p-artist span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-grid .producto-card .p-artist-avatar,
  .catalog-grid .producto-card .p-artist-avatar--initial {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

.catalog-grid .producto-card .pbody-top {
  gap: 6px;
}

.catalog-grid .producto-card h3 {
  margin-bottom: 5px;
}

.p-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.p-sizes-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.p-sizes-track {
  width: 100%;
}

.p-sizes-arrow {
  display: none;
}

@media (max-width: 720px) {
  .producto-card.has-sizes .p-sizes-track.has-size-arrows {
    position: relative;
    overflow: hidden;
  }

  .producto-card.has-sizes .p-sizes-track.has-size-arrows .p-sizes-arrow {
    display: inline-flex;
    position: absolute;
    top: 50%;
    z-index: 4;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--orange);
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 2px;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .producto-card.has-sizes .p-sizes-arrow--prev {
    left: 2px;
  }

  .producto-card.has-sizes .p-sizes-arrow--next {
    right: 2px;
  }

  .producto-card.has-sizes .p-sizes-arrow:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
  }

  .producto-card.has-sizes .p-sizes.is-carousel {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 2px 10px 4px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
  }

  .producto-card.has-sizes .p-sizes.is-carousel::-webkit-scrollbar {
    display: none;
  }

  .producto-card.has-sizes .p-sizes.is-carousel .size-chip {
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

@media (min-width: 721px) {
  .p-sizes-track {
    display: contents;
  }
}

.p-sizes-heading {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
  width: 100%;
  text-align: center;
}

.p-sizes-wrap--artist .p-sizes-heading {
  color: rgba(255, 162, 0, 0.72);
}

.producto-card.has-sizes .p-sizes {
  margin-top: 0;
}

.size-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}

.size-chip:hover {
  border-color: rgba(255, 162, 0, 0.45);
}

.size-chip.is-active {
  border-color: var(--orange);
  border-width: 2px;
  background: rgba(255, 162, 0, 0.22);
  box-shadow: 0 0 0 2px rgba(255, 162, 0, 0.28);
}

.size-chip--artist-area.is-active .size-chip-tier {
  color: #ffe2b0;
}

.p-sizes--single .size-chip--solo {
  cursor: default;
  pointer-events: none;
}

.p-sizes--single .size-chip--solo:hover {
  border-color: var(--orange);
}

.size-chip-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.size-chip-tier {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 4px;
}

.size-chip--artist-area {
  min-width: 72px;
  padding: 9px 11px;
}

.size-chip--artist-area .size-chip-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

.size-chip-dim {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.p-price-row {
  margin: 0 0 10px;
}

@media (max-width: 720px) {
  .catalogo.is-landing {
    padding: calc(92px + 8px) 0 24px;
    align-items: center;
  }

  .catalogo.is-landing .container {
    justify-content: center;
  }

  .catalogo.is-landing .cat-head--landing {
    margin-bottom: 18px;
  }

  .catalogo.is-landing .cat-head--landing .cat-kicker {
    font-size: 0.82rem;
  }

  .catalogo.is-landing .cat-head--landing h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  .catalogo.is-landing .cat-head--landing p {
    margin-top: 8px;
    font-size: 1rem;
  }

  .catalog-chooser {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 16px;
  }

  .store-crosslink-wrap {
    margin-top: 24px;
  }

  .store-crosslink {
    width: 100%;
    max-width: 480px;
    min-width: 0;
    padding: 20px 28px;
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .catalog-choice {
    min-height: 300px;
    padding: 44px 28px;
    gap: 22px;
    border-radius: 28px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .catalog-choice-shine,
  .catalog-choice-orbs i,
  .catalog-choice-icon {
    animation: none !important;
  }

  .catalog-choice-visual {
    gap: 0;
  }

  .catalog-choice-icon {
    width: 104px;
    height: 104px;
    border-radius: 26px;
  }

  .catalog-choice-icon svg {
    width: 46px;
    height: 46px;
  }

  .catalog-choice strong {
    font-size: 1.85rem;
  }

  .catalog-choice-cta {
    font-size: 0.78rem;
  }

  .artist-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogo:not(.is-landing) {
    padding-bottom: 56px;
  }

  .catalogo:not(.is-landing) .cat-head {
    margin-bottom: 22px;
  }

  .cat-filter-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .cat-mobile-filter-body:not([hidden]) {
    padding: 14px;
    border-radius: 18px;
  }

  .cat-filter-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cat-filter-dropdown-trigger {
    font-size: 0.86rem;
    padding: 13px 14px;
  }

  .cat-filter-dropdown-trigger:hover,
  .cat-filter-dropdown-trigger:focus,
  .cat-filter-dropdown.is-open .cat-filter-dropdown-trigger {
    transform: none;
  }
}

@media (max-width: 560px) {
  .artist-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .artist-filter-card {
    padding: 12px 10px 14px;
  }

  .artist-filter-name {
    font-size: 0.75rem;
  }

  .catalog-grid.grid-4 {
    gap: 18px;
  }

  .catalog-grid .producto-card .pimg {
    flex-basis: 196px;
    width: 196px;
  }

  .catalog-grid .producto-card .pimg img {
    min-height: 196px;
  }

  .catalog-grid .producto-card .pbody {
    padding: 12px 12px 10px 10px;
    gap: 8px;
  }
}
