/* ============================================
   Component: Catalog "Not Found" CTA
   ============================================ */
.catalog-not-found {
  position: relative;
  background-color: var(--color-bg-light);
  padding: var(--spacing-section) 0;
  overflow: hidden;
}

.catalog-not-found__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  max-width: none;
}

.catalog-not-found__decor--left {
  left: -134px;
  top: 0;
  width: 947px;
  height: 100%;
  transform: rotate(180deg) scaleY(-1);
}

.catalog-not-found__decor--right {
  right: -572px;
  top: 0;
  width: 974px;
  height: 100%;
}

.catalog-not-found__decor--right2 {
  right: -572px;
  top: 0;
  width: 977px;
  height: 100%;
  transform: rotate(180deg) scaleY(-1);
}

.catalog-not-found__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2xl);
  max-width: 1023px;
  margin: 0 auto;
  text-align: center;
}

.catalog-not-found__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-text-heading);
  line-height: 40px;
}

.catalog-not-found__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-body);
  line-height: var(--line-height-relaxed);
  max-width: 522px;
}
