.catalog-section {
    padding: 150px 0 80px 0;
    background: #f5f5f5;
}

.catalog-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.catalog-title {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 0 60px 0;
    color: #060607;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalog-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.catalog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.catalog-item:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.catalog-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.catalog-item-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.catalog-item-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.catalog-item-title {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    margin: 0;
}

@media (max-width: 992px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 80px 0 60px 0;
    }
    
    .catalog-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-item {
        height: 200px;
    }
    
    .catalog-item-title {
        font-size: 20px;
    }
}
