/* Egyszerű Category Display CSS */

/* Fő konténer */
.category-display-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Kategória elem */
.category-item {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px;
    height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 127, 0.2);
    border-color: #dc2626;
}

/* Kategória link */
.category-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* Kép wrapper */
.category-image-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    background: #fee2e2;
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fecaca;
}

/* Kategória kép */
.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.1);
}

/* Kategória információk */
.category-info {
    padding: 0 12px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex-grow: 1;
}

/* Kategória név */
.category-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.category-link:hover .category-name {
    color: #dc2626;
}

/* Bejegyzések száma */
.category-count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.category-item:hover .category-count {
    background: #dc2626;
    color: white;
}

/* Méret változatok */
.category-display-container.large .category-item {
    height: 80px;
    padding: 10px;
}

.category-display-container.large .category-image-wrapper {
    width: 60px;
    height: 60px;
}

.category-display-container.large .category-name {
    font-size: 18px;
}

.category-display-container.small .category-item {
    height: 60px;
    padding: 6px;
}

.category-display-container.small .category-image-wrapper {
    width: 48px;
    height: 48px;
}

.category-display-container.small .category-name {
    font-size: 14px;
}

.category-display-container.small .category-count {
    font-size: 11px;
}

/* Piros színes változat */
.category-item.colored {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-color: #dc2626;
    color: white;
}

.category-item.colored .category-image-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-item.colored .category-name {
    color: white;
}

.category-item.colored .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-item.colored:hover .category-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Outline stílus */
.category-item.outline {
    background: transparent;
    border: 2px solid #dc2626;
}

.category-item.outline .category-image-wrapper {
    background: #fee2e2;
    border-color: #dc2626;
}

.category-item.outline .category-name {
    color: #dc2626;
}

.category-item.outline .category-count {
    background: #fee2e2;
    color: #dc2626;
}

.category-item.outline:hover {
    background: #dc2626;
}

.category-item.outline:hover .category-name,
.category-item.outline:hover .category-count {
    color: white;
}

.category-item.outline:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Tablet nézet */
@media (max-width: 1024px) {
    .category-display-container {
        gap: 12px;
        padding: 18px;
    }
    
    .category-item {
        height: 65px;
    }
    
    .category-image-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .category-name {
        font-size: 15px;
    }
}

/* Mobil nézet */
@media (max-width: 768px) {
    .category-display-container {
        gap: 10px;
        padding: 15px;
        margin: 20px 0;
    }
    
    .category-item {
        height: 60px;
        padding: 6px;
    }
    
    .category-image-wrapper {
        width: 48px;
        height: 48px;
        margin-right: 10px;
    }
    
    .category-info {
        padding: 0 10px 0 0;
    }
    
    .category-name {
        font-size: 14px;
    }
    
    .category-count {
        font-size: 11px;
    }
}

/* Kis mobil nézet */
@media (max-width: 480px) {
    .category-display-container {
        gap: 8px;
        padding: 12px;
    }
    
    .category-item {
        height: 55px;
        padding: 5px;
    }
    
    .category-image-wrapper {
        width: 45px;
        height: 45px;
        margin-right: 8px;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .category-count {
        font-size: 10px;
        padding: 1px 6px;
    }
}

/* Extra kis mobil */
@media (max-width: 360px) {
    .category-item {
        height: 50px;
    }
    
    .category-image-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .category-count {
        display: none;
    }
}