.filters-title {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  background-color: #f4f1ec;
  padding: 0.5rem 2rem;
  width: 100%;
  position: relative;

  &:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0, -50%);
    width: 32px;
    height: 50px;
    background: linear-gradient(
      90deg,
      rgba(255, 175, 64, 0.3) 0%,
      rgba(255, 255, 255, 0.3) 100%
    );
    z-index: 1;
  }
}
.catalog-filters {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--bg);
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 0;
  box-shadow: 3px 0px 8px rgba(96, 74, 47, 0.12);
}

.main-page {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.separate-idea {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 2rem;
}
.separate-idea-content {
  display: flex;
  gap: 1.5rem;
}
.separate-idea-img {
  width: 100%;
}
.catalog-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
  position: sticky;
  bottom: 0px;
}
.small-line {
  width: 14px;
  height: 2px;
  background: rgba(135, 122, 106, 0.55);
}
.aside-section {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 0.5rem;
  transition: 0.3s;
}
.catalog-call {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  gap: 1rem;
  height: 430px;
  min-height: 430px;
  background: url(../img/catalog/call-img.png),
    linear-gradient(
      163.93deg,
      rgba(74, 66, 55, 0) 49.91%,
      rgba(201, 158, 82, 0.41) 71.28%
    ),
    #4a4237;
  background-repeat: no-repeat;
  background-position: right bottom 40px, 0 0;
  color: #ffefdd;
}
.main-text {
  font-size: 22px;
  line-height: 40px;
  color: #3c3b36;
  padding: 2rem 0rem;
}
.fat-text {
  font-weight: 700;
  font-size: 26px;
  color: #3c3b36;
  padding-bottom: 1rem;
}
.separate-idea-list {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  font-size: 22px;
  & li {
    gap: 1rem;
    display: flex;
    & span {
      font-weight: 700;
      color: #ca9232;
    }
  }
}
.main-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media all and (max-width: 1130px) {
  .catalog-aside {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .main-images {
    grid-template-columns: repeat(1, 1fr);
  }
}
.small-text:hover {
  color: #9b6d36;
  transition: 0.3s;
}
