/*
 Theme Name: SeoUsluga child
 Author:	seousluga.ru 
 Template:     template
 Version:      1.0.0
*/

/* Разделитель между категориями и товарами */
.wd-custom-section-break {
    width: 100%;
    grid-column: 1 / -1; /* Растягиваем на всю ширину сетки */
    margin-top: 50px;    /* Отступ сверху */
    margin-bottom: 30px; /* Отступ снизу */
    display: block;
    clear: both;
    text-align: left;
    
    /* Анимация появления, чтобы не мелькало */
    opacity: 0;
    animation: fadeInSeparator 0.4s forwards;
}

@keyframes fadeInSeparator {
    to { opacity: 1; }
}

.wd-custom-section-break h2.wd-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 0 0 15px 0;
    border-bottom: 2px solid #e1e1e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Отступ для последней категории */
.products .wd-col.category-grid-item:last-child {
    margin-bottom: 20px;
}






