/*
 Theme Name:   Neytri Child
 Theme URI:    https://neytri.wpengine.com/
 Description:  Neytri Child Theme
 Author:       the WeDesignTech team
 Author URI:   https://wedesignthemes.com/
 Template:     neytri
 Version:      1.0.0
 Text Domain:  neytri-child
*/
.subcategories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.subcat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 90px;
    transition: transform 0.2s;
}

.subcat-item:hover {
    transform: translateY(-3px);
}

.subcat-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 8px;
    border: 2px solid #e0e0e0;
}

.subcat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subcat-name {
    font-size: 13px;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

.subcat-item:hover .subcat-name {
    color: #0073aa;
}

/* Responsive */
@media (max-width: 768px) {
    .subcategories-grid {
        gap: 12px;
    }
    .subcat-item {
        width: 70px;
    }
    .subcat-thumb {
        width: 60px;
        height: 60px;
    }
    .subcat-name {
        font-size: 11px;
    }
}