/* =========================================
   CATEGORY LIST GRID
   ========================================= */

.category-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Mobile */
    gap: 1.5rem; /* Etwas mehr Abstand */
    padding-bottom: 2rem;
    margin-top: 1rem;
}

.cat-card-large {
    background: var(--clr-darkgrey);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cat-card-large:active {
    transform: scale(0.96);
}

.cat-card-image {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.cat-card-large h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--clr-red);
}

.cat-card-large p {
    font-size: 0.8rem;
    color: var(--clr-grey);
    margin-top: 0.2rem;
}

/* Dark Mode Support */
body.dark-mode .cat-card-large {
    background: #2a2a2a;
    border: 1px solid #333;
}

body.dark-mode .cat-card-large h3 {
    color: var(--clr-dark);
}