/* Simple Category Scroll */
.simple-category-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin-bottom: 5px; /* Spacing before ads */
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.simple-category-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 0 15px;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.simple-category-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.simple-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* Fixed width for consistent bubbles */
    text-decoration: none;
    color: #333;
    text-align: center;
}

.simple-cat-item:hover {
    transform: translateY(-2px);
    background-color: #f5f5f5; /* Light feedback on touch/hover */
    border-radius: 8px; 
}

/* 
.simple-cat-icon styles removed as per user request to remove icons
*/

.simple-cat-title {
    font-size: 13px; /* Slightly larger text to compensate */
    line-height: 1.3;
    font-weight: 500;
    color: #444;
    max-width: 90px;
    padding: 5px;
    display: block; /* Ensure it takes space */
}
