/* Kategori Meny Shortcode Styles */

.km-category-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Kategori-boks */
.km-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: #f2f2f2;
    border: none;
    border-radius: 0;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
    width: 122px;
    height: 122px;
    max-width: 122px;
    max-height: 122px;
    box-sizing: border-box;
}

.km-category-item:hover {
    background: #e5e5e5;
}

/* Aktiv state - mørk bakgrunn */
.km-category-item.km-active {
    background: #1a1a1a;
    color: #ffffff;
}

.km-category-item.km-active .km-icon {
    color: #ffffff;
}

.km-category-item.km-active .km-name {
    color: #ffffff;
}

.km-category-item.km-active .km-price,
.km-category-item.km-active .km-count {
    color: rgba(255, 255, 255, 0.7);
}

/* Ikon */
.km-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.km-icon svg {
    width: 100%;
    height: 100%;
}

.km-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Kategori-navn */
.km-name {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Pris */
.km-price {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

/* Antall produkter */
.km-count {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

/* Tom melding */
.km-no-categories {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Auto-display wrapper */
.km-auto-display {
    margin-bottom: 30px;
}

/* Responsiv */
@media (max-width: 768px) {
    .km-category-menu {
        gap: 8px;
    }
    
    .km-category-item {
        width: 100px;
        height: 100px;
        max-width: 100px;
        max-height: 100px;
        padding: 12px 8px;
    }
    
    .km-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }
    
    .km-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .km-category-menu {
        gap: 6px;
    }
    
    .km-category-item {
        width: 80px;
        height: 80px;
        max-width: 80px;
        max-height: 80px;
        padding: 10px 6px;
    }
    
    .km-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 6px;
    }
    
    .km-name {
        font-size: 10px;
    }
}

/* Alternativ stil - Med border */
.km-category-menu.km-style-bordered .km-category-item {
    border: 1px solid #e5e5e5;
}

/* Alternativ stil - Avrundede bokser */
.km-category-menu.km-style-rounded .km-category-item {
    border-radius: 8px;
}

/* Alternativ stil - Mindre bokser */
.km-category-menu.km-style-small .km-category-item {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
}

.km-category-menu.km-style-small .km-icon {
    width: 28px;
    height: 28px;
}

/* Alternativ stil - Hvit bakgrunn */
.km-category-menu.km-style-white .km-category-item {
    background: #ffffff;
}
