.category-sectionn {
    padding: 25px 15px;
    max-width: 1100px;
    margin: 0 auto;
}
.category-sectionn .titles {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    background: #2f5fa7;
    color: #fff;
    padding: 10px;
    font-size: 15px;
    text-transform: uppercase;
    user-select: none;
}
.category-gridd {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-height: none;
    overflow: visible;
    transition: max-height 0.3s ease;
}
.category-gridd.collapsedd {
    max-height: 70px;
    overflow: hidden;
}
.category-cardd {
    background: #f5f7fa;
    padding: 14px 10px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #e2e6ea;
    text-decoration: none;
    color: #000;
    user-select: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.category-cardd:hover {
    background: #e9edf2;
    transform: translateY(-2px);
}
.more-btnn {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #2f5fa7;
    cursor: pointer;
    user-select: none;
}
.more-btnn:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .category-gridd.collapsedd {
        max-height: 130px;
    }
}