.catalog-categories {
    padding: 40px 16px;
    background-color: var(--background-color, #fff);
    margin-bottom: 50px;
}
  
.catalog-categories__title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--text-color, #333);
}
  
.catalog-categories__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.catalog-categories__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--primary-color, #6a5acd);
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
  
.catalog-categories__item:hover {
    background: var(--primary-color, #6a5acd);
    border-color: var(--primary-color, #6a5acd);
    transform: translateY(-1px) scale(1.01);
}

.catalog-categories__name {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color, #6a5acd);
    transition: color 0.3s ease;
}

.catalog-categories__item:hover .catalog-categories__name {
    color: #fff;
}

@media (max-width: 480px) {
    .catalog-categories__item {
      width: 100%;
      height: 50px;
    }
    .catalog-categories__title {
      font-size: 28px;
    }
    .catalog-categories__name {
      font-size: 0.9rem;
    }
}