.explore-categories-grid-d71be1cc {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.ec-card {
    background-color: #ffffff;
    border: 2px solid transparent;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.ec-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ec-card-img {
    width: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
}

.ec-card:hover .ec-card-img {
    opacity: 0.85;
}

.ec-card-content {
    padding: 25px 20px;
    background: inherit;
}

.ec-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.ec-card-count {
    font-size: 14px;
    margin-top: 8px;
    display: block;
    opacity: 0.8;
}

.explore-categories-header {
    text-align: center;
    margin-bottom: 40px;
}

.explore-categories-header h2 {
    margin: 0;
    font-weight: 700;
}
