/* ============================================
   СТИЛИ ГЛАВНОЙ СТРАНИЦЫ
   ============================================ */

/* ----- Секция категорий ----- */
.categories-section {
    padding: 40px 0;
}
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

/* Сетка категорий */
.categories-grid {
    width: 100%;
}
.categories-grid:after {
    content: "";
    display: table;
    clear: both;
}

/* Карточка категории */
.category-card {
    width: 33.333%;
    float: left;
    padding: 15px;
    margin-bottom: 20px;
}
.category-link {
    display: block;
    text-decoration: none;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.category-link:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}
.category-image {
    width: 100%;
    overflow: hidden;
}
.category-image .image-placeholder {
    width: 100%;
    height: 200px;
}
.category-name {
    padding: 15px;
    margin: 0;
    font-size: 18px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

/* Подкатегории в карточке */
.category-subs {
    list-style: none;
    padding: 10px 15px;
    margin: 0;
}
.category-subs li {
    margin-bottom: 5px;
}
.category-subs a {
    font-size: 14px;
    color: #666666;
}
.category-subs a:hover {
    color: #2a7d2a;
}