.elementor-67 .elementor-element.elementor-element-2fc0ccc{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-6ee2a69 *//* Grille principale */
.moctalia-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur desktop */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte de catégorie - Effet 3D moderne */
.moctalia-category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.moctalia-category-card:hover {
    transform: translateY(-5px) scale(1.02); /* Effet 3D au survol */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image de la catégorie */
.moctalia-category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}

/* Placeholder si pas d'image */
.moctalia-category-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Texte */
.moctalia-category-title {
    margin: 15px 0 5px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.moctalia-category-description {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Responsive Mobile */
@media (max-width: 767px) {
    .moctalia-categories-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur mobile */
    }
    
    .moctalia-category-image, .moctalia-category-placeholder {
        height: 120px;
    }
}/* End custom CSS */