.woo-categories-grid-76c87a58 {
    display: grid;
    /* Grid template columns are now handled by Elementor responsive controls in widget */
    gap: 20px;
}

.woo-cat-item-76c87a58 {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woo-cat-item-76c87a58:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.woo-cat-img-wrapper-76c87a58 {
    width: 100%;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.woo-cat-img-76c87a58 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.woo-cat-item-76c87a58:hover .woo-cat-img-76c87a58 {
    transform: scale(1.05);
}

.woo-cat-content-76c87a58 {
    padding: 20px;
    text-align: center;
}

.woo-cat-title-76c87a58 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.woo-cat-count-76c87a58 {
    font-size: 14px;
    color: #777;
}

/* Fallback for environments where Elementor CSS might not load properly - but controls should handle this */
@media (max-width: 1024px) {
    .woo-categories-grid-76c87a58 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .woo-categories-grid-76c87a58 {
        grid-template-columns: repeat(2, 1fr);
    }
}