.iflair-tillbehor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.iflair-tillbehor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 220px;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    background-color: #f3f4f6;
    color: #111827;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.iflair-tillbehor-item:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.iflair-tillbehor-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
}

.iflair-tillbehor-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 120px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.iflair-tillbehor-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: #9ca3af;
}

.iflair-tillbehor-placeholder svg {
    width: 48px;
    height: 48px;
}

.iflair-tillbehor-name {
    display: block;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .iflair-tillbehor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .iflair-tillbehor-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
