/* Category Display - CSS */

/* Alapértelmezett betűtípus */
* {
    font-family: 'Poppins', sans-serif;
}

/* Fő konténer */
.category-display-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
    padding: 0;
}

/* Kategória elem - címke stílus */
.category-item {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
        padding: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 70px;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

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

/* Kép wrapper - bal oldali kör */
.category-image-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
    margin: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Kategória információk - jobb oldali szöveg */
.category-info {
    padding: 0 18px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    min-width: 0;
}

/* Kategória név */
.category-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Bejegyzések száma */
.category-count {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
    opacity: 0.8;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== ALTERNATÍV MÉRETEK ===== */

/* Nagy címke */
.category-display-container.large .category-item {
    height: 60px;
    border-radius: 30px;
}

.category-display-container.large .category-image-wrapper {
    width: 56px;
    height: 56px;
    margin: 2px;
}

.category-display-container.large .category-info {
    padding: 0 20px 0 15px;
}

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

.category-display-container.large .category-count {
    font-size: 12px;
}

/* Kis címke */
.category-display-container.small .category-item {
    height: 40px;
    border-radius: 20px;
}

.category-display-container.small .category-image-wrapper {
    width: 36px;
    height: 36px;
    margin: 2px;
}

.category-display-container.small .category-info {
    padding: 0 15px 0 10px;
}

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

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

/* ===== SZÍNES VÁLTOZATOK ===== */

/* Színes címkék */
.category-item.colored {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

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

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

.category-item.colored:hover .category-name {
    color: #f1c40f;
}

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

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

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

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

/* ===== RESZPONZÍV DESIGN ===== */

/* Desktop */
@media (max-width: 1200px) {
    .category-display-container {
        gap: 12px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .category-display-container {
        gap: 10px;
        margin: 30px 0;
    }
    
    .category-item {
        height: 48px;
    }
    
    .category-image-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .category-info {
        padding: 0 16px 0 10px;
    }
    
    .category-name {
        font-size: 13px;
    }
}

/* Mobil nagy */
@media (max-width: 768px) {
    .category-display-container {
        gap: 8px;
        margin: 25px 0;
    }
    
    .category-item {
        height: 45px;
    }
    
    .category-image-wrapper {
        width: 41px;
        height: 41px;
    }
    
    .category-info {
        padding: 0 14px 0 8px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .category-count {
        font-size: 10px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .category-display-container {
        gap: 6px;
        margin: 20px 0;
    }
    
    .category-item {
        height: 42px;
        border-radius: 21px;
    }
    
    .category-image-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .category-info {
        padding: 0 12px 0 8px;
        gap: 6px;
    }
    
    .category-name {
        font-size: 11px;
    }
    
    .category-count {
        font-size: 9px;
    }
}

/* Extra kis mobil */
@media (max-width: 360px) {
    .category-display-container {
        gap: 5px;
    }
    
    .category-item {
        height: 38px;
        border-radius: 19px;
    }
    
    .category-image-wrapper {
        width: 34px;
        height: 34px;
    }
    
    .category-info {
        padding: 0 10px 0 6px;
    }
    
    .category-name {
        font-size: 10px;
    }
    
    /* Bejegyzésszám elrejtése nagyon kis képernyőn */
    .category-count {
        display: none;
    }
}

/* ===== SPECIÁLIS STÍLUSOK ===== */

/* Hover effektusok kikapcsolása érintős eszközökön */
@media (hover: none) {
    .category-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .category-item:hover .category-image {
        transform: none;
    }
}

/* Sötét mód támogatás */
@media (prefers-color-scheme: dark) {
    .category-item {
        background: #2c3e50;
        border-color: #34495e;
    }
    
    .category-item:hover {
        border-color: #5dade2;
    }
    
    .category-name {
        color: #ecf0f1;
    }
    
    .category-link:hover .category-name {
        color: #5dade2;
    }
    
    .category-count {
        color: #bdc3c7;
    }
    
    .category-image-wrapper {
        background: #34495e;
    }
}

/* Mozgás csökkentése preferencia */
@media (prefers-reduced-motion: reduce) {
    .category-item,
    .category-image,
    .category-name {
        transition: none;
    }
    
    .category-item:hover {
        transform: none;
    }
    
    .category-item:hover .category-image {
        transform: none;
    }
}

/* Magas kontraszt mód */
@media (prefers-contrast: high) {
    .category-item {
        border: 3px solid #000;
        background: #fff;
    }
    
    .category-name {
        color: #000;
        font-weight: 700;
    }
    
    .category-link:hover .category-name {
        color: #0066cc;
    }
    
    .category-count {
        color: #333;
    }
}

/* Printelhető nézet */
@media print {
    .category-display-container {
        display: block;
        margin: 0;
    }
    
    .category-item {
        display: inline-flex;
        margin: 5px;
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .category-name {
        color: #000 !important;
    }
    
    .category-count {
        color: #666 !important;
    }
}

/* Focus állapot akadálymentességhez */
.category-link:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
    border-radius: 25px;
}

.category-link:focus .category-item {
    border-color: #3498db;
}

/* ===== ALTERNATÍV LAYOUTOK ===== */

/* Kompakt layout (kisebb kategória elemek) */
.category-display-container.compact {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-display-container.compact .category-image-wrapper {
    height: 140px;
}

.category-display-container.compact .category-info {
    padding: 15px;
}

.category-display-container.compact .category-name {
    font-size: 16px;
}

/* Nagy layout */
.category-display-container.large {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

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

.category-display-container.large .category-info {
    padding: 25px;
}

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

/* Lista layout (horizontal) */
.category-display-container.list {
    grid-template-columns: 1fr;
    gap: 15px;
}

.category-display-container.list .category-item {
    display: flex;
    border-radius: 8px;
}

.category-display-container.list .category-image-wrapper {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
}

.category-display-container.list .category-info {
    padding: 15px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.category-display-container.list .category-name {
    font-size: 16px;
    margin-bottom: 5px;
}

/* ===== RESZPONZÍV DESIGN ===== */

/* Large desktop */
@media (min-width: 1400px) {
    .category-display-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .category-display-container {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 22px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .category-display-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .category-image-wrapper {
        height: 160px;
    }
    
    .category-info {
        padding: 18px;
    }
    
    .category-name {
        font-size: 17px;
    }
}

/* Mobil nagy */
@media (max-width: 768px) {
    .category-display-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
        margin: 25px 0;
    }
    
    .category-image-wrapper {
        height: 140px;
    }
    
    .category-info {
        padding: 15px;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    .category-count {
        font-size: 12px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .category-display-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .category-image-wrapper {
        height: 120px;
    }
    
    .category-info {
        padding: 12px;
    }
    
    .category-name {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .category-count {
        font-size: 11px;
    }
}

/* Extra kis mobil */
@media (max-width: 360px) {
    .category-display-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-image-wrapper {
        height: 140px;
    }
}

/* ===== SPECIÁLIS STÍLUSOK ===== */

/* Hover effektusok kikapcsolása érintős eszközökön */
@media (hover: none) {
    .category-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .category-item:hover .category-image {
        transform: none;
    }
}

/* Sötét mód támogatás */
@media (prefers-color-scheme: dark) {
    .category-item {
        background: #2c3e50;
        border-color: #34495e;
    }
    
    .category-info {
        background: #2c3e50;
    }
    
    .category-name {
        color: #ecf0f1;
    }
    
    .category-link:hover .category-name {
        color: #5dade2;
    }
    
    .category-count {
        color: #bdc3c7;
    }
    
    .category-image-wrapper {
        background: #34495e;
    }
}

/* Mozgás csökkentése preferencia */
@media (prefers-reduced-motion: reduce) {
    .category-item,
    .category-image,
    .category-name {
        transition: none;
    }
    
    .category-item:hover {
        transform: none;
    }
    
    .category-item:hover .category-image {
        transform: none;
    }
}

/* Magas kontraszt mód */
@media (prefers-contrast: high) {
    .category-item {
        border: 2px solid #000;
    }
    
    .category-name {
        color: #000;
        font-weight: 700;
    }
    
    .category-link:hover .category-name {
        color: #0066cc;
    }
}

/* Printelhető nézet */
@media print {
    .category-display-container {
        display: block;
        margin: 0;
    }
    
    .category-item {
        break-inside: avoid;
        margin-bottom: 15px;
        box-shadow: none;
        border: 1px solid #ddd;
        display: flex;
        max-height: 100px;
    }
    
    .category-image-wrapper {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .category-info {
        padding: 10px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .category-name {
        font-size: 14px;
        color: #000 !important;
    }
    
    .category-count {
        color: #666 !important;
    }
}

/* Focus állapot akadálymentességhez */
.category-link:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.category-link:focus .category-item {
    border-color: #3498db;
}