/* Simple Category Desktop Styles */
.simple-category-desktop-container {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.simple-category-desktop-wrapper {
    display: flex;
    justify-content: center; /* Center items on desktop */
    align-items: center;
    gap: 40px; /* More space on desktop */
    flex-wrap: wrap; /* Allow wrapping if needed */
    max-width: 1200px;
    margin: 0 auto;
}

.simple-cat-desktop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.simple-cat-desktop-item:hover {
    transform: translateY(-5px); /* Lift effect */
}

/* 
.simple-cat-desktop-icon styles removed
*/

.simple-cat-desktop-title {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    text-align: center;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-radius: 50px; /* Pill shape */
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.simple-cat-desktop-item:hover .simple-cat-desktop-title {
    color: #fff;
    background-color: var(--theme-palette-color-1, #000);
    border-color: var(--theme-palette-color-1, #000);
}
